Reference documentation and code samples for the Google Cloud Ces V1 Client class ToolExecutionMode.
Defines the tool execution behavior if there are multipletools 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
value
mixed
static::value
name
mixed
Constants
TOOL_EXECUTION_MODE_UNSPECIFIED
Value: 0
Unspecified tool execution mode. Default to PARALLEL.
Generated from protobuf enum TOOL_EXECUTION_MODE_UNSPECIFIED = 0;
PARALLEL
Value: 1
If there are multiple tools being selected, they will be executed in parallel, with the same ToolContext .
Generated from protobuf enum PARALLEL = 1;
SEQUENTIAL
Value: 2
If 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;

