Module: Legion::LLM::Inference::AuditPublisher

Extended by:
Legion::Logging::Helper
Defined in:
lib/legion/llm/inference/audit_publisher.rb

Class Method Summary collapse

Class Method Details

.audit_max_messagesObject



154
155
156
# File 'lib/legion/llm/inference/audit_publisher.rb', line 154

def audit_max_messages
  Legion::Settings[:llm][:compliance][:audit_max_messages]
end

.build_event(request:, response:) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/legion/llm/inference/audit_publisher.rb', line 15

def build_event(request:, response:)
  log.debug("[audit_publisher][build_event] action=build request_id=#{response.request_id} conversation_id=#{response.conversation_id}")

  # G3: the envelope's message member is the canonical rendering
  # projection (a plain Hash) and its tools are
  # Array<Canonical::ToolCall> — the audit event serializes the
  # canonical shapes directly (no legacy Types re-wrap at the exit).
  resp_message = response.message
  msg_content = hash_value(resp_message, :content)

  tools_data = Array(response.tools).map do |tc|
    tc.is_a?(Legion::Extensions::Llm::Canonical::ToolCall) ? tc.to_h : tc
  end

  audit_data = response.audit || {}
  provider_payload = hash_value(audit_data, :provider_payload) || {}

  event = {
    request_id:        response.request_id,
    conversation_id:   response.conversation_id,
    caller:            response.caller,
    identity:          extract_identity(response.caller),
    routing:           response.routing,
    tokens:            serialize_tokens(response.tokens),
    cost:              response.cost,
    system_prompt:     hash_value(provider_payload, :system_prompt),
    injected_tools:    hash_value(provider_payload, :injected_tools),
    enrichments:       compact_enrichments(response.enrichments),
    audit:             without_provider_payload(audit_data),
    timeline:          compact_timeline(response.timeline),
    classification:    response.classification,
    tracing:           response.tracing,
    messages:          current_turn_messages(request.messages),
    response_content:  msg_content,
    response_thinking: response.thinking,
    tools_used:        tools_data,
    timestamp:         Time.now,
    request_type:      request.respond_to?(:request_type) ? request.request_type : 'chat',
    tier:              hash_value(response.routing, :tier),
    message_context:   build_message_context(request: request, response: response)
  }
  # task_id rides on the request (the envelope message carries no
  # task identity of its own).
  event[:task_id] = request.respond_to?(:task_id) ? request.task_id : nil

  # Ledger column sources (official_record_writer reads these keys directly).
  routing = response.routing.is_a?(Hash) ? response.routing : {}
  event[:finish_reason] = finish_reason_value(response)
  event[:provider_instance] = hash_value(routing, :instance)
  event[:dispatch_path] = hash_value(routing, :tier)
  event[:latency_ms] = hash_value(routing, :latency_ms)
  event[:route_attempts] = Array(hash_value(routing, :route_attempts)).size
  event[:route_attempt_details] = hash_value(routing, :route_attempts) if hash_value(routing, :route_attempts)
  event[:escalation_chain] = hash_value(routing, :escalation_chain) if hash_value(routing, :escalation_chain)
  event[:request_content_hash] = content_hash(request.messages)
  event[:response_content_hash] = content_hash(msg_content)
  provider_metrics = extract_provider_metrics(provider_payload)
  event[:provider_metrics] = provider_metrics if provider_metrics.any?
  event[:context_accounting] = hash_value(audit_data, :context_accounting) if hash_value(audit_data, :context_accounting)
  event[:agent_id] = request.agent_id if request.respond_to?(:agent_id) && request.agent_id
  event[:node_id] = Legion::LLM.node_id if Legion::LLM.respond_to?(:node_id) && Legion::LLM.node_id
  event.compact
  event
end

.build_message_context(request:, response:) ⇒ Object



158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/legion/llm/inference/audit_publisher.rb', line 158

def build_message_context(request:, response:)
  ctx = {
    request_id:      response.request_id,
    conversation_id: response.conversation_id
  }

  ctx[:message_id] = request.message_id if request.respond_to?(:message_id) && request.message_id
  ctx[:message_seq] = request.message_seq if request.respond_to?(:message_seq) && request.message_seq
  ctx[:parent_message_id] = request.parent_message_id if request.respond_to?(:parent_message_id) && request.parent_message_id

  ctx.compact
end

.compact_enrichments(enrichments) ⇒ Object



114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/legion/llm/inference/audit_publisher.rb', line 114

def compact_enrichments(enrichments)
  return {} unless enrichments.is_a?(Hash)

  enrichments.transform_values do |v|
    next v unless v.is_a?(Hash)

    summary = { content: hash_value(v, :content), timestamp: hash_value(v, :timestamp) }
    data = hash_value(v, :data)
    next summary unless data.is_a?(Hash)

    compacted = data.transform_values do |dv|
      dv.is_a?(Array) && dv.size > 1 ? dv.last : dv
    end
    summary.merge(data: compacted)
  end
end

.compact_timeline(timeline) ⇒ Object



131
132
133
134
135
136
137
138
139
140
# File 'lib/legion/llm/inference/audit_publisher.rb', line 131

def compact_timeline(timeline)
  return [] unless timeline.is_a?(Array)

  timeline.select do |event|
    key = (event[:key] || event['key']).to_s
    key.start_with?('provider:') || key.start_with?('escalation:') || key.start_with?('tool:execute:') ||
      key.start_with?('rbac:') || key.start_with?('classification:') || key.start_with?('billing:') ||
      key.start_with?('confidence:')
  end
end

.content_hash(content) ⇒ Object



96
97
98
# File 'lib/legion/llm/inference/audit_publisher.rb', line 96

def content_hash(content)
  Legion::LLM::ContentHash.call(content)
end

.current_turn_messages(messages) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
# File 'lib/legion/llm/inference/audit_publisher.rb', line 142

def current_turn_messages(messages)
  return messages unless messages.is_a?(Array)

  max = audit_max_messages
  return messages if messages.size <= max

  truncated = messages.last(max)
  full_hash = Digest::SHA256.hexdigest(messages.map { |m| (m[:content] || m['content']).to_s }.join)
  truncated.unshift({ role: :system, content: "[audit: #{messages.size} messages, showing last #{max}, full_hash=#{full_hash}]" })
  truncated
end

.extract_identity(caller_data) ⇒ Object



100
101
102
103
104
105
# File 'lib/legion/llm/inference/audit_publisher.rb', line 100

def extract_identity(caller_data)
  return Legion::LLM::PublisherIdentity.current if caller_data.nil?
  return Legion::LLM::PublisherIdentity.current unless caller_data.is_a?(Hash) && caller_data.any?

  caller_data
end

.extract_provider_metrics(provider_payload) ⇒ Object



177
178
179
180
181
182
183
184
185
186
# File 'lib/legion/llm/inference/audit_publisher.rb', line 177

def extract_provider_metrics(provider_payload)
  return {} unless provider_payload.is_a?(Hash)

  {
    actual_cost_usd:      hash_value(provider_payload, :estimated_cost_usd) || hash_value(provider_payload, :cost_usd),
    actual_input_tokens:  hash_value(provider_payload, :input_tokens),
    actual_output_tokens: hash_value(provider_payload, :output_tokens),
    model_version:        hash_value(provider_payload, :model_version) || hash_value(provider_payload, :model)
  }.compact
end

.finish_reason_value(response) ⇒ Object



89
90
91
92
93
94
# File 'lib/legion/llm/inference/audit_publisher.rb', line 89

def finish_reason_value(response)
  stop = response.respond_to?(:stop) ? response.stop : nil
  return hash_value(stop, :reason) if stop.is_a?(Hash)

  stop&.to_s
end

.hash_value(hash, key) ⇒ Object



196
197
198
199
200
201
202
203
# File 'lib/legion/llm/inference/audit_publisher.rb', line 196

def hash_value(hash, key)
  return nil unless hash.respond_to?(:key?)

  string_key = key.to_s
  return hash[string_key] if hash.key?(string_key)

  hash[key] if hash.key?(key)
end

.nested_value(hash, *keys) ⇒ Object



188
189
190
191
192
193
194
# File 'lib/legion/llm/inference/audit_publisher.rb', line 188

def nested_value(hash, *keys)
  keys.reduce(hash) do |current, key|
    return nil unless current.respond_to?(:key?)

    hash_value(current, key)
  end
end

.publish(request:, response:) ⇒ Object



80
81
82
83
84
85
86
87
# File 'lib/legion/llm/inference/audit_publisher.rb', line 80

def publish(request:, response:)
  event = build_event(request: request, response: response)
  Legion::LLM::Audit.emit_prompt(event)
  event
rescue StandardError => e
  handle_exception(e, level: :warn)
  nil
end

.serialize_tokens(tokens) ⇒ Object



107
108
109
110
111
112
# File 'lib/legion/llm/inference/audit_publisher.rb', line 107

def serialize_tokens(tokens)
  return tokens.to_h if tokens.respond_to?(:to_h) && !tokens.is_a?(Hash)
  return tokens if tokens.is_a?(Hash)

  {}
end

.without_provider_payload(audit_data) ⇒ Object



171
172
173
174
175
# File 'lib/legion/llm/inference/audit_publisher.rb', line 171

def without_provider_payload(audit_data)
  return {} unless audit_data.is_a?(Hash)

  audit_data.reject { |key, _| key.to_s == 'provider_payload' }
end