mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-08 04:28:18 +00:00
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
|