File size: 363 Bytes
9ca1656
 
 
 
 
 
 
18af915
9ca1656
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import openai
from os import getenv

openai.api_base = "https://oai.hconeai.com/v1"
HELICONE_API_KEY = getenv("HELICONE_API_KEY")

HEADERS = {
    "Helicone-Auth": f"Bearer {HELICONE_API_KEY}" if HELICONE_API_KEY else "",
    "Helicone-Cache-Enabled": "true",
    "Helicone-Property-App": "HuggingFace",
    "Helicone-Property-DataSource": "SEO Powered by AI",
}