interface ChatMessageFieldsWithRole {
    content: MessageContent;
    role: string;
    additional_kwargs?: {
        function_call?: FunctionCall;
        tool_calls?: ToolCall[];
        [key: string]: unknown;
    };
    name?: string;
}

Hierarchy (view full)

Implemented by

Properties

role: string
additional_kwargs?: {
    function_call?: FunctionCall;
    tool_calls?: ToolCall[];
    [key: string]: unknown;
}

Type declaration

name?: string

Generated using TypeDoc