Neutrome SDK reference
    Preparing search index...

    Type Alias ProgramToolCall

    A tool call emitted by the model.

    type ProgramToolCall = {
        args: unknown;
        argsText: string;
        id: string;
        name: string;
    }
    Index
    args: unknown

    Decoded arguments.

    argsText: string

    Raw argument JSON exactly as the provider sent it.

    id: string

    Provider-assigned call id, correlating the call with its result.

    name: string

    Name of the called tool.