型・APIリファレンス
    Preparing search index...

    Interface AiChatAutoCompletionSetting

    Copyright (C) 2026 DENTSU SOKEN INC. All Rights Reserved.

    AIチャット自動補完の設定を表すインターフェース。

    この設定は自動補完UIの表示やプロンプト、出力の取り扱いキーなどを定義します。

    interface AiChatAutoCompletionSetting {
        dataKey: string | null;
        dispFlag: boolean;
        messageDataKey: string | null;
        prompts: AiChatAutoCompletionPrompt[] | null;
    }
    Index
    dataKey: string | null

    自動補完結果を格納する際に使用するデータキー名(JSON Schema による構造化出力時に利用)。

    dispFlag: boolean

    自動補完機能の表示フラグ。

    messageDataKey: string | null

    メッセージデータ(会話履歴等)を格納する際のキー名(JSON Schema による構造化出力時に利用)。

    prompts: AiChatAutoCompletionPrompt[] | null

    自動補完に使用するプロンプトの配列。