tjbot-ce - v3.0.0
    Preparing search index...

    Interface STTBackendGoogleCloudConfig

    Google Cloud speech-to-text backend configuration.

    interface STTBackendGoogleCloudConfig {
        credentialsPath?: string;
        enableAutomaticPunctuation?: boolean;
        interimResults?: boolean;
        languageCode?: string;
        model?: string;
        profanityFilter?: boolean;
        region?: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    credentialsPath?: string

    Path to the Google Cloud credentials file.

    enableAutomaticPunctuation?: boolean

    Enables automatic punctuation in transcripts.

    interimResults?: boolean

    Whether partial transcriptions should be emitted.

    languageCode?: string

    BCP-47 language code for transcription.

    model?: string

    Google Cloud STT model identifier.

    profanityFilter?: boolean

    Masks profane words in transcripts.

    region?: string

    Google Cloud region to target.