mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-17 11:46:28 +08:00
16 lines
419 B
Ruby
16 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
|