Class: OmniAI::Chat::Choice
- Inherits:
-
Object
- Object
- OmniAI::Chat::Choice
- Defined in:
- lib/omniai/chat/choice.rb
Overview
A choice wraps a message and index returned by an LLM. The default is to generate a single choice. Some LLMs support generating multiple choices at once (e.g. giving you multiple options to choose from).
Instance Attribute Summary collapse
Class Method Summary collapse
Instance Method Summary collapse
- #content ⇒ Array<Content>, String
- #delta ⇒ Message
-
#initialize(message:, index: DEFAULT_INDEX) ⇒ Choice
constructor
A new instance of Choice.
- #inspect ⇒ String
- #serialize(context: nil) ⇒ Hash
- #tool_call_list ⇒ Array<ToolCall>?
Constructor Details
#initialize(message:, index: DEFAULT_INDEX) ⇒ Choice
Returns a new instance of Choice.
21 22 23 24 |
# File 'lib/omniai/chat/choice.rb', line 21 def initialize(message:, index: DEFAULT_INDEX) @message = @index = index end |
Instance Attribute Details
#index ⇒ Integer
13 14 15 |
# File 'lib/omniai/chat/choice.rb', line 13 def index @index end |
Class Method Details
.deserialize(data, context: nil) ⇒ Choice
35 36 37 38 39 40 41 42 43 |
# File 'lib/omniai/chat/choice.rb', line 35 def self.deserialize(data, context: nil) deserialize = context&.deserializer(:choice) return deserialize.call(data, context:) if deserialize index = data["index"] || DEFAULT_INDEX = Message.deserialize(data["message"] || data["delta"], context:) new(message:, index:) end |
Instance Method Details
#content ⇒ Array<Content>, String
63 64 65 |
# File 'lib/omniai/chat/choice.rb', line 63 def content .content end |
#inspect ⇒ String
27 28 29 |
# File 'lib/omniai/chat/choice.rb', line 27 def inspect "#<#{self.class.name} index=#{@index} message=#{@message.inspect}>" end |
#serialize(context: nil) ⇒ Hash
47 48 49 50 51 52 53 54 55 |
# File 'lib/omniai/chat/choice.rb', line 47 def serialize(context: nil) serialize = context&.serializer(:choice) return serialize.call(self, context:) if serialize { index:, message: .serialize(context:), } end |
#tool_call_list ⇒ Array<ToolCall>?
68 69 70 |
# File 'lib/omniai/chat/choice.rb', line 68 def tool_call_list .tool_call_list end |