Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig

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

Configuration for how to generate memories.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig

Returns a new instance of GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig.



30939
30940
30941
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30939

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#modelString

Required. The model used to generate memories. Format: projects/project/ locations/location/publishers/google/models/model`. Corresponds to the JSON propertymodel`

Returns:

  • (String)


30937
30938
30939
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30937

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30944
30945
30946
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 30944

def update!(**args)
  @model = args[:model] if args.key?(:model)
end