2024-06-27 09:43:00 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AiApiAuditLogSerializer < ApplicationSerializer
|
|
|
|
attributes :id,
|
|
|
|
:provider_id,
|
|
|
|
:user_id,
|
|
|
|
:request_tokens,
|
|
|
|
:response_tokens,
|
|
|
|
:raw_request_payload,
|
|
|
|
:raw_response_payload,
|
|
|
|
:topic_id,
|
|
|
|
:post_id,
|
|
|
|
:feature_name,
|
|
|
|
:language_model,
|
2024-11-11 16:14:30 -05:00
|
|
|
:created_at,
|
|
|
|
:prev_log_id,
|
|
|
|
:next_log_id
|
2024-06-27 09:43:00 -04:00
|
|
|
end
|