@agentfield/sdk 0.1.86 → 0.1.87-rc.2
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.ts +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ declare class AIClient {
|
|
|
42
42
|
* Build and return the AI model instance for a given set of options.
|
|
43
43
|
* Exposed for use by the tool-calling loop.
|
|
44
44
|
*/
|
|
45
|
-
getModel(options?: AIRequestOptions): _ai_sdk_provider.
|
|
45
|
+
getModel(options?: AIRequestOptions): _ai_sdk_provider.LanguageModelV3;
|
|
46
46
|
private buildModel;
|
|
47
47
|
private buildEmbeddingModel;
|
|
48
48
|
private getRateLimiter;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentfield/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.87-rc.2",
|
|
4
4
|
"description": "AgentField TypeScript SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"node": ">=18.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@ai-sdk/anthropic": "^
|
|
33
|
-
"@ai-sdk/cohere": "^
|
|
34
|
-
"@ai-sdk/deepseek": "^
|
|
35
|
-
"@ai-sdk/google": "^
|
|
36
|
-
"@ai-sdk/groq": "^
|
|
37
|
-
"@ai-sdk/mistral": "^
|
|
38
|
-
"@ai-sdk/openai": "^
|
|
39
|
-
"@ai-sdk/xai": "^
|
|
32
|
+
"@ai-sdk/anthropic": "^3.0.81",
|
|
33
|
+
"@ai-sdk/cohere": "^3.0.36",
|
|
34
|
+
"@ai-sdk/deepseek": "^2.0.35",
|
|
35
|
+
"@ai-sdk/google": "^3.0.80",
|
|
36
|
+
"@ai-sdk/groq": "^3.0.39",
|
|
37
|
+
"@ai-sdk/mistral": "^3.0.37",
|
|
38
|
+
"@ai-sdk/openai": "^3.0.67",
|
|
39
|
+
"@ai-sdk/xai": "^3.0.92",
|
|
40
40
|
"ai": "^6.0.149",
|
|
41
41
|
"axios": "^1.6.2",
|
|
42
42
|
"dotenv": "^16.4.5",
|