Resource: Environment
You can create multiple versions of your agent and publish them to separate environments.
When you edit an agent, you are editing the draft agent. At any point, you can save the draft agent as an agent version, which is an immutable snapshot of your agent.
When you save the draft agent, it is published to the default environment. When you create agent versions, you can publish them to custom environments. You can create a variety of custom environments for:
- testing
- development
- production
- etc.
For more information, see the versions and environments guide.
JSON representation |
---|
{ "name": string, "description": string, "agentVersion": string, "state": enum ( |
Fields | |
---|---|
name |
Output only. The unique identifier of this agent environment. Supported formats: - |
description |
Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected. |
agent |
Optional. The agent version loaded into this environment. Supported formats: - |
state |
Output only. The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods. |
update |
Output only. The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
text |
Optional. Text to speech settings for this environment. |
fulfillment |
Optional. The fulfillment settings to use for this environment. |
State
Represents an environment state. When an environment is pointed to a new agent version, the environment is temporarily set to the LOADING
state. During that time, the environment keeps on serving the previous version of the agent. After the new agent version is done loading, the environment is set back to the RUNNING
state.
Enums | |
---|---|
STATE_UNSPECIFIED |
Not specified. This value is not used. |
STOPPED |
Stopped. |
LOADING |
Loading. |
RUNNING |
Running. |
TextToSpeechSettings
Instructs the speech synthesizer on how to generate the output audio content.
JSON representation |
---|
{ "enableTextToSpeech": boolean, "outputAudioEncoding": enum ( |
Fields | |
---|---|
enable |
Optional. Indicates whether text to speech is enabled. Even when this field is false, other settings in this proto are still retained. |
output |
Required. Audio encoding of the synthesized audio content. |
sample |
Optional. The synthesis sample rate (in hertz) for this audio. If not provided, then the synthesizer will use the default sample rate based on the audio encoding. If this is different from the voice's natural sample rate, then the synthesizer will honor this request by converting to the desired sample rate (which might result in worse audio quality). |
synthesize |
Optional. Configuration of how speech should be synthesized, mapping from language (https://cloud.google.com/dialogflow/docs/reference/language) to SynthesizeSpeechConfig. An object containing a list of |
OutputAudioEncoding
Audio encoding of the output audio format in Text-To-Speech.
Enums | |
---|---|
OUTPUT_AUDIO_ENCODING_UNSPECIFIED |
Not specified. |
OUTPUT_AUDIO_ENCODING_LINEAR_16 |
Uncompressed 16-bit signed little-endian samples (Linear PCM). Audio content returned as LINEAR16 also contains a WAV header. |
OUTPUT_AUDIO_ENCODING_MP3 |
MP3 audio at 32kbps. |
OUTPUT_AUDIO_ENCODING_MP3_64_KBPS |
MP3 audio at 64kbps. |
OUTPUT_AUDIO_ENCODING_OGG_OPUS |
Opus encoded audio wrapped in an ogg container. The result will be a file which can be played natively on Android, and in browsers (at least Chrome and Firefox). The quality of the encoding is considerably higher than MP3 while using approximately the same bitrate. |
OUTPUT_AUDIO_ENCODING_MULAW |
8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law. |
OUTPUT_AUDIO_ENCODING_ALAW |
8-bit samples that compand 13-bit audio samples using G.711 PCMU/a-law. |
Fulfillment
By default, your agent responds to a matched intent with a static response. As an alternative, you can provide a more dynamic response by using fulfillment. When you enable fulfillment for an intent, Dialogflow responds to that intent by calling a service that you define. For example, if an end-user wants to schedule a haircut on Friday, your service can check your database and respond to the end-user with availability information for Friday.
For more information, see the fulfillment guide.
JSON representation |
---|
{ "name": string, "displayName": string, "enabled": boolean, "features": [ { object ( |
Fields | |
---|---|
name |
Required. The unique identifier of the fulfillment. Supported formats:
This field is not used for Fulfillment in an Environment. |
display |
The human-readable name of the fulfillment, unique within the agent. This field is not used for Fulfillment in an Environment. |
enabled |
Whether fulfillment is enabled. |
features[] |
The field defines whether the fulfillment is enabled for certain features. |
Union field fulfillment . Required. The fulfillment configuration. fulfillment can be only one of the following: |
|
generic |
Configuration for a generic web service. |
GenericWebService
Represents configuration for a generic web service. Dialogflow supports two mechanisms for authentications:
- Basic authentication with username and password.
- Authentication with additional authentication headers.
More information could be found at: https://cloud.google.com/dialogflow/docs/fulfillment-configure.
JSON representation |
---|
{ "uri": string, "username": string, "password": string, "requestHeaders": { string: string, ... }, "isCloudFunction": boolean } |
Fields | |
---|---|
uri |
Required. The fulfillment URI for receiving POST requests. It must use https protocol. |
username |
The user name for HTTP Basic authentication. |
password |
The password for HTTP Basic authentication. |
request |
The HTTP request headers to send together with fulfillment requests. An object containing a list of |
isCloudFunction |
Optional. Indicates if generic web service is created through Cloud Functions integration. Defaults to false. isCloudFunction is deprecated. Cloud functions can be configured by its uri as a regular web service now. |
Feature
Whether fulfillment is enabled for the specific feature.
JSON representation |
---|
{
"type": enum ( |
Fields | |
---|---|
type |
The type of the feature that enabled for fulfillment. |
Type
The type of the feature.
Enums | |
---|---|
TYPE_UNSPECIFIED |
Feature type not specified. |
SMALLTALK |
Fulfillment is enabled for SmallTalk. |
Methods |
|
---|---|
|
Creates an agent environment. |
|
Deletes the specified agent environment. |
|
Retrieves the specified agent environment. |
|
Gets the history of the specified environment. |
|
Returns the list of all non-draft environments of the specified agent. |
|
Updates the specified agent environment. |