Module: OpenTelemetry::Instrumentation::RubyLLM::Patches::ChatMethods

Defined in:
lib/opentelemetry/instrumentation/ruby_llm/patches/chat_methods.rb

Instance Method Summary collapse

Instance Method Details

#to_llmObject



8
9
10
11
12
# File 'lib/opentelemetry/instrumentation/ruby_llm/patches/chat_methods.rb', line 8

def to_llm(...)
  chat = super
  chat.otel_conversation_id = id.to_s if persisted?
  chat
end