Is there a way to integrate observability tools like Helicone?
Steps to integrate these are by changing OpenAI's base URL and headers
client = OpenAI(
api_key="your-api-key-here", # Replace with your OpenAI API key
base_url="https://oai.hconeai.com/v1", # Set the API endpoint
default_headers= { # Optionally set default headers or set per request (see below)
"Helicone-Auth": f"Bearer {HELICONE_API_KEY}",
}
)
I couldn't find a way to do this in marvin as the opeani client isn't exposed
Is there a way to integrate observability tools like Helicone?
Steps to integrate these are by changing OpenAI's base URL and headers
I couldn't find a way to do this in marvin as the opeani client isn't exposed