Neutrome SDK reference
    Preparing search index...

    Type Alias ProgramToolResult

    The result of a tool call, fed back to the model.

    type ProgramToolResult = {
        callId: string;
        rawJson?: unknown;
        text: string;
    }
    Index
    callId: string

    Id of the call this result answers.

    rawJson?: unknown

    Decoded structured result, when the provider sent one.

    text: string

    Result rendered as text.