17 lines
419 B
Ruby
17 lines
419 B
Ruby
|
# 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,
|
||
|
:created_at
|
||
|
end
|