Use Nvidia Dynamo with Helicone for comprehensive logging and monitoring.
Create an account and generate an API key
Set up your Helicone API key in your .env file
HELICONE_API_KEY=<your-helicone-api-key> NVIDIA_API_KEY=<your-nvidia-api-key>
Modify the base URL path and set up authentication
curl -X POST https://gateway.helicone.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $NVIDIA_API_KEY" \ -H "Helicone-Auth: Bearer $HELICONE_API_KEY" \ -H "Helicone-Target-Url: https://your-dynamo-endpoint.com" \ -d '{ "model": "your-model-name", "messages": [ { "role": "user", "content": "Hello, how are you?" } ], "max_tokens": 1024, "temperature": 0.7 }'
Verify your requests in Helicone
Was this page helpful?