@onereach/step-create-chat-completion 0.0.7-rc.57 → 0.0.7-rc.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +709 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -11
- package/dist/index.d.ts +0 -691
package/package.json
CHANGED
|
@@ -1,40 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/step-create-chat-completion",
|
|
3
|
-
"version": "0.0.7-rc.
|
|
3
|
+
"version": "0.0.7-rc.59",
|
|
4
4
|
"description": "Logic for creating LLM chat completion step",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"author": "
|
|
7
|
+
"author": "OneReach Development Team <dev.team@onereach.ai>",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"exports": {
|
|
10
|
-
".":
|
|
11
|
-
|
|
12
|
-
"import": "./dist/index.mjs"
|
|
13
|
-
}
|
|
10
|
+
".": "./dist/index.mjs",
|
|
11
|
+
"./package.json": "./package.json"
|
|
14
12
|
},
|
|
15
13
|
"files": [
|
|
16
14
|
"dist",
|
|
17
15
|
"!dist/metafile*.json"
|
|
18
16
|
],
|
|
19
17
|
"scripts": {
|
|
20
|
-
"build": "
|
|
21
|
-
"build:visualize": "
|
|
18
|
+
"build": "tsdown --config tsdown.config.ts",
|
|
19
|
+
"build:visualize": "VISUALIZE=1 pnpm build",
|
|
22
20
|
"publish:rc": "npm version prerelease --preid rc && npm publish --tag rc",
|
|
23
21
|
"test": "npm run unit",
|
|
24
22
|
"unit": "vitest run",
|
|
25
23
|
"preversion": "pnpm build && pnpm test"
|
|
26
24
|
},
|
|
27
25
|
"dependencies": {
|
|
28
|
-
"openai": "^6.
|
|
26
|
+
"openai": "^6.36.0",
|
|
29
27
|
"source-map-support": "^0.5.21",
|
|
30
28
|
"timestring": "^7.0.0",
|
|
31
29
|
"tslib": "^2.8.1",
|
|
32
30
|
"typescript-memoize": "^1.1.1",
|
|
33
|
-
"zod": "^4.
|
|
31
|
+
"zod": "^4.4.3"
|
|
34
32
|
},
|
|
35
33
|
"devDependencies": {
|
|
36
34
|
"@aws-sdk/client-kms": "^3.946.0",
|
|
37
|
-
"@onereach/flow-sdk": "^8.0.
|
|
35
|
+
"@onereach/flow-sdk": "^8.0.77",
|
|
38
36
|
"@onereach/orb-em-core": "^7.2.34",
|
|
39
37
|
"@onereach/orb-em-plugin-emitter": "^7.2.34",
|
|
40
38
|
"@onereach/orb-test-helpers": "^7.2.34",
|