@do-kit/agents 0.2.5 → 0.2.6
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/augment/index.d.ts +2 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/augment/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { streamText } from 'ai';
|
|
2
|
+
import { createDeepSeek } from '@ai-sdk/deepseek';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* @desc augmentAgent to ai
|
|
@@ -12,7 +13,7 @@ type AugmentOptions = {
|
|
|
12
13
|
};
|
|
13
14
|
type CreateAugmentAgentResult = ReturnType<typeof streamText>;
|
|
14
15
|
declare const augmentAgent: ({ model, messages, toolDefinitions, }: AugmentOptions) => CreateAugmentAgentResult;
|
|
15
|
-
declare const providerAdapter: (provider: "deepseek") =>
|
|
16
|
+
declare const providerAdapter: (provider: "deepseek") => typeof createDeepSeek;
|
|
16
17
|
|
|
17
18
|
export { augmentAgent, augmentAgent as default, providerAdapter };
|
|
18
19
|
export type { AugmentOptions, CreateAugmentAgentResult };
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@do-kit/agents",
|
|
3
3
|
"description": "@do-kit agents library",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.6",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"dev": "rollup -c rollup.config.mjs -w",
|
|
44
44
|
"build": "rimraf dist && rollup -c rollup.config.mjs",
|
|
45
45
|
"clean": "rimraf .turbo node_modules dist",
|
|
46
|
-
"
|
|
46
|
+
"publish": "npm publish",
|
|
47
47
|
"test": "vitest run --color",
|
|
48
48
|
"test:cov": "vitest run --color --coverage"
|
|
49
49
|
},
|