Represents a single tool call for an LLM chat model message

interface ToolCall {
    arguments?: {
        [key: string]: any;
    };
    name?: string;
    toolId?: string;
    type?: string;
}

Properties

arguments?: {
    [key: string]: any;
}

Arguments passed to the tool

Type declaration

  • [key: string]: any
name?: string

Name of the tool

toolId?: string

The tool ID

type?: string

The tool type

Generated using TypeDoc