Reference documentation and code samples for the Cloud Speech V1p1beta1 Client class StreamingRecognitionConfig.
Provides information to the recognizer that specifies how to process the request.
Generated from protobuf message google.cloud.speech.v1p1beta1.StreamingRecognitionConfig
Methods
__construct
Constructor.
| Parameters | |
|---|---|
| Name | Description |
data |
array
Optional. Data for populating the Message object. |
↳ config |
Google\Cloud\Speech\V1p1beta1\RecognitionConfig
Required. Provides information to the recognizer that specifies how to process the request. |
↳ single_utterance |
bool
If |
↳ interim_results |
bool
If |
getConfig
Required. Provides information to the recognizer that specifies how to process the request.
Generated from protobuf field .google.cloud.speech.v1p1beta1.RecognitionConfig config = 1 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
Google\Cloud\Speech\V1p1beta1\RecognitionConfig|null |
|
hasConfig
clearConfig
setConfig
Required. Provides information to the recognizer that specifies how to process the request.
Generated from protobuf field .google.cloud.speech.v1p1beta1.RecognitionConfig config = 1 [(.google.api.field_behavior) = REQUIRED];
| Parameter | |
|---|---|
| Name | Description |
var |
Google\Cloud\Speech\V1p1beta1\RecognitionConfig
|
| Returns | |
|---|---|
| Type | Description |
$this |
|
getSingleUtterance
If false or omitted, the recognizer will perform continuous
recognition (continuing to wait for and process audio even if the user
pauses speaking) until the client closes the input stream (gRPC API) or
until the maximum time limit has been reached. May return multiple
StreamingRecognitionResults with the is_final flag set to true.
If true, the recognizer will detect a single spoken utterance. When it
detects that the user has paused or stopped speaking, it will return an
END_OF_SINGLE_UTTERANCE event and cease recognition. It will return no
more than one StreamingRecognitionResult with the is_final flag set to
true.
The single_utterance field can only be used with specified models,
otherwise an error is thrown. The model field in RecognitionConfig
must be set to:
command_and_searchphone_callAND additional fielduseEnhanced=true- The
modelfield is left undefined. In this case the API auto-selects a model based on any other parameters that you set inRecognitionConfig.
Generated from protobuf field bool single_utterance = 2;
| Returns | |
|---|---|
| Type | Description |
bool |
|
setSingleUtterance
If false or omitted, the recognizer will perform continuous
recognition (continuing to wait for and process audio even if the user
pauses speaking) until the client closes the input stream (gRPC API) or
until the maximum time limit has been reached. May return multiple
StreamingRecognitionResults with the is_final flag set to true.
If true, the recognizer will detect a single spoken utterance. When it
detects that the user has paused or stopped speaking, it will return an
END_OF_SINGLE_UTTERANCE event and cease recognition. It will return no
more than one StreamingRecognitionResult with the is_final flag set to
true.
The single_utterance field can only be used with specified models,
otherwise an error is thrown. The model field in RecognitionConfig
must be set to:
command_and_searchphone_callAND additional fielduseEnhanced=true- The
modelfield is left undefined. In this case the API auto-selects a model based on any other parameters that you set inRecognitionConfig.
Generated from protobuf field bool single_utterance = 2;
| Parameter | |
|---|---|
| Name | Description |
var |
bool
|
| Returns | |
|---|---|
| Type | Description |
$this |
|
getInterimResults
If true, interim results (tentative hypotheses) may be
returned as they become available (these interim results are indicated with
the is_final=false flag).
If false or omitted, only is_final=true result(s) are returned.
Generated from protobuf field bool interim_results = 3;
| Returns | |
|---|---|
| Type | Description |
bool |
|
setInterimResults
If true, interim results (tentative hypotheses) may be
returned as they become available (these interim results are indicated with
the is_final=false flag).
If false or omitted, only is_final=true result(s) are returned.
Generated from protobuf field bool interim_results = 3;
| Parameter | |
|---|---|
| Name | Description |
var |
bool
|
| Returns | |
|---|---|
| Type | Description |
$this |
|