SongGuess
    Preparing search index...

    Type Alias AiSearchChatCompletionsResponse

    type AiSearchChatCompletionsResponse = {
        choices: {
            index?: number;
            message: {
                content: string | null;
                role: "system" | "developer" | "user" | "assistant" | "tool";
                [key: string]: unknown;
            };
            [key: string]: unknown;
        }[];
        chunks: AiSearchSearchResponse["chunks"];
        id?: string;
        model?: string;
        object?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    choices: {
        index?: number;
        message: {
            content: string | null;
            role: "system" | "developer" | "user" | "assistant" | "tool";
            [key: string]: unknown;
        };
        [key: string]: unknown;
    }[]
    id?: string
    model?: string
    object?: string