Class: Google::Apis::AiplatformV1::CloudAiNlLlmProtoServiceFunctionCall
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::CloudAiNlLlmProtoServiceFunctionCall
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Function call details.
Instance Attribute Summary collapse
-
#args ⇒ Hash<String,Object>
The function parameters and values in JSON format.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudAiNlLlmProtoServiceFunctionCall
constructor
A new instance of CloudAiNlLlmProtoServiceFunctionCall.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudAiNlLlmProtoServiceFunctionCall
Returns a new instance of CloudAiNlLlmProtoServiceFunctionCall.
605 606 607 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 605 def initialize(**args) update!(**args) end |
Instance Attribute Details
#args ⇒ Hash<String,Object>
The function parameters and values in JSON format.
Corresponds to the JSON property args
598 599 600 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 598 def args @args end |
#name ⇒ String
Required. The name of the function to call.
Corresponds to the JSON property name
603 604 605 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 603 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
610 611 612 613 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 610 def update!(**args) @args = args[:args] if args.key?(:args) @name = args[:name] if args.key?(:name) end |