Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit 7a5141f

Browse files
fix: exported classes (#81)
* fix: exported classes * fix: openai instrumentation --------- Co-authored-by: Willy Douhard <[email protected]>
1 parent 4e203ba commit 7a5141f

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

package-lock.json

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@literalai/client",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "",
55
"exports": {
66
".": {
@@ -57,13 +57,15 @@
5757
"mustache": "^4.2.0",
5858
"uuid": "^9.0.1"
5959
},
60+
"peerDependencies": {
61+
"openai": "4.x"
62+
},
6063
"optionalDependencies": {
6164
"@ai-sdk/openai": "0.0.x",
6265
"@langchain/openai": "0.x",
6366
"ai": "3.x",
6467
"langchain": "0.x",
6568
"llamaindex": "0.3",
66-
"openai": "4.x",
6769
"zod-to-json-schema": "3.x"
6870
}
6971
}

src/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,17 @@ import { Thread, ThreadConstructor } from './observability/thread';
99
import { Environment } from './utils';
1010

1111
export * from './utils';
12+
13+
export * from './observability/attachment';
1214
export * from './observability/generation';
15+
export * from './observability/step';
16+
export * from './observability/thread';
17+
18+
export * from './evaluation/dataset';
19+
export * from './evaluation/score';
20+
export * from './evaluation/experiment-item-run';
21+
22+
export * from './prompt-engineering/prompt';
1323

1424
export type * from './instrumentation';
1525

0 commit comments

Comments
 (0)