Releases: VoltAgent/voltagent
@voltagent/[email protected]
Patch Changes
-
#102
cdfec65Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the
instructionsfield instead ofdescriptionwhen definingAgentinstances.This change aligns the examples with the preferred API usage for the
Agentclass, whereinstructionsprovides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of thedescriptionfield specifically forAgentclass definitions.Example Change for Agent Definition:
const agent = new Agent({ name: "My Assistant", - description: "A helpful assistant.", + instructions: "A helpful assistant.", llm: new VercelAIProvider(), model: openai("gpt-4o-mini"), });
@voltagent/[email protected]
Patch Changes
- Updated dependencies [
cdfec65]:- @voltagent/[email protected]
[email protected]
Patch Changes
13db262Thanks @omeraplak! - fix: Update Zod to version 3.24.2 to resolve "Type instantiation is excessively deep and possibly infinite" error (related to colinhacks/zod#3435).
@voltagent/[email protected]
Patch Changes
-
13db262Thanks @omeraplak! - fix: Update Zod to version 3.24.2 to resolve "Type instantiation is excessively deep and possibly infinite" error (related to colinhacks/zod#3435). -
Updated dependencies [
f7de864,13db262]:- @voltagent/[email protected]
- @voltagent/[email protected]
@voltagent/[email protected]
Patch Changes
-
#98
c3db06dThanks @yusuf-eren! - feat(xsAI): add xsAI voice providerThis adds support for the xsAI voice provider, including:
- Core provider implementation support
- Support for API key authentication and custom headers
- Base URL configuration for API endpoints
-
Updated dependencies [
f7de864,13db262]:- @voltagent/[email protected]
@voltagent/[email protected]
Patch Changes
-
13db262Thanks @omeraplak! - fix: Update Zod to version 3.24.2 to resolve "Type instantiation is excessively deep and possibly infinite" error (related to colinhacks/zod#3435). -
Updated dependencies [
f7de864,13db262]:- @voltagent/[email protected]
@voltagent/[email protected]
Patch Changes
-
#83
5edf79dThanks @TheEmi! - Added tool handling by manually calling the desired functions for generateText and streamText
Fixed some type issues.
Added streamObject support -
13db262Thanks @omeraplak! - fix: Update Zod to version 3.24.2 to resolve "Type instantiation is excessively deep and possibly infinite" error (related to colinhacks/zod#3435). -
Updated dependencies [
f7de864,13db262]:- @voltagent/[email protected]
@voltagent/[email protected]
Patch Changes
-
#99
82c1066Thanks @luixaviles! - feat(google-ai): add function calling support for Google SDK integration -
13db262Thanks @omeraplak! - fix: Update Zod to version 3.24.2 to resolve "Type instantiation is excessively deep and possibly infinite" error (related to colinhacks/zod#3435). -
Updated dependencies [
f7de864,13db262]:- @voltagent/[email protected]
@voltagent/[email protected]
Patch Changes
-
f7de864Thanks @omeraplak! - fix: addtoolNameto event metadata to ensuredelegate_taskname is visible in Voltagent console -
13db262Thanks @omeraplak! - fix: Update Zod to version 3.24.2 to resolve "Type instantiation is excessively deep and possibly infinite" error (related to colinhacks/zod#3435).
@voltagent/[email protected]
Patch Changes
-
#58
cc031e9Thanks @VenomHare! - feat(anthropic-ai): Implemented AnthropicProvider classIt Allows user to use Anthropic (Claude) models inside Voltagent
MCP tools are also supported in this provider
Basic Implementation is described in Examples/with-anthropic
Resolves #10