Interface LanguageModelStreamResponsePart

interface LanguageModelStreamResponsePart {
    content?: null | string;
    tool_calls?: ToolCall[];
}

Properties

content?: null | string
tool_calls?: ToolCall[]