Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
122 lines
3.6 KiB
Ruby
122 lines
3.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'opentelemetry_config'
|
|
|
|
module Integrations::LlmInstrumentation
|
|
include Integrations::LlmInstrumentationConstants
|
|
include Integrations::LlmInstrumentationHelpers
|
|
include Integrations::LlmInstrumentationSpans
|
|
|
|
def instrument_llm_call(params)
|
|
return yield unless ChatwootApp.otel_enabled?
|
|
|
|
result = nil
|
|
executed = false
|
|
tracer.in_span(params[:span_name]) do |span|
|
|
setup_span_attributes(span, params)
|
|
result = yield
|
|
executed = true
|
|
record_completion(span, result)
|
|
result
|
|
end
|
|
rescue StandardError => e
|
|
ChatwootExceptionTracker.new(e, account: resolve_account(params)).capture_exception
|
|
executed ? result : yield
|
|
end
|
|
|
|
def instrument_agent_session(params)
|
|
return yield unless ChatwootApp.otel_enabled?
|
|
|
|
result = nil
|
|
executed = false
|
|
tracer.in_span(params[:span_name]) do |span|
|
|
set_metadata_attributes(span, params)
|
|
|
|
# By default, the input and output of a trace are set from the root observation
|
|
span.set_attribute(ATTR_LANGFUSE_OBSERVATION_INPUT, params[:messages].to_json)
|
|
result = yield
|
|
executed = true
|
|
span.set_attribute(ATTR_LANGFUSE_OBSERVATION_OUTPUT, result.to_json)
|
|
result
|
|
end
|
|
rescue StandardError => e
|
|
ChatwootExceptionTracker.new(e, account: resolve_account(params)).capture_exception
|
|
executed ? result : yield
|
|
end
|
|
|
|
def instrument_tool_call(tool_name, arguments)
|
|
# There is no error handling because tools can fail and LLMs should be
|
|
# aware of those failures and factor them into their response.
|
|
return yield unless ChatwootApp.otel_enabled?
|
|
|
|
tracer.in_span(format(TOOL_SPAN_NAME, tool_name)) do |span|
|
|
span.set_attribute(ATTR_LANGFUSE_OBSERVATION_INPUT, arguments.to_json)
|
|
result = yield
|
|
span.set_attribute(ATTR_LANGFUSE_OBSERVATION_OUTPUT, result.to_json)
|
|
result
|
|
end
|
|
end
|
|
|
|
def instrument_embedding_call(params)
|
|
return yield unless ChatwootApp.otel_enabled?
|
|
|
|
instrument_with_span(params[:span_name] || 'llm.embedding', params) do |span, track_result|
|
|
set_embedding_span_attributes(span, params)
|
|
result = yield
|
|
track_result.call(result)
|
|
set_embedding_result_attributes(span, result)
|
|
result
|
|
end
|
|
end
|
|
|
|
def instrument_audio_transcription(params)
|
|
return yield unless ChatwootApp.otel_enabled?
|
|
|
|
instrument_with_span(params[:span_name] || 'llm.audio.transcription', params) do |span, track_result|
|
|
set_audio_transcription_span_attributes(span, params)
|
|
result = yield
|
|
track_result.call(result)
|
|
set_transcription_result_attributes(span, result)
|
|
result
|
|
end
|
|
end
|
|
|
|
def instrument_moderation_call(params)
|
|
return yield unless ChatwootApp.otel_enabled?
|
|
|
|
instrument_with_span(params[:span_name] || 'llm.moderation', params) do |span, track_result|
|
|
set_moderation_span_attributes(span, params)
|
|
result = yield
|
|
track_result.call(result)
|
|
set_moderation_result_attributes(span, result)
|
|
result
|
|
end
|
|
end
|
|
|
|
def instrument_with_span(span_name, params, &)
|
|
result = nil
|
|
executed = false
|
|
tracer.in_span(span_name) do |span|
|
|
track_result = lambda do |r|
|
|
executed = true
|
|
result = r
|
|
end
|
|
yield(span, track_result)
|
|
end
|
|
rescue StandardError => e
|
|
ChatwootExceptionTracker.new(e, account: resolve_account(params)).capture_exception
|
|
raise unless executed
|
|
|
|
result
|
|
end
|
|
|
|
private
|
|
|
|
def resolve_account(params)
|
|
return params[:account] if params[:account].is_a?(Account)
|
|
return Account.find_by(id: params[:account_id]) if params[:account_id].present?
|
|
|
|
nil
|
|
end
|
|
end
|