Skip to content

Releases: VoltAgent/voltagent

@voltagent/[email protected]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

  • #102 cdfec65 Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88

    Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the instructions field instead of description when defining Agent instances.

    This change aligns the examples with the preferred API usage for the Agent class, where instructions provides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of the description field specifically for Agent class 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"),
      });
  • Updated dependencies [cdfec65]:

@voltagent/[email protected]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

  • #102 cdfec65 Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88

    Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the instructions field instead of description when defining Agent instances.

    This change aligns the examples with the preferred API usage for the Agent class, where instructions provides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of the description field specifically for Agent class 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"),
      });
  • Updated dependencies [cdfec65]:

@voltagent/[email protected]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

  • #102 cdfec65 Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88

    Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the instructions field instead of description when defining Agent instances.

    This change aligns the examples with the preferred API usage for the Agent class, where instructions provides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of the description field specifically for Agent class 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"),
      });
  • Updated dependencies [cdfec65]:

@voltagent/[email protected]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

  • #102 cdfec65 Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88

    Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the instructions field instead of description when defining Agent instances.

    This change aligns the examples with the preferred API usage for the Agent class, where instructions provides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of the description field specifically for Agent class 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"),
      });
  • Updated dependencies [cdfec65]:

@voltagent/[email protected]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

  • #102 cdfec65 Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88

    Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the instructions field instead of description when defining Agent instances.

    This change aligns the examples with the preferred API usage for the Agent class, where instructions provides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of the description field specifically for Agent class 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]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

  • #102 cdfec65 Thanks @omeraplak! - refactor: use 'instructions' field for Agent definitions in examples - #88

    Updated documentation examples (READMEs, docs, blogs) and relevant package code examples to use the instructions field instead of description when defining Agent instances.

    This change aligns the examples with the preferred API usage for the Agent class, where instructions provides behavioral guidance to the agent/LLM. This prepares for the eventual deprecation of the description field specifically for Agent class 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]

08 May 00:59
91b7f93

Choose a tag to compare

Patch Changes

[email protected]

07 May 17:26
5ac5ca1

Choose a tag to compare

Patch Changes

@voltagent/[email protected]

07 May 17:26
5ac5ca1

Choose a tag to compare

Patch Changes

@voltagent/[email protected]

07 May 17:26
5ac5ca1

Choose a tag to compare

Patch Changes

  • #98 c3db06d Thanks @yusuf-eren! - feat(xsAI): add xsAI voice provider

    This 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]: