class RubyLLM::Content::Raw
Represents provider-specific payloads that should bypass RubyLLM formatting.
Attributes
Public Class Methods
Source
# File lib/ruby_llm/content.rb, line 76 def initialize(value) raise ArgumentError, 'Raw content payload cannot be nil' if value.nil? @value = value end