このクエリで監査ログを確認すると
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
ログに表示されている日時付近のその投稿に関する結果は何も返ってきません。
他に確認すべきことはありますか?