smoltalk
    Preparing search index...

    Type Alias PromptResult

    type PromptResult = {
        cost?: CostEstimate;
        model?: ModelName | ModelConfig;
        output: string | null;
        thinkingBlocks?: ThinkingBlock[];
        toolCalls: ToolCall[];
        usage?: TokenUsage;
    }
    Index

    Properties

    cost?: CostEstimate
    output: string | null
    thinkingBlocks?: ThinkingBlock[]
    toolCalls: ToolCall[]
    usage?: TokenUsage