Class: Google::Cloud::AIPlatform::V1::Tool::ComputerUse

Inherits:
Object
  • Object
show all
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.

Returns:



118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 118

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

#excluded_predefined_functions::Array<::String>

Returns Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes:

  1. Using a more restricted / different action space.
  2. Improving the definitions / instructions of predefined functions.

Returns:

  • (::Array<::String>)

    Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes:

    1. Using a more restricted / different action space.
    2. Improving the definitions / instructions of predefined functions.


118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'proto_docs/google/cloud/aiplatform/v1/tool.rb', line 118

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