Class: Durable::Llm::Providers::Google::GoogleMessage
- Inherits:
-
Object
- Object
- Durable::Llm::Providers::Google::GoogleMessage
- Defined in:
- lib/durable/llm/providers/google.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
readonly
Returns the value of attribute content.
Instance Method Summary collapse
-
#initialize(part) ⇒ GoogleMessage
constructor
A new instance of GoogleMessage.
- #to_s ⇒ Object
Constructor Details
#initialize(part) ⇒ GoogleMessage
Returns a new instance of GoogleMessage.
240 241 242 |
# File 'lib/durable/llm/providers/google.rb', line 240 def initialize(part) @content = part&.dig('text') || '' end |
Instance Attribute Details
#content ⇒ Object (readonly)
Returns the value of attribute content.
238 239 240 |
# File 'lib/durable/llm/providers/google.rb', line 238 def content @content end |
Instance Method Details
#to_s ⇒ Object
244 245 246 |
# File 'lib/durable/llm/providers/google.rb', line 244 def to_s @content end |