이 쿼리를 사용하여 감사 로그를 확인하면
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
로그에 표시된 날짜/시간戳(타임스탬프) 근처의 해당 게시물에 대한 결과가 아무것도 없습니다.
다른 부분을 살펴봐야 할까요?