Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic
- 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
A topic of information that should be extracted from conversations and stored as memories.
Instance Attribute Summary collapse
-
#custom_memory_topic ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic
A custom memory topic defined by the developer.
-
#managed_memory_topic ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic
A managed memory topic defined by the system.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic
constructor
A new instance of GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic
Returns a new instance of GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic.
21676 21677 21678 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21676 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_memory_topic ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic
A custom memory topic defined by the developer.
Corresponds to the JSON property customMemoryTopic
21669 21670 21671 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21669 def custom_memory_topic @custom_memory_topic end |
#managed_memory_topic ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic
A managed memory topic defined by the system.
Corresponds to the JSON property managedMemoryTopic
21674 21675 21676 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21674 def managed_memory_topic @managed_memory_topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21681 21682 21683 21684 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 21681 def update!(**args) @custom_memory_topic = args[:custom_memory_topic] if args.key?(:custom_memory_topic) @managed_memory_topic = args[:managed_memory_topic] if args.key?(:managed_memory_topic) end |