SongGuess
    Preparing search index...

    Type Alias BrowserRunJsonOptions

    BrowserRunJsonOptions: BrowserRunCommonOptions & BrowserRunJsonBaseOptions & (
        | { prompt: string; response_format?: AiTextGenerationResponseFormat }
        | { prompt?: string; response_format: AiTextGenerationResponseFormat }
    )

    Options for the json quick action. At least one of prompt or response_format must be provided.

    Type Declaration