Interface NlCompletionResponseExperimental

interface NlCompletionResponse {
    refusal?: string;
    text?: string;
    toolCalls?: readonly NlCompletionToolCall[];
}

Properties

refusal?: string
text?: string
toolCalls?: readonly NlCompletionToolCall[]