All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs.GoogleCloudDialogflowCxV3beta1InputAudioConfigResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dialogflow.v3beta1.kotlin.outputs

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * Instructs the speech recognizer on how to process the audio content.
 * @property audioEncoding Audio encoding of the audio content to process.
 * @property enableWordInfo Optional. If `true`, Dialogflow returns SpeechWordInfo in StreamingRecognitionResult with information about the recognized speech words, e.g. start and end time offsets. If false or unspecified, Speech doesn't return any word-level information.
 * @property model Optional. Which Speech model to select for the given request. Select the model best suited to your domain to get best results. If a model is not explicitly specified, then we auto-select a model based on the parameters in the InputAudioConfig. If enhanced speech model is enabled for the agent and an enhanced version of the specified model for the language does not exist, then the speech is recognized using the standard version of the specified model. Refer to [Cloud Speech API documentation](https://cloud.google.com/speech-to-text/docs/basics#select-model) for more details. If you specify a model, the following models typically have the best performance: - phone_call (best for Agent Assist and telephony) - latest_short (best for Dialogflow non-telephony) - command_and_search (best for very short utterances and commands)
 * @property modelVariant Optional. Which variant of the Speech model to use.
 * @property phraseHints Optional. A list of strings containing words and phrases that the speech recognizer should recognize with higher likelihood. See [the Cloud Speech documentation](https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more details.
 * @property sampleRateHertz Sample rate (in Hertz) of the audio content sent in the query. Refer to [Cloud Speech API documentation](https://cloud.google.com/speech-to-text/docs/basics) for more details.
 * @property singleUtterance Optional. If `false` (default), recognition does not cease until the client closes the stream. If `true`, the recognizer will detect a single spoken utterance in input audio. Recognition ceases when it detects the audio's voice has stopped or paused. In this case, once a detected intent is received, the client should close the stream and start a new request with a new stream as needed. Note: This setting is relevant only for streaming methods.
 */
public data class GoogleCloudDialogflowCxV3beta1InputAudioConfigResponse(
    public val audioEncoding: String,
    public val enableWordInfo: Boolean,
    public val model: String,
    public val modelVariant: String,
    public val phraseHints: List,
    public val sampleRateHertz: Int,
    public val singleUtterance: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v3beta1.outputs.GoogleCloudDialogflowCxV3beta1InputAudioConfigResponse): GoogleCloudDialogflowCxV3beta1InputAudioConfigResponse =
            GoogleCloudDialogflowCxV3beta1InputAudioConfigResponse(
                audioEncoding = javaType.audioEncoding(),
                enableWordInfo = javaType.enableWordInfo(),
                model = javaType.model(),
                modelVariant = javaType.modelVariant(),
                phraseHints = javaType.phraseHints().map({ args0 -> args0 }),
                sampleRateHertz = javaType.sampleRateHertz(),
                singleUtterance = javaType.singleUtterance(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy