Do you store prompts or chat logs?
No. Payload retention is zero by default, so prompts and outputs are not stored as chat logs.
Reference
Zero data retention means prompts and outputs are processed transiently and not stored after the request completes.
Operational telemetry (token counts, timestamps, error codes) may still be retained for billing and reliability.
Look for explicit separation between payload retention and operational telemetry in provider policies.
A zero data retention LLM API processes prompts and outputs in memory and does not persist payload content after the request completes, while retaining minimal operational telemetry for billing.
curl https://api.abliteration.ai/v1/chat/completions \
-H "Authorization: Bearer $ABLIT_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "abliterated-model",
"messages": [{"role":"user","content":"Summarize this file."}]
}'FAQ
No. Payload retention is zero by default, so prompts and outputs are not stored as chat logs.
Payload retention means storing prompts or outputs as logs, conversations, or training data after the request completes.
Operational telemetry such as timestamps, token counts, and error codes can be retained for billing and reliability.
Review the privacy policy and terms, then run tests to confirm payloads are not stored or echoed in logs.