Module: OmniAI::Anthropic::Chat::ResponseSerializer

Defined in:
lib/omniai/anthropic/chat/response_serializer.rb

Overview

Overrides response serialize / deserialize.

Class Method Summary collapse

Class Method Details

.deserialize(data, context:) ⇒ OmniAI::Chat::Response

Parameters:

  • data (Hash)
  • context (OmniAI::Context)

Returns:

  • (OmniAI::Chat::Response)


23
24
25
26
27
28
# File 'lib/omniai/anthropic/chat/response_serializer.rb', line 23

def self.deserialize(data, context:)
  usage = OmniAI::Chat::Usage.deserialize(data["usage"], context:) if data["usage"]
  choice = OmniAI::Chat::Choice.deserialize(data, context:)

  OmniAI::Chat::Response.new(data:, choices: [choice], usage:)
end

.serialize(response, context:) ⇒ Hash

Parameters:

  • response (OmniAI::Chat::Response)
  • context (OmniAI::Context)

Returns:

  • (Hash)


12
13
14
15
16
17
# File 'lib/omniai/anthropic/chat/response_serializer.rb', line 12

def self.serialize(response, context:)
  usage = response.usage.serialize(context:)
  choice = response.choice.serialize(context:)

  choice.merge({ usage: })
end