@archastro/sdk
    Preparing search index...

    Interface AIChatStreamToolCallDelta

    Incremental tool-call data emitted as the model assembles a tool invocation (SSE tool_call_delta event).

    interface AIChatStreamToolCallDelta {
        delta?: string;
        id?: string;
        name?: string;
    }
    Index

    Properties

    Properties

    delta?: string

    A chunk of the tool call's serialized arguments. Concatenate deltas to reconstruct the arguments JSON.

    id?: string

    Identifier of the tool call this delta belongs to, once the model has assigned one.

    name?: string

    Name of the tool being called, once known.