diff --git a/.changeset/quiet-heads-nail.md b/.changeset/quiet-heads-nail.md deleted file mode 100644 index 1ac9be7a7..000000000 --- a/.changeset/quiet-heads-nail.md +++ /dev/null @@ -1,106 +0,0 @@ ---- -"@voltagent/core": patch ---- - -feat: add feedback tokens + metadata support in the core agent runtime. - -VoltAgent can create feedback tokens via VoltOps and attach feedback metadata to assistant messages (including streaming), so UIs can render ratings later. - -```ts -const result = await agent.generateText("Rate this answer", { - feedback: true, -}); - -console.log(result.feedback); -``` - -```ts -const stream = await agent.streamText("Explain this trace", { - feedback: true, -}); - -for await (const _chunk of stream.textStream) { - // consume stream output -} - -console.log(stream.feedback); -``` - -useChat (AI SDK compatible): - -```ts -import { useChat } from "@ai-sdk/react"; -import { DefaultChatTransport } from "ai"; - -const transport = new DefaultChatTransport({ - api: `${apiUrl}/agents/${agentId}/chat`, - prepareSendMessagesRequest({ messages }) { - const lastMessage = messages[messages.length - 1]; - return { - body: { - input: [lastMessage], - options: { - feedback: { - key: "satisfaction", - feedbackConfig: { - type: "categorical", - categories: [ - { value: 1, label: "Satisfied" }, - { value: 0, label: "Unsatisfied" }, - ], - }, - }, - }, - }, - }; - }, -}); - -const { messages } = useChat({ transport }); - -async function submitFeedback(message: any, score: number) { - const feedback = message?.metadata?.feedback; - if (!feedback?.url) return; - - await fetch(feedback.url, { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ - score, - comment: "Helpful response", - feedback_source_type: "app", - }), - }); -} -``` - -REST API (token + ingest): - -```bash -curl -X POST "https://api.voltagent.dev/api/public/feedback/tokens" \ - -H "X-Public-Key: $VOLTAGENT_PUBLIC_KEY" \ - -H "X-Secret-Key: $VOLTAGENT_SECRET_KEY" \ - -H "Content-Type: application/json" \ - -d '{ - "trace_id": "trace-id", - "feedback_key": "satisfaction", - "expires_in": { "hours": 6 }, - "feedback_config": { - "type": "categorical", - "categories": [ - { "value": 1, "label": "Satisfied" }, - { "value": 0, "label": "Unsatisfied" } - ] - } - }' -``` - -```bash -curl -X POST "https://api.voltagent.dev/api/public/feedback/ingest/token-id" \ - -H "Content-Type: application/json" \ - -d '{ - "score": 1, - "comment": "Resolved my issue", - "feedback_source_type": "app" - }' -``` diff --git a/examples/base/package.json b/examples/base/package.json index 64fe0f756..6f002c451 100644 --- a/examples/base/package.json +++ b/examples/base/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/github-repo-analyzer/package.json b/examples/github-repo-analyzer/package.json index 8507222af..fb2b253ac 100644 --- a/examples/github-repo-analyzer/package.json +++ b/examples/github-repo-analyzer/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@octokit/rest": "^21.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/github-star-stories/package.json b/examples/github-star-stories/package.json index d8774fe03..8ae787dc2 100644 --- a/examples/github-star-stories/package.json +++ b/examples/github-star-stories/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "@voltagent/serverless-hono": "^2.0.5", diff --git a/examples/next-js-chatbot-starter-template/package.json b/examples/next-js-chatbot-starter-template/package.json index 83135f9ec..aacc87599 100644 --- a/examples/next-js-chatbot-starter-template/package.json +++ b/examples/next-js-chatbot-starter-template/package.json @@ -20,7 +20,7 @@ "@radix-ui/react-tooltip": "^1.2.8", "@radix-ui/react-use-controllable-state": "^1.2.2", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "@xyflow/react": "^12.9.2", diff --git a/examples/with-a2a-server/package.json b/examples/with-a2a-server/package.json index 68d457a4e..ba8d30220 100644 --- a/examples/with-a2a-server/package.json +++ b/examples/with-a2a-server/package.json @@ -3,7 +3,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/a2a-server": "^2.0.2", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/internal": "^1.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-agent-tool/package.json b/examples/with-agent-tool/package.json index bb3e12eba..fd5639eba 100644 --- a/examples/with-agent-tool/package.json +++ b/examples/with-agent-tool/package.json @@ -5,7 +5,7 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "ai": "^6.0.0", "zod": "^3.25.76" }, diff --git a/examples/with-airtable/package.json b/examples/with-airtable/package.json index 43d1c5497..b1d7b8ccf 100644 --- a/examples/with-airtable/package.json +++ b/examples/with-airtable/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/internal": "^1.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.2", diff --git a/examples/with-amazon-bedrock/package.json b/examples/with-amazon-bedrock/package.json index 9082ee72f..21ff6cb86 100644 --- a/examples/with-amazon-bedrock/package.json +++ b/examples/with-amazon-bedrock/package.json @@ -5,7 +5,7 @@ "@ai-sdk/amazon-bedrock": "^3.0.0", "@aws-sdk/credential-providers": "~3.799.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-anthropic/package.json b/examples/with-anthropic/package.json index 491c86636..23cf38d96 100644 --- a/examples/with-anthropic/package.json +++ b/examples/with-anthropic/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/anthropic": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-auth/package.json b/examples/with-auth/package.json index 6fdea1423..d523f9493 100644 --- a/examples/with-auth/package.json +++ b/examples/with-auth/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-cerbos/package.json b/examples/with-cerbos/package.json index 57e5e3646..5a44a799a 100644 --- a/examples/with-cerbos/package.json +++ b/examples/with-cerbos/package.json @@ -6,7 +6,7 @@ "@cerbos/grpc": "^0.23.0", "@modelcontextprotocol/sdk": "^1.12.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/server-hono": "^2.0.3", "ai": "^6.0.0", "express": "^5.1.0", diff --git a/examples/with-chroma/package.json b/examples/with-chroma/package.json index f6f4758de..0a92b2c63 100644 --- a/examples/with-chroma/package.json +++ b/examples/with-chroma/package.json @@ -7,7 +7,7 @@ "@chroma-core/ollama": "^0.1.7", "@chroma-core/openai": "^0.1.7", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-client-side-tools/package.json b/examples/with-client-side-tools/package.json index ae759ab4d..da974783a 100644 --- a/examples/with-client-side-tools/package.json +++ b/examples/with-client-side-tools/package.json @@ -5,7 +5,7 @@ "@ai-sdk/openai": "^3.0.0", "@ai-sdk/react": "^3.0.0", "@libsql/client": "^0.15.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/server-hono": "^2.0.3", "@voltagent/vercel-ai": "^1.0.0", "@voltagent/vercel-ui": "^1.0.1", diff --git a/examples/with-cloudflare-workers/package.json b/examples/with-cloudflare-workers/package.json index 5f2e5a0c5..650b28505 100644 --- a/examples/with-cloudflare-workers/package.json +++ b/examples/with-cloudflare-workers/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/serverless-hono": "^2.0.5", "ai": "^6.0.0", "hono": "^4.7.7", diff --git a/examples/with-composio-mcp/package.json b/examples/with-composio-mcp/package.json index 0787dc4b0..12a2aa07d 100644 --- a/examples/with-composio-mcp/package.json +++ b/examples/with-composio-mcp/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-custom-endpoints/package.json b/examples/with-custom-endpoints/package.json index 656eaec39..29db6fb3a 100644 --- a/examples/with-custom-endpoints/package.json +++ b/examples/with-custom-endpoints/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-dynamic-parameters/package.json b/examples/with-dynamic-parameters/package.json index e4e2ef03a..4fa19c6b5 100644 --- a/examples/with-dynamic-parameters/package.json +++ b/examples/with-dynamic-parameters/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-dynamic-prompts/package.json b/examples/with-dynamic-prompts/package.json index 58becca3a..2bc271cca 100644 --- a/examples/with-dynamic-prompts/package.json +++ b/examples/with-dynamic-prompts/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-feedback/package.json b/examples/with-feedback/package.json index a9075f3dd..6debf478f 100644 --- a/examples/with-feedback/package.json +++ b/examples/with-feedback/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "ai": "^6.0.0" diff --git a/examples/with-google-ai/package.json b/examples/with-google-ai/package.json index d6162f158..7e8c10750 100644 --- a/examples/with-google-ai/package.json +++ b/examples/with-google-ai/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/google": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-google-drive-mcp/server/package.json b/examples/with-google-drive-mcp/server/package.json index c7c1f77c2..cf4f2d43b 100644 --- a/examples/with-google-drive-mcp/server/package.json +++ b/examples/with-google-drive-mcp/server/package.json @@ -6,7 +6,7 @@ "@hono/node-server": "^1.14.0", "@libsql/client": "^0.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-google-vertex-ai/package.json b/examples/with-google-vertex-ai/package.json index 577ee6bdd..98777ea64 100644 --- a/examples/with-google-vertex-ai/package.json +++ b/examples/with-google-vertex-ai/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/google-vertex": "^3.0.25", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-groq-ai/package.json b/examples/with-groq-ai/package.json index f1e16d5d7..787c3d5a1 100644 --- a/examples/with-groq-ai/package.json +++ b/examples/with-groq-ai/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/groq": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-guardrails/package.json b/examples/with-guardrails/package.json index 2c6bc7aa9..af0d9bdd6 100644 --- a/examples/with-guardrails/package.json +++ b/examples/with-guardrails/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "ai": "^6.0.0" diff --git a/examples/with-hooks/package.json b/examples/with-hooks/package.json index 6e524cffb..a699b1be3 100644 --- a/examples/with-hooks/package.json +++ b/examples/with-hooks/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-hugging-face-mcp/package.json b/examples/with-hugging-face-mcp/package.json index 07d3d188b..5d6841009 100644 --- a/examples/with-hugging-face-mcp/package.json +++ b/examples/with-hugging-face-mcp/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-langfuse/package.json b/examples/with-langfuse/package.json index 5fe3ba16d..9a38002f5 100644 --- a/examples/with-langfuse/package.json +++ b/examples/with-langfuse/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/langfuse-exporter": "^2.0.2", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", diff --git a/examples/with-mcp-elicitation/package.json b/examples/with-mcp-elicitation/package.json index f4091b5e8..0dc1eb406 100644 --- a/examples/with-mcp-elicitation/package.json +++ b/examples/with-mcp-elicitation/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-mcp-server/package.json b/examples/with-mcp-server/package.json index d6e4d2ebf..aa499259f 100644 --- a/examples/with-mcp-server/package.json +++ b/examples/with-mcp-server/package.json @@ -2,7 +2,7 @@ "name": "voltagent-example-with-mcp-server", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/mcp-server": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-mcp/package.json b/examples/with-mcp/package.json index c7e3baf1c..eb6fb45ff 100644 --- a/examples/with-mcp/package.json +++ b/examples/with-mcp/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-memory-rest-api/package.json b/examples/with-memory-rest-api/package.json index b26a330ce..be3e31aa2 100644 --- a/examples/with-memory-rest-api/package.json +++ b/examples/with-memory-rest-api/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.0.2", "@voltagent/server-hono": "^2.0.3" diff --git a/examples/with-nestjs/package.json b/examples/with-nestjs/package.json index 1c5b02f80..293b00f5f 100644 --- a/examples/with-nestjs/package.json +++ b/examples/with-nestjs/package.json @@ -7,7 +7,7 @@ "@nestjs/common": "^11.0.0", "@nestjs/core": "^11.0.0", "@nestjs/platform-express": "^11.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/server-core": "^2.1.2", "@voltagent/server-hono": "^2.0.3", "hono": "^4.7.7", diff --git a/examples/with-netlify-functions/package.json b/examples/with-netlify-functions/package.json index 9db47e8fa..63a6be85b 100644 --- a/examples/with-netlify-functions/package.json +++ b/examples/with-netlify-functions/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/serverless-hono": "^2.0.5", "ai": "^6.0.0", "hono": "^4.7.7", diff --git a/examples/with-nextjs-resumable-stream/package.json b/examples/with-nextjs-resumable-stream/package.json index 00d6e8f2e..11893a17b 100644 --- a/examples/with-nextjs-resumable-stream/package.json +++ b/examples/with-nextjs-resumable-stream/package.json @@ -18,7 +18,7 @@ "@radix-ui/react-use-controllable-state": "^1.2.2", "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/internal": "^1.0.2", "@voltagent/libsql": "^2.0.2", "@voltagent/resumable-streams": "^2.0.1", diff --git a/examples/with-nextjs/package.json b/examples/with-nextjs/package.json index c63e89f09..e7ea902ec 100644 --- a/examples/with-nextjs/package.json +++ b/examples/with-nextjs/package.json @@ -7,7 +7,7 @@ "@libsql/client": "^0.15.0", "@tailwindcss/postcss": "^4.1.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-nuxt/package.json b/examples/with-nuxt/package.json index 1be930ba3..57721870b 100644 --- a/examples/with-nuxt/package.json +++ b/examples/with-nuxt/package.json @@ -4,7 +4,7 @@ "@ai-sdk/openai": "^3.0.0", "@nuxt/eslint": "^1.9.0", "@nuxt/ui": "^4.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "ai": "^6.0.0", diff --git a/examples/with-offline-evals/package.json b/examples/with-offline-evals/package.json index 33fe78fa5..2493cc661 100644 --- a/examples/with-offline-evals/package.json +++ b/examples/with-offline-evals/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/evals": "^2.0.2", "@voltagent/scorers": "^2.0.2", "@voltagent/sdk": "^2.0.2", diff --git a/examples/with-ollama/package.json b/examples/with-ollama/package.json index 69f0191f4..1a56c6a26 100644 --- a/examples/with-ollama/package.json +++ b/examples/with-ollama/package.json @@ -2,7 +2,7 @@ "name": "voltagent-example-with-ollama", "dependencies": { "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "ai": "^6.0.0", diff --git a/examples/with-peaka-mcp/package.json b/examples/with-peaka-mcp/package.json index fa3b709ab..d503466c7 100644 --- a/examples/with-peaka-mcp/package.json +++ b/examples/with-peaka-mcp/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-pinecone/package.json b/examples/with-pinecone/package.json index 21db2f1c5..310550029 100644 --- a/examples/with-pinecone/package.json +++ b/examples/with-pinecone/package.json @@ -5,7 +5,7 @@ "@ai-sdk/openai": "^3.0.0", "@pinecone-database/pinecone": "^6.1.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-planagents/package.json b/examples/with-planagents/package.json index ef010ac8d..d754d6efb 100644 --- a/examples/with-planagents/package.json +++ b/examples/with-planagents/package.json @@ -6,7 +6,7 @@ "@ai-sdk/openai": "^3.0.0", "@tavily/core": "^0.6.3", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-playwright/package.json b/examples/with-playwright/package.json index 6b276e869..8bb6a075b 100644 --- a/examples/with-playwright/package.json +++ b/examples/with-playwright/package.json @@ -8,7 +8,7 @@ "@playwright/browser-webkit": "1.51.1", "@playwright/test": "^1.51.1", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-postgres/package.json b/examples/with-postgres/package.json index b56b61ed9..4dcaa24eb 100644 --- a/examples/with-postgres/package.json +++ b/examples/with-postgres/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/postgres": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-qdrant/package.json b/examples/with-qdrant/package.json index 5136fc482..a014b8373 100644 --- a/examples/with-qdrant/package.json +++ b/examples/with-qdrant/package.json @@ -5,7 +5,7 @@ "@ai-sdk/openai": "^3.0.0", "@qdrant/js-client-rest": "^1.15.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-rag-chatbot/package.json b/examples/with-rag-chatbot/package.json index 561590434..ac862b215 100644 --- a/examples/with-rag-chatbot/package.json +++ b/examples/with-rag-chatbot/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-recipe-generator/package.json b/examples/with-recipe-generator/package.json index de9de8329..23ad0c8b5 100644 --- a/examples/with-recipe-generator/package.json +++ b/examples/with-recipe-generator/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "ai": "^6.0.0", diff --git a/examples/with-research-assistant/package.json b/examples/with-research-assistant/package.json index 9b4a86de9..f10cdf96e 100644 --- a/examples/with-research-assistant/package.json +++ b/examples/with-research-assistant/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-resumable-streams/package.json b/examples/with-resumable-streams/package.json index 8842bad91..de635b966 100644 --- a/examples/with-resumable-streams/package.json +++ b/examples/with-resumable-streams/package.json @@ -5,7 +5,7 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.1", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-retrieval/package.json b/examples/with-retrieval/package.json index 43eb34069..ecf31a92c 100644 --- a/examples/with-retrieval/package.json +++ b/examples/with-retrieval/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-slack/package.json b/examples/with-slack/package.json index e0e02a8a6..a341f59cc 100644 --- a/examples/with-slack/package.json +++ b/examples/with-slack/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.2", diff --git a/examples/with-subagents/package.json b/examples/with-subagents/package.json index 4f909f9d7..3b0320438 100644 --- a/examples/with-subagents/package.json +++ b/examples/with-subagents/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-supabase/package.json b/examples/with-supabase/package.json index 684995027..beab601db 100644 --- a/examples/with-supabase/package.json +++ b/examples/with-supabase/package.json @@ -5,7 +5,7 @@ "@ai-sdk/openai": "^3.0.0", "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "@voltagent/supabase": "^2.0.2", diff --git a/examples/with-tavily-search/package.json b/examples/with-tavily-search/package.json index bb1715d61..94140d71e 100644 --- a/examples/with-tavily-search/package.json +++ b/examples/with-tavily-search/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-thinking-tool/package.json b/examples/with-thinking-tool/package.json index bab488fd0..64606b311 100644 --- a/examples/with-thinking-tool/package.json +++ b/examples/with-thinking-tool/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-tools/package.json b/examples/with-tools/package.json index c35a3dd57..fbf30f765 100644 --- a/examples/with-tools/package.json +++ b/examples/with-tools/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-turso/package.json b/examples/with-turso/package.json index 9c2d7d81b..1edf4f9ed 100644 --- a/examples/with-turso/package.json +++ b/examples/with-turso/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-vector-search/package.json b/examples/with-vector-search/package.json index bd4c36144..c95853634 100644 --- a/examples/with-vector-search/package.json +++ b/examples/with-vector-search/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-vercel-ai/package.json b/examples/with-vercel-ai/package.json index a320a086b..12fd7c817 100644 --- a/examples/with-vercel-ai/package.json +++ b/examples/with-vercel-ai/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-viteval/package.json b/examples/with-viteval/package.json index 3beb67490..bf28d235b 100644 --- a/examples/with-viteval/package.json +++ b/examples/with-viteval/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voice-elevenlabs/package.json b/examples/with-voice-elevenlabs/package.json index fe8ab7dc8..b43c6e1f8 100644 --- a/examples/with-voice-elevenlabs/package.json +++ b/examples/with-voice-elevenlabs/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voice-openai/package.json b/examples/with-voice-openai/package.json index e89c32a2a..5af25103f 100644 --- a/examples/with-voice-openai/package.json +++ b/examples/with-voice-openai/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voice-xsai/package.json b/examples/with-voice-xsai/package.json index 708712081..7d0b70f40 100644 --- a/examples/with-voice-xsai/package.json +++ b/examples/with-voice-xsai/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voltagent-actions/package.json b/examples/with-voltagent-actions/package.json index 89cccd096..b6c4f1628 100644 --- a/examples/with-voltagent-actions/package.json +++ b/examples/with-voltagent-actions/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/sdk": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voltagent-exporter/package.json b/examples/with-voltagent-exporter/package.json index 0d2651edc..53baeca1c 100644 --- a/examples/with-voltagent-exporter/package.json +++ b/examples/with-voltagent-exporter/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voltagent-managed-memory/package.json b/examples/with-voltagent-managed-memory/package.json index b9a4b2d84..3ad2bd624 100644 --- a/examples/with-voltagent-managed-memory/package.json +++ b/examples/with-voltagent-managed-memory/package.json @@ -3,7 +3,7 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", "@voltagent/voltagent-memory": "^1.0.2", diff --git a/examples/with-voltops-resumable-streams/package.json b/examples/with-voltops-resumable-streams/package.json index 31930dd5e..31a06073f 100644 --- a/examples/with-voltops-resumable-streams/package.json +++ b/examples/with-voltops-resumable-streams/package.json @@ -5,7 +5,7 @@ "author": "", "dependencies": { "@ai-sdk/openai": "^3.0.0", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/logger": "^2.0.2", "@voltagent/resumable-streams": "^2.0.1", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-voltops-retrieval/package.json b/examples/with-voltops-retrieval/package.json index 6b7461f17..a742b355a 100644 --- a/examples/with-voltops-retrieval/package.json +++ b/examples/with-voltops-retrieval/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-whatsapp/package.json b/examples/with-whatsapp/package.json index 29038b010..465e225a3 100644 --- a/examples/with-whatsapp/package.json +++ b/examples/with-whatsapp/package.json @@ -5,7 +5,7 @@ "@ai-sdk/openai": "^3.0.0", "@supabase/supabase-js": "^2.49.4", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-workflow/package.json b/examples/with-workflow/package.json index b78f22735..4c51a82f6 100644 --- a/examples/with-workflow/package.json +++ b/examples/with-workflow/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-working-memory/package.json b/examples/with-working-memory/package.json index ab286fed9..dfe86df99 100644 --- a/examples/with-working-memory/package.json +++ b/examples/with-working-memory/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-youtube-to-blog/package.json b/examples/with-youtube-to-blog/package.json index e895fc13b..537e0cad4 100644 --- a/examples/with-youtube-to-blog/package.json +++ b/examples/with-youtube-to-blog/package.json @@ -4,7 +4,7 @@ "dependencies": { "@ai-sdk/openai": "^3.0.0", "@voltagent/cli": "^0.1.21", - "@voltagent/core": "^2.0.10", + "@voltagent/core": "^2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/examples/with-zapier-mcp/package.json b/examples/with-zapier-mcp/package.json index 78d6ca75b..843493440 100644 --- a/examples/with-zapier-mcp/package.json +++ b/examples/with-zapier-mcp/package.json @@ -6,7 +6,7 @@ "dependencies": { "@ai-sdk/amazon-bedrock": "^3.0.0", "@aws-sdk/credential-providers": "~3.799.0", - "@voltagent/core": "~2.0.10", + "@voltagent/core": "~2.0.11", "@voltagent/libsql": "^2.0.2", "@voltagent/logger": "^2.0.2", "@voltagent/server-hono": "^2.0.3", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9b6e968fd..a0643552e 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,112 @@ # @voltagent/core +## 2.0.11 + +### Patch Changes + +- [`44c4386`](https://github.com/VoltAgent/voltagent/commit/44c438681bdd5ffe1e88f7ad456d5f0e35bd40f8) Thanks [@omeraplak](https://github.com/omeraplak)! - feat: add feedback tokens + metadata support in the core agent runtime. + + VoltAgent can create feedback tokens via VoltOps and attach feedback metadata to assistant messages (including streaming), so UIs can render ratings later. + + ```ts + const result = await agent.generateText("Rate this answer", { + feedback: true, + }); + + console.log(result.feedback); + ``` + + ```ts + const stream = await agent.streamText("Explain this trace", { + feedback: true, + }); + + for await (const _chunk of stream.textStream) { + // consume stream output + } + + console.log(stream.feedback); + ``` + + useChat (AI SDK compatible): + + ```ts + import { useChat } from "@ai-sdk/react"; + import { DefaultChatTransport } from "ai"; + + const transport = new DefaultChatTransport({ + api: `${apiUrl}/agents/${agentId}/chat`, + prepareSendMessagesRequest({ messages }) { + const lastMessage = messages[messages.length - 1]; + return { + body: { + input: [lastMessage], + options: { + feedback: { + key: "satisfaction", + feedbackConfig: { + type: "categorical", + categories: [ + { value: 1, label: "Satisfied" }, + { value: 0, label: "Unsatisfied" }, + ], + }, + }, + }, + }, + }; + }, + }); + + const { messages } = useChat({ transport }); + + async function submitFeedback(message: any, score: number) { + const feedback = message?.metadata?.feedback; + if (!feedback?.url) return; + + await fetch(feedback.url, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ + score, + comment: "Helpful response", + feedback_source_type: "app", + }), + }); + } + ``` + + REST API (token + ingest): + + ```bash + curl -X POST "https://api.voltagent.dev/api/public/feedback/tokens" \ + -H "X-Public-Key: $VOLTAGENT_PUBLIC_KEY" \ + -H "X-Secret-Key: $VOLTAGENT_SECRET_KEY" \ + -H "Content-Type: application/json" \ + -d '{ + "trace_id": "trace-id", + "feedback_key": "satisfaction", + "expires_in": { "hours": 6 }, + "feedback_config": { + "type": "categorical", + "categories": [ + { "value": 1, "label": "Satisfied" }, + { "value": 0, "label": "Unsatisfied" } + ] + } + }' + ``` + + ```bash + curl -X POST "https://api.voltagent.dev/api/public/feedback/ingest/token-id" \ + -H "Content-Type: application/json" \ + -d '{ + "score": 1, + "comment": "Resolved my issue", + "feedback_source_type": "app" + }' + ``` + ## 2.0.10 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index d2c16a5e7..0d2ad9eb1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@voltagent/core", "description": "VoltAgent Core - AI agent framework for JavaScript", - "version": "2.0.10", + "version": "2.0.11", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "@opentelemetry/api": "^1.9.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 05407478f..7ec769ca7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -117,7 +117,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -154,7 +154,7 @@ importers: specifier: ^21.0.0 version: 21.1.1 '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -194,7 +194,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -282,7 +282,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -406,7 +406,7 @@ importers: specifier: ^2.0.2 version: link:../../packages/a2a-server '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.2 @@ -504,7 +504,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core ai: specifier: ^6.0.0 @@ -532,7 +532,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.2 @@ -575,7 +575,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -612,7 +612,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -758,7 +758,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -801,7 +801,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/server-hono': specifier: ^2.0.3 @@ -844,7 +844,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -887,7 +887,7 @@ importers: specifier: ^0.15.0 version: 0.15.10 '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/server-hono': specifier: ^2.0.3 @@ -936,7 +936,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/serverless-hono': specifier: ^2.0.5 @@ -973,7 +973,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1075,7 +1075,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1112,7 +1112,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1149,7 +1149,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1186,7 +1186,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1217,7 +1217,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1303,7 +1303,7 @@ importers: specifier: ^0.1.21 version: link:../../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1346,7 +1346,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1383,7 +1383,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1420,7 +1420,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1451,7 +1451,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1488,7 +1488,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1602,7 +1602,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/langfuse-exporter': specifier: ^2.0.2 @@ -1670,7 +1670,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -1707,7 +1707,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1741,7 +1741,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1778,7 +1778,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -1815,7 +1815,7 @@ importers: specifier: ^11.0.0 version: 11.1.7(@nestjs/common@11.1.7)(@nestjs/core@11.1.7) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/server-core': specifier: ^2.1.2 @@ -1864,7 +1864,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/serverless-hono': specifier: ^2.0.5 @@ -1907,7 +1907,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2016,7 +2016,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/internal': specifier: ^1.0.2 @@ -2137,7 +2137,7 @@ importers: specifier: ^4.0.0 version: 4.0.1(embla-carousel@8.6.0)(typescript@5.9.3)(vite@7.2.7)(vue-router@4.5.1)(vue@3.5.22)(zod@3.25.76) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2174,7 +2174,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/evals': specifier: ^2.0.2 @@ -2208,7 +2208,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2245,7 +2245,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2285,7 +2285,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2328,7 +2328,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2377,7 +2377,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2426,7 +2426,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2466,7 +2466,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2506,7 +2506,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2543,7 +2543,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2577,7 +2577,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2608,7 +2608,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@4.2.1) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2642,7 +2642,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2679,7 +2679,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2719,7 +2719,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2759,7 +2759,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -2796,7 +2796,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2833,7 +2833,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2870,7 +2870,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2907,7 +2907,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2944,7 +2944,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -2981,7 +2981,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3018,7 +3018,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3073,7 +3073,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3113,7 +3113,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3159,7 +3159,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3205,7 +3205,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3239,7 +3239,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3273,7 +3273,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@3.25.76) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3307,7 +3307,7 @@ importers: specifier: ^3.0.0 version: 3.0.1(zod@4.2.1) '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/logger': specifier: ^2.0.2 @@ -3341,7 +3341,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3381,7 +3381,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3421,7 +3421,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3458,7 +3458,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3495,7 +3495,7 @@ importers: specifier: ^0.1.21 version: link:../../packages/cli '@voltagent/core': - specifier: ^2.0.10 + specifier: ^2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -3532,7 +3532,7 @@ importers: specifier: ~3.799.0 version: 3.799.0 '@voltagent/core': - specifier: ~2.0.10 + specifier: ~2.0.11 version: link:../../packages/core '@voltagent/libsql': specifier: ^2.0.2 @@ -14287,8 +14287,8 @@ packages: dev: false optional: true - /@oxc-project/types@0.107.0: - resolution: {integrity: sha512-QFDRbYfV2LVx8tyqtyiah3jQPUj1mK2+RYwxyFWyGoys6XJnwTdlzO6rdNNHOPorHAu5Uo34oWRKcvNpbJarmQ==} + /@oxc-project/types@0.108.0: + resolution: {integrity: sha512-7lf13b2IA/kZO6xgnIZA88sq3vwrxWk+2vxf6cc+omwYCRTiA5e63Beqf3fz/v8jEviChWWmFYBwzfSeyrsj7Q==} dev: true /@oxc-project/types@0.94.0: @@ -16497,8 +16497,8 @@ packages: /@repeaterjs/repeater@3.0.6: resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==} - /@rolldown/binding-android-arm64@1.0.0-beta.59: - resolution: {integrity: sha512-6yLLgyswYwiCfls9+hoNFY9F8TQdwo15hpXDHzlAR0X/GojeKF+AuNcXjYNbOJ4zjl/5D6lliE8CbpB5t1OWIQ==} + /@rolldown/binding-android-arm64@1.0.0-beta.60: + resolution: {integrity: sha512-hOW6iQXtpG4uCW1zGK56+KhEXGttSkTp2ykncW/nkOIF/jOKTqbM944Q73HVeMXP1mPRvE2cZwNp3xeLIeyIGQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] @@ -16506,8 +16506,8 @@ packages: dev: true optional: true - /@rolldown/binding-darwin-arm64@1.0.0-beta.59: - resolution: {integrity: sha512-hqGXRc162qCCIOAcHN2Cw4eXiVTwYsMFLOhAy1IG2CxY+dwc/l4Ga+dLPkLor3Ikqy5WDn+7kxHbbh6EmshEpQ==} + /@rolldown/binding-darwin-arm64@1.0.0-beta.60: + resolution: {integrity: sha512-vyDA4HXY2mP8PPtl5UE17uGPxUNG4m1wkfa3kAkR8JWrFbarV97UmLq22IWrNhtBPa89xqerzLK8KoVmz5JqCQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] @@ -16515,8 +16515,8 @@ packages: dev: true optional: true - /@rolldown/binding-darwin-x64@1.0.0-beta.59: - resolution: {integrity: sha512-ezvvGuhteE15JmMhJW0wS7BaXmhwLy1YHeEwievYaPC1PgGD86wgBKfOpHr9tSKllAXbCe0BeeMvasscWLhKdA==} + /@rolldown/binding-darwin-x64@1.0.0-beta.60: + resolution: {integrity: sha512-WnxyqxAKP2BsxouwGY/RCF5UFw/LA4QOHhJ7VEl+UCelHokiwqNHRbryLAyRy3TE1FZ5eae+vAFcaetAu/kWLw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] @@ -16524,8 +16524,8 @@ packages: dev: true optional: true - /@rolldown/binding-freebsd-x64@1.0.0-beta.59: - resolution: {integrity: sha512-4fhKVJiEYVd5n6no/mrL3LZ9kByfCGwmONOrdtvx8DJGDQhehH/q3RfhG3V/4jGKhpXgbDjpIjkkFdybCTcgew==} + /@rolldown/binding-freebsd-x64@1.0.0-beta.60: + resolution: {integrity: sha512-JtyWJ+zXOHof5gOUYwdTWI2kL6b8q9eNwqB/oD4mfUFaC/COEB2+47JMhcq78dey9Ahmec3DZKRDZPRh9hNAMQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] @@ -16533,8 +16533,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.59: - resolution: {integrity: sha512-T3Y52sW6JAhvIqArBw+wtjNU1Ieaz4g0NBxyjSJoW971nZJBZygNlSYx78G4cwkCmo1dYTciTPDOnQygLV23pA==} + /@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.60: + resolution: {integrity: sha512-LrMoKqpHx+kCaNSk84iSBd4yVOymLIbxJQtvFjDN2CjQraownR+IXcwYDblFcj9ivmS54T3vCboXBbm3s1zbPQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] @@ -16542,8 +16542,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-arm64-gnu@1.0.0-beta.59: - resolution: {integrity: sha512-NIW40jQDSQap2KDdmm9z3B/4OzWJ6trf8dwx3FD74kcQb3v34ThsBFTtzE5KjDuxnxgUlV+DkAu+XgSMKrgufw==} + /@rolldown/binding-linux-arm64-gnu@1.0.0-beta.60: + resolution: {integrity: sha512-sqI+Vdx1gmXJMsXN3Fsewm3wlt7RHvRs1uysSp//NLsCoh9ZFEUr4ZzGhWKOg6Rvf+njNu/vCsz96x7wssLejQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] @@ -16551,8 +16551,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-arm64-musl@1.0.0-beta.59: - resolution: {integrity: sha512-CCKEk+H+8c0WGe/8n1E20n85Tq4Pv+HNAbjP1KfUXW+01aCWSMjU56ChNrM2tvHnXicfm7QRNoZyfY8cWh7jLQ==} + /@rolldown/binding-linux-arm64-musl@1.0.0-beta.60: + resolution: {integrity: sha512-8xlqGLDtTP8sBfYwneTDu8+PRm5reNEHAuI/+6WPy9y350ls0KTFd3EJCOWEXWGW0F35ko9Fn9azmurBTjqOrQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] @@ -16560,8 +16560,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-x64-gnu@1.0.0-beta.59: - resolution: {integrity: sha512-VlfwJ/HCskPmQi8R0JuAFndySKVFX7yPhE658o27cjSDWWbXVtGkSbwaxstii7Q+3Rz87ZXN+HLnb1kd4R9Img==} + /@rolldown/binding-linux-x64-gnu@1.0.0-beta.60: + resolution: {integrity: sha512-iR4nhVouVZK1CiGGGyz+prF5Lw9Lmz30Rl36Hajex+dFVFiegka604zBwzTp5Tl0BZnr50ztnVJ30tGrBhDr8Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] @@ -16569,8 +16569,8 @@ packages: dev: true optional: true - /@rolldown/binding-linux-x64-musl@1.0.0-beta.59: - resolution: {integrity: sha512-kuO92hTRyGy0Ts3Nsqll0rfO8eFsEJe9dGQGktkQnZ2hrJrDVN0y419dMgKy/gB2S2o7F2dpWhpfQOBehZPwVA==} + /@rolldown/binding-linux-x64-musl@1.0.0-beta.60: + resolution: {integrity: sha512-HbfNcqNeqxFjSMf1Kpe8itr2e2lr0Bm6HltD2qXtfU91bSSikVs9EWsa1ThshQ1v2ZvxXckGjlVLtah6IoslPg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] @@ -16578,8 +16578,8 @@ packages: dev: true optional: true - /@rolldown/binding-openharmony-arm64@1.0.0-beta.59: - resolution: {integrity: sha512-PXAebvNL4sYfCqi8LdY4qyFRacrRoiPZLo3NoUmiTxm7MPtYYR8CNtBGNokqDmMuZIQIecRaD/jbmFAIDz7DxQ==} + /@rolldown/binding-openharmony-arm64@1.0.0-beta.60: + resolution: {integrity: sha512-BiiamFcgTJ+ZFOUIMO9AHXUo9WXvHVwGfSrJ+Sv0AsTd2w3VN7dJGiH3WRcxKFetljJHWvGbM4fdpY5lf6RIvw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] @@ -16587,8 +16587,8 @@ packages: dev: true optional: true - /@rolldown/binding-wasm32-wasi@1.0.0-beta.59: - resolution: {integrity: sha512-yJoklQg7XIZq8nAg0bbkEXcDK6sfpjxQGxpg2Nd6ERNtvg+eOaEBRgPww0BVTrYFQzje1pB5qPwC2VnJHT3koQ==} + /@rolldown/binding-wasm32-wasi@1.0.0-beta.60: + resolution: {integrity: sha512-6roXGbHMdR2ucnxXuwbmQvk8tuYl3VGu0yv13KxspyKBxxBd4RS6iykzLD6mX2gMUHhfX8SVWz7n/62gfyKHow==} engines: {node: '>=14.0.0'} cpu: [wasm32] requiresBuild: true @@ -16597,8 +16597,8 @@ packages: dev: true optional: true - /@rolldown/binding-win32-arm64-msvc@1.0.0-beta.59: - resolution: {integrity: sha512-ljZ4+McmCbIuZwEBaoGtiG8Rq2nJjaXEnLEIx+usWetXn1ECjXY0LAhkELxOV6ytv4ensEmoJJ8nXg47hRMjlw==} + /@rolldown/binding-win32-arm64-msvc@1.0.0-beta.60: + resolution: {integrity: sha512-JBOm8/DC/CKnHyMHoJFdvzVHxUixid4dGkiTqGflxOxO43uSJMpl77pSPXvzwZ/VXwqblU2V0/PanyCBcRLowQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] @@ -16606,8 +16606,8 @@ packages: dev: true optional: true - /@rolldown/binding-win32-x64-msvc@1.0.0-beta.59: - resolution: {integrity: sha512-bMY4tTIwbdZljW+xe/ln1hvs0SRitahQSXfWtvgAtIzgSX9Ar7KqJzU7lRm33YTRFIHLULRi53yNjw9nJGd6uQ==} + /@rolldown/binding-win32-x64-msvc@1.0.0-beta.60: + resolution: {integrity: sha512-MKF0B823Efp+Ot8KsbwIuGhKH58pf+2rSM6VcqyNMlNBHheOM0Gf7JmEu+toc1jgN6fqjH7Et+8hAzsLVkIGfA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] @@ -16627,8 +16627,8 @@ packages: resolution: {integrity: sha512-qWhDs6yFGR5xDfdrwiSa3CWGIHxD597uGE/A9xGqytBjANvh4rLCTTkq7szhMV4+Ygh+PMS90KVJ8xWG/TkX4w==} dev: false - /@rolldown/pluginutils@1.0.0-beta.59: - resolution: {integrity: sha512-aoh6LAJRyhtazs98ydgpNOYstxUlsOV1KJXcpf/0c0vFcUA8uyd/hwKRhqE/AAPNqAho9RliGsvitCoOzREoVA==} + /@rolldown/pluginutils@1.0.0-beta.60: + resolution: {integrity: sha512-Jz4aqXRPVtqkH1E3jRDzLO5cgN5JwW+WG0wXGE4NiJd25nougv/AHzxmKCzmVQUYnxLmTM0M4wrZp+LlC2FKLg==} dev: true /@rollup/plugin-alias@5.1.1(rollup@4.50.2): @@ -35661,7 +35661,7 @@ packages: resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} dev: false - /rolldown-plugin-dts@0.16.11(rolldown@1.0.0-beta.59)(typescript@5.9.2): + /rolldown-plugin-dts@0.16.11(rolldown@1.0.0-beta.60)(typescript@5.9.2): resolution: {integrity: sha512-9IQDaPvPqTx3RjG2eQCK5GYZITo203BxKunGI80AGYicu1ySFTUyugicAaTZWRzFWh9DSnzkgNeMNbDWBbSs0w==} engines: {node: '>=20.18.0'} peerDependencies: @@ -35689,34 +35689,34 @@ packages: dts-resolver: 2.1.2 get-tsconfig: 4.10.1 magic-string: 0.30.19 - rolldown: 1.0.0-beta.59 + rolldown: 1.0.0-beta.60 typescript: 5.9.2 transitivePeerDependencies: - oxc-resolver - supports-color dev: true - /rolldown@1.0.0-beta.59: - resolution: {integrity: sha512-Slm000Gd8/AO9z4Kxl4r8mp/iakrbAuJ1L+7ddpkNxgQ+Vf37WPvY63l3oeyZcfuPD1DRrUYBsRPIXSOhvOsmw==} + /rolldown@1.0.0-beta.60: + resolution: {integrity: sha512-YYgpv7MiTp9LdLj1fzGzCtij8Yi2OKEc3HQtfbIxW4yuSgpQz9518I69U72T5ErPA/ATOXqlcisiLrWy+5V9YA==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true dependencies: - '@oxc-project/types': 0.107.0 - '@rolldown/pluginutils': 1.0.0-beta.59 + '@oxc-project/types': 0.108.0 + '@rolldown/pluginutils': 1.0.0-beta.60 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0-beta.59 - '@rolldown/binding-darwin-arm64': 1.0.0-beta.59 - '@rolldown/binding-darwin-x64': 1.0.0-beta.59 - '@rolldown/binding-freebsd-x64': 1.0.0-beta.59 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.59 - '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.59 - '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.59 - '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.59 - '@rolldown/binding-linux-x64-musl': 1.0.0-beta.59 - '@rolldown/binding-openharmony-arm64': 1.0.0-beta.59 - '@rolldown/binding-wasm32-wasi': 1.0.0-beta.59 - '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.59 - '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.59 + '@rolldown/binding-android-arm64': 1.0.0-beta.60 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.60 + '@rolldown/binding-darwin-x64': 1.0.0-beta.60 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.60 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.60 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.60 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.60 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.60 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.60 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.60 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.60 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.60 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.60 dev: true /rollup-plugin-inject@3.0.2: @@ -37854,8 +37854,8 @@ packages: empathic: 2.0.0 hookable: 5.5.3 publint: 0.3.12 - rolldown: 1.0.0-beta.59 - rolldown-plugin-dts: 0.16.11(rolldown@1.0.0-beta.59)(typescript@5.9.2) + rolldown: 1.0.0-beta.60 + rolldown-plugin-dts: 0.16.11(rolldown@1.0.0-beta.60)(typescript@5.9.2) semver: 7.7.2 tinyexec: 1.0.1 tinyglobby: 0.2.15