interface StoredPostgresMessageData {
    content: string;
    name: undefined | string;
    role: undefined | string;
    tool_call_id: undefined | string;
    type: string;
    additional_kwargs?: Record<string, unknown>;
}

Properties

content: string
name: undefined | string
role: undefined | string
tool_call_id: undefined | string
type: string
additional_kwargs?: Record<string, unknown>

Generated using TypeDoc