seo-powered-by-ia / cases /monitoring.py
cadasme's picture
refactor: v1
18af915
raw
history blame contribute delete
363 Bytes
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",
}