@vibe-agent-toolkit/runtime-vercel-ai-sdk 0.1.40-rc.1 → 0.1.40
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/README.md +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -254,7 +254,7 @@ import { google } from '@ai-sdk/google';
|
|
|
254
254
|
const llmConfig = { model: openai('gpt-4'), temperature: 0.7 };
|
|
255
255
|
|
|
256
256
|
// Anthropic Claude
|
|
257
|
-
const llmConfig = { model: anthropic('claude-
|
|
257
|
+
const llmConfig = { model: anthropic('claude-sonnet-5'), temperature: 0.8 };
|
|
258
258
|
|
|
259
259
|
// Google Gemini
|
|
260
260
|
const llmConfig = { model: google('gemini-2.0-flash-001'), temperature: 0.9 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-agent-toolkit/runtime-vercel-ai-sdk",
|
|
3
|
-
"version": "0.1.40
|
|
3
|
+
"version": "0.1.40",
|
|
4
4
|
"description": "Vercel AI SDK runtime adapter for VAT agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc",
|
|
17
17
|
"llm-demo": "tsx examples/llm-agent-demo.ts",
|
|
18
|
-
"test": "vitest run",
|
|
18
|
+
"test:unit": "vitest run",
|
|
19
19
|
"test:watch": "vitest",
|
|
20
20
|
"test:llm-regression": "RUN_LLM_TESTS=true bun test test/llm-regression.test.ts",
|
|
21
21
|
"typecheck": "tsc --noEmit"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@ai-sdk/provider": "^3.0.4",
|
|
25
25
|
"@ai-sdk/provider-utils": "^4.0.8",
|
|
26
|
-
"@vibe-agent-toolkit/agent-runtime": "0.1.40
|
|
26
|
+
"@vibe-agent-toolkit/agent-runtime": "0.1.40",
|
|
27
27
|
"ai": "^6.0.39",
|
|
28
28
|
"zod": "^3.24.1"
|
|
29
29
|
},
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"@ai-sdk/anthropic": "^3.0.15",
|
|
32
32
|
"@ai-sdk/openai": "^3.0.12",
|
|
33
33
|
"@types/node": "^22.10.5",
|
|
34
|
-
"@vibe-agent-toolkit/dev-tools": "0.1.40
|
|
34
|
+
"@vibe-agent-toolkit/dev-tools": "0.1.40",
|
|
35
35
|
"tsx": "^4.19.2",
|
|
36
36
|
"typescript": "^5.7.3",
|
|
37
|
-
"vitest": "^2.
|
|
38
|
-
"@vibe-agent-toolkit/test-agents": "0.1.40
|
|
37
|
+
"vitest": "^3.2.4",
|
|
38
|
+
"@vibe-agent-toolkit/test-agents": "0.1.40"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
41
41
|
"ai-agent",
|