Chatoyant - v0.2.1
    Preparing search index...

    Interface ToolCall

    Serialized tool call from the LLM.

    interface ToolCall {
        id: string;
        name: string;
        args: unknown;
    }
    Index

    Properties

    Properties

    id: string

    Tool call ID (for response matching)

    name: string

    Tool name

    args: unknown

    Raw arguments (JSON-parsed)