interface ChatAnthropicToolsCallOptions {
    tool_choice?: "auto" | {
        function: {
            name: string;
        };
        type: "function";
    };
    tools?: ToolDefinition[];
}

Hierarchy (view full)

  • Toolkit
    • ChatAnthropicToolsCallOptions

Properties

Properties

tool_choice?: "auto" | {
    function: {
        name: string;
    };
    type: "function";
}

Type declaration

  • function: {
        name: string;
    }
    • name: string
  • type: "function"
tools?: ToolDefinition[]

Generated using TypeDoc