@cubie-ai/tiny-ai - v0.0.14
    Preparing search index...

    Interface TinyAgentOptions<T>

    Options for configuring a TinyAgent instance.

    interface TinyAgentOptions<T extends TinyProvider<any, any, any>> {
        clients?: TinyMCP[];
        name?: string;
        provider: T;
        settings?: AgentSettings;
        tools?: Record<string, TinyTool> | TinyTool[];
    }

    Type Parameters

    • T extends TinyProvider<any, any, any>

      A generic type that extends TinyProvider.

    Index

    Properties

    clients?: TinyMCP[]

    A list of TinyMCP clients available to the agent.

    name?: string

    An optional name for the agent instance. Defaults to TinyAgent

    provider: T

    The provider instance for the agent.

    settings?: AgentSettings

    The settings for the agent. These will override the default settings returned by TinyAgent.defaultSettings. An empty object will result in no settings being applied. Providing undefined or not providing settings will use the default settings.

    tools?: Record<string, TinyTool> | TinyTool[]

    The tools available to the agent.