Spaces:
Runtime error
Runtime error
| 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", | |
| } | |