# This file was auto-generated by Fern from our API Definition.

import typing_extensions
from .transcription_metrics import TranscriptionMetricsParams


class SpeechToTextTranslateTranscriptionDataParams(typing_extensions.TypedDict):
    request_id: str
    """
    Unique identifier for the request
    """

    transcript: str
    """
    English translation of the provided speech
    """

    language_code: typing_extensions.NotRequired[str]
    """
    BCP-47 code of detected source language (null when language detection is in progress)
    """

    language_probability: typing_extensions.NotRequired[float]
    """
    Float value (0.0 to 1.0) indicating the probability of the detected language being correct. Higher values indicate higher confidence.
    
    **When it returns a value:**
    - When `language_code` is not provided in the request
    - When `language_code` is set to `unknown`
    
    **When it returns null:**
    - When a specific `language_code` is provided (language detection is skipped)
    
    The parameter is always present in the response.
    """

    metrics: TranscriptionMetricsParams
