Reference documentation and code samples for the Google Cloud Ces V1 Client class ToolExecutionMode.
Defines the tool execution behavior if there are multiple tools being selected by the agent at the same time.
Protobuf type google.cloud.ces.v1.App.ToolExecutionMode
Namespace
Google \ Cloud \ Ces \ V1 \ AppMethods
static::name
| Parameter | |
|---|---|
| Name | Description |
value |
mixed
|
static::value
| Parameter | |
|---|---|
| Name | Description |
name |
mixed
|
Constants
TOOL_EXECUTION_MODE_UNSPECIFIED
Value: 0Unspecified tool execution mode. Default to PARALLEL.
Generated from protobuf enum TOOL_EXECUTION_MODE_UNSPECIFIED = 0;
PARALLEL
Value: 1If there are multiple tools being selected, they will be executed in parallel, with the same ToolContext.
Generated from protobuf enum PARALLEL = 1;
SEQUENTIAL
Value: 2If there are multiple tools being selected, they will be executed sequentially. The next tool will only be executed after the previous tool completes and it can see updated ToolContext from the previous tool.
Generated from protobuf enum SEQUENTIAL = 2;