Interface ChatPrompt

interface ChatPrompt {
    command?: string;
    context?: string[] | QuickActionCommand[];
    escapedPrompt?: string;
    options?: Record<string, string>;
    prompt?: string;
}

Hierarchy (view full)

Properties

command?: string
context?: string[] | QuickActionCommand[]
escapedPrompt?: string
options?: Record<string, string>
prompt?: string