WxPromptSessionEntry.

interface WxPromptSessionEntry {
    created_at: number;
    description?: string;
    id?: string;
    input_mode?: string;
    is_template?: boolean;
    name: string;
    prompt: WatsonXAI.Prompt;
    prompt_variables?: WatsonXAI.JsonObject;
}

Properties

created_at: number

Time the prompt was created.

description?: string

An optional description for the prompt.

id?: string

The prompt's id. This value cannot be set. It is returned in responses only.

input_mode?: string

Input mode in use for the prompt.

is_template?: boolean
name: string

Name used to display the prompt.

prompt_variables?: WatsonXAI.JsonObject