Class: OCI::GenerativeAiAgentRuntime::Models::ChatDetails
- Inherits:
-
Object
- Object
- OCI::GenerativeAiAgentRuntime::Models::ChatDetails
- Defined in:
- lib/oci/generative_ai_agent_runtime/models/chat_details.rb
Overview
Chat details for managing user interactions and tool executions.
Instance Attribute Summary collapse
-
#performed_actions ⇒ Array<OCI::GenerativeAiAgentRuntime::Models::PerformedAction>
A list of actions that have been performed based on prior required actions.
-
#session_id ⇒ String
Optional sessionId.
-
#should_stream ⇒ BOOLEAN
Whether to stream the response.
-
#tool_parameters ⇒ Hash<String, String>
A map where each key is a toolId and the value contains tool type and additional dynamic parameters.
-
#user_message ⇒ String
The input user message content for the chat.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ChatDetails
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ ChatDetails
Initializes the object
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 69 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self. = attributes[:'userMessage'] if attributes[:'userMessage'] raise 'You cannot provide both :userMessage and :user_message' if attributes.key?(:'userMessage') && attributes.key?(:'user_message') self. = attributes[:'user_message'] if attributes[:'user_message'] self.should_stream = attributes[:'shouldStream'] unless attributes[:'shouldStream'].nil? self.should_stream = false if should_stream.nil? && !attributes.key?(:'shouldStream') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :shouldStream and :should_stream' if attributes.key?(:'shouldStream') && attributes.key?(:'should_stream') self.should_stream = attributes[:'should_stream'] unless attributes[:'should_stream'].nil? self.should_stream = false if should_stream.nil? && !attributes.key?(:'shouldStream') && !attributes.key?(:'should_stream') # rubocop:disable Style/StringLiterals self.session_id = attributes[:'sessionId'] if attributes[:'sessionId'] raise 'You cannot provide both :sessionId and :session_id' if attributes.key?(:'sessionId') && attributes.key?(:'session_id') self.session_id = attributes[:'session_id'] if attributes[:'session_id'] self.tool_parameters = attributes[:'toolParameters'] if attributes[:'toolParameters'] raise 'You cannot provide both :toolParameters and :tool_parameters' if attributes.key?(:'toolParameters') && attributes.key?(:'tool_parameters') self.tool_parameters = attributes[:'tool_parameters'] if attributes[:'tool_parameters'] self.performed_actions = attributes[:'performedActions'] if attributes[:'performedActions'] raise 'You cannot provide both :performedActions and :performed_actions' if attributes.key?(:'performedActions') && attributes.key?(:'performed_actions') self.performed_actions = attributes[:'performed_actions'] if attributes[:'performed_actions'] end |
Instance Attribute Details
#performed_actions ⇒ Array<OCI::GenerativeAiAgentRuntime::Models::PerformedAction>
A list of actions that have been performed based on prior required actions.
30 31 32 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 30 def performed_actions @performed_actions end |
#session_id ⇒ String
Optional sessionId. If not provided, will chat without any prior context.
22 23 24 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 22 def session_id @session_id end |
#should_stream ⇒ BOOLEAN
Whether to stream the response.
18 19 20 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 18 def should_stream @should_stream end |
#tool_parameters ⇒ Hash<String, String>
A map where each key is a toolId and the value contains tool type and additional dynamic parameters.
26 27 28 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 26 def tool_parameters @tool_parameters end |
#user_message ⇒ String
The input user message content for the chat.
14 15 16 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 14 def @user_message end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 33 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'user_message': :'userMessage', 'should_stream': :'shouldStream', 'session_id': :'sessionId', 'tool_parameters': :'toolParameters', 'performed_actions': :'performedActions' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 46 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'user_message': :'String', 'should_stream': :'BOOLEAN', 'session_id': :'String', 'tool_parameters': :'Hash<String, String>', 'performed_actions': :'Array<OCI::GenerativeAiAgentRuntime::Models::PerformedAction>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
115 116 117 118 119 120 121 122 123 124 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 115 def ==(other) return true if equal?(other) self.class == other.class && == other. && should_stream == other.should_stream && session_id == other.session_id && tool_parameters == other.tool_parameters && performed_actions == other.performed_actions end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 149 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
129 130 131 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 129 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
138 139 140 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 138 def hash [, should_stream, session_id, tool_parameters, performed_actions].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
182 183 184 185 186 187 188 189 190 191 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 182 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
176 177 178 |
# File 'lib/oci/generative_ai_agent_runtime/models/chat_details.rb', line 176 def to_s to_hash.to_s end |