Timeline Studio API Documentation - v0.26.0
    Preparing search index...
    interface WhisperTranscriptionOptions {
        language?: string;
        model?:
            | "whisper-1"
            | "whisper-large-v3"
            | "whisper-large-v2"
            | "whisper-base"
            | "whisper-small";
        prompt?: string;
        response_format?: "text"
        | "json"
        | "srt"
        | "verbose_json"
        | "vtt";
        temperature?: number;
        timestamp_granularities?: ("word" | "segment")[];
    }
    Index

    Properties

    language?: string
    model?:
        | "whisper-1"
        | "whisper-large-v3"
        | "whisper-large-v2"
        | "whisper-base"
        | "whisper-small"
    prompt?: string
    response_format?: "text" | "json" | "srt" | "verbose_json" | "vtt"
    temperature?: number
    timestamp_granularities?: ("word" | "segment")[]