@squidcloud/client
    Preparing search index...

    Interface Gpt4oTranscribeOptions

    Options for transcribing audio using the GPT-4o model.

    interface Gpt4oTranscribeOptions {
        modelName: "gpt-4o-transcribe" | "gpt-4o-mini-transcribe";
        prompt?: string;
        responseFormat?: "json";
        temperature?: number;
    }

    Hierarchy

    • BaseOpenAiAudioTranscribeOptions
      • Gpt4oTranscribeOptions
    Index

    Properties

    modelName: "gpt-4o-transcribe" | "gpt-4o-mini-transcribe"

    Specifies the Whisper-1 model for audio transcription.

    prompt?: string

    An optional prompt to guide the transcription process.

    responseFormat?: "json"

    The format of the transcription response; defaults to 'json'.

    temperature?: number

    The temperature for sampling during transcription; defaults to model-specific value.