In some cases you may not want to have Helicone store or log your request body or response body.

You can easily omit these by adding the Helicone-Omit-Request or Helicone-Omit-Response header and setting it to "true".

Getting Started

curl https://oai.hconeai.com/v1/completions \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Helicone-Omit-Request: true' \
  -H 'Helicone-Omit-Response: true' \
 -d '{
    "model": "text-davinci-003",
    "prompt": "How do I enable custom rate limit policies?",
}'