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

Properties

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