Class: Google::Cloud::AIPlatform::V1::Tool::ComputerUse
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::Tool::ComputerUse
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/tool.rb
Overview
Tool to support computer use.
Defined Under Namespace
Modules: Environment
Instance Attribute Summary collapse
Instance Attribute Details
#environment ⇒ ::Google::Cloud::AIPlatform::V1::Tool::ComputerUse::Environment
Returns Required. The environment being operated.
97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 97 class ComputerUse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Represents the environment being operated, such as a web browser. module Environment # Defaults to browser. ENVIRONMENT_UNSPECIFIED = 0 # Operates in a web browser. ENVIRONMENT_BROWSER = 1 end end |