Interface LLMResponse

interface LLMResponse {
    content: string | unknown[];
    stop_reason: null | string;
    textContent: null | string;
    toolCalls: ToolCall[];
}

Properties

content: string | unknown[]
stop_reason: null | string
textContent: null | string
toolCalls: ToolCall[]