Class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1AgentInteraction
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1AgentInteraction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Interaction for generating the completion using agents.
Instance Attribute Summary collapse
-
#agent ⇒ String
The name of the
Agentused for generating the completion. -
#antigravity_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1AntigravityAgentConfig
Configuration for the Antigravity agent runtime.
-
#code_mender_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfig
Configuration for the CodeMender agent.
-
#deep_research_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DeepResearchAgentConfig
Configuration for the Deep Research agent.
-
#dynamic_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DynamicAgentConfig
Configuration for dynamic agents.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenaiVertexV1beta1AgentInteraction
constructor
A new instance of GenaiVertexV1beta1AgentInteraction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenaiVertexV1beta1AgentInteraction
Returns a new instance of GenaiVertexV1beta1AgentInteraction.
1203 1204 1205 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1203 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent ⇒ String
The name of the Agent used for generating the completion.
Corresponds to the JSON property agent
1180 1181 1182 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1180 def agent @agent end |
#antigravity_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1AntigravityAgentConfig
Configuration for the Antigravity agent runtime. Provides server-side control
over the agent's execution environment and tool configuration.
Corresponds to the JSON property antigravityConfig
1186 1187 1188 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1186 def antigravity_config @antigravity_config end |
#code_mender_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfig
Configuration for the CodeMender agent.
Corresponds to the JSON property codeMenderConfig
1191 1192 1193 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1191 def code_mender_config @code_mender_config end |
#deep_research_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DeepResearchAgentConfig
Configuration for the Deep Research agent.
Corresponds to the JSON property deepResearchConfig
1196 1197 1198 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1196 def deep_research_config @deep_research_config end |
#dynamic_config ⇒ Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DynamicAgentConfig
Configuration for dynamic agents.
Corresponds to the JSON property dynamicConfig
1201 1202 1203 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1201 def dynamic_config @dynamic_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1208 1209 1210 1211 1212 1213 1214 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 1208 def update!(**args) @agent = args[:agent] if args.key?(:agent) @antigravity_config = args[:antigravity_config] if args.key?(:antigravity_config) @code_mender_config = args[:code_mender_config] if args.key?(:code_mender_config) @deep_research_config = args[:deep_research_config] if args.key?(:deep_research_config) @dynamic_config = args[:dynamic_config] if args.key?(:dynamic_config) end |