Skip to main content

phrase_sets

Creates, updates, deletes, gets or lists a phrase_sets resource.

Overview

Namephrase_sets
TypeResource
Idgoogle.speech.phrase_sets

Fields

NameDatatypeDescription
namestringThe resource name of the phrase set.
annotationsobjectOutput only. Allows users to store small amounts of arbitrary data. Both the key and the value must be 63 characters or less each. At most 100 annotations. This field is not used.
boostnumberHint Boost. Positive value will increase the probability that a specific phrase will be recognized over other similar sounding phrases. The higher the boost, the higher the chance of false positive recognition as well. Negative boost values would correspond to anti-biasing. Anti-biasing is not enabled, so negative boost will simply be ignored. Though boost can accept a wide range of positive values, most use cases are best served with values between 0 (exclusive) and 20. We recommend using a binary search approach to finding the optimal value for your use case as well as adding phrases both with and without boost to your requests.
deleteTimestringOutput only. The time at which this resource was requested for deletion. This field is not used.
displayNamestringOutput only. User-settable, human-readable name for the PhraseSet. Must be 63 characters or less. This field is not used.
etagstringOutput only. This checksum is computed by the server based on the value of other fields. This may be sent on update, undelete, and delete requests to ensure the client has an up-to-date value before proceeding. This field is not used.
expireTimestringOutput only. The time at which this resource will be purged. This field is not used.
kmsKeyNamestringOutput only. The KMS key name with which the content of the PhraseSet is encrypted. The expected format is projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.
kmsKeyVersionNamestringOutput only. The KMS key version name with which content of the PhraseSet is encrypted. The expected format is projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}.
phrasesarrayA list of word and phrases.
reconcilingbooleanOutput only. Whether or not this PhraseSet is in the process of being updated. This field is not used.
statestringOutput only. The CustomClass lifecycle state. This field is not used.
uidstringOutput only. System-assigned unique identifier for the PhraseSet. This field is not used.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocationsId, phraseSetsId, projectsIdGet a phrase set.
listSELECTlocationsId, projectsIdList phrase sets.
createINSERTlocationsId, projectsIdCreate a set of phrase hints. Each item in the set can be a single word or a multi-word phrase. The items in the PhraseSet are favored by the recognition model when you send a call that includes the PhraseSet.
deleteDELETElocationsId, phraseSetsId, projectsIdDelete a phrase set.
patchUPDATElocationsId, phraseSetsId, projectsIdUpdate a phrase set.

SELECT examples

List phrase sets.

SELECT
name,
annotations,
boost,
deleteTime,
displayName,
etag,
expireTime,
kmsKeyName,
kmsKeyVersionName,
phrases,
reconciling,
state,
uid
FROM google.speech.phrase_sets
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';

INSERT example

Use the following StackQL query and manifest file to create a new phrase_sets resource.

/*+ create */
INSERT INTO google.speech.phrase_sets (
locationsId,
projectsId,
phraseSetId,
phraseSet
)
SELECT
'{{ locationsId }}',
'{{ projectsId }}',
'{{ phraseSetId }}',
'{{ phraseSet }}'
;

UPDATE example

Updates a phrase_sets resource.

/*+ update */
UPDATE google.speech.phrase_sets
SET
name = '{{ name }}',
phrases = '{{ phrases }}',
boost = number
WHERE
locationsId = '{{ locationsId }}'
AND phraseSetsId = '{{ phraseSetsId }}'
AND projectsId = '{{ projectsId }}';

DELETE example

Deletes the specified phrase_sets resource.

/*+ delete */
DELETE FROM google.speech.phrase_sets
WHERE locationsId = '{{ locationsId }}'
AND phraseSetsId = '{{ phraseSetsId }}'
AND projectsId = '{{ projectsId }}';