1
2
3
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use cURL to integrate Nvidia NIM with Helicone to log your Nvidia LLM usage.
curl -X POST https://nvidia.helicone.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $NVIDIA_API_KEY" \
-H "Helicone-Auth: Bearer $HELICONE_API_KEY" \
-d '{
"model": "nvidia/llama-3.1-nemotron-70b-instruct",
"messages": [
{
"role": "user",
"content": "Hello, how are you?"
}
],
"max_tokens": 1024,
"temperature": 0.7
}'
Was this page helpful?