当我使用以下查询查看审计日志时:
SELECT
feature_name,
created_at,
post_id,
response_tokens
FROM
ai_api_audit_logs
WHERE
post_id IS NOT NULL
AND created_at > :start_date
AND (response_tokens IS NULL OR response_tokens != 1)
ORDER BY
created_at DESC
在日志中显示的时间戳附近,该帖子的结果中没有任何内容。
我是否还应该查看其他方面?