Class: Cadenya::Models::ObjectiveCreateParams::EpisodicMemory
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Cadenya::Models::ObjectiveCreateParams::EpisodicMemory
- Defined in:
- lib/cadenya/models/objective_create_params.rb
Instance Attribute Summary collapse
-
#key ⇒ String?
The caller-supplied episodic key.
Instance Method Summary collapse
-
#initialize(workspace_id:, agent_id:, data:, episodic_memory: nil, initial_message: nil, memory_cascade: nil, metadata: nil, secrets: nil, user_data: nil, variation_id: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see Cadenya::Models::ObjectiveCreateParams for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(workspace_id:, agent_id:, data:, episodic_memory: nil, initial_message: nil, memory_cascade: nil, metadata: nil, secrets: nil, user_data: nil, variation_id: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Cadenya::Models::ObjectiveCreateParams for more details.
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/cadenya/models/objective_create_params.rb', line 123 class EpisodicMemory < Cadenya::Internal::Type::BaseModel # @!attribute key # The caller-supplied episodic key. Objectives created with the same key (for the # same agent) share one episodic memory layer. # # @return [String, nil] optional :key, String # @!method initialize(key: nil) # Some parameter documentations has been truncated, see # {Cadenya::Models::ObjectiveCreateParams::EpisodicMemory} for more details. # # Episodic is used to configure the episodic memory for the objective # # @param key [String] The caller-supplied episodic key. Objectives created with the same key end |
Instance Attribute Details
#key ⇒ String?
The caller-supplied episodic key. Objectives created with the same key (for the same agent) share one episodic memory layer.
129 |
# File 'lib/cadenya/models/objective_create_params.rb', line 129 optional :key, String |