1

Create an account + Generate an API Key

Log into helicone or create an account. Once you have an account, you can generate an API key.

2

Modify the API base and add the `Helicone-Auth` header

Please ensure to replace API keys with your own.

curl --request POST \
    --url https://oai.helicone.ai/openai/deployments/DEPLOYMENTNAME/chat/completions?api-version=[API_VERSION] \
    --header 'Helicone-Auth: Bearer [HELICONE_KEY]' \
    --header 'Helicone-OpenAI-Api-Base: https://[AZUREDOMAIN].openai.azure.com' \
    --header 'api-key: [AZURE_API_KEY]' \
    --header 'content-type: application/json' \
    --data '{
        "messages": [
            {
                "role": "user",
                "content": "Answer in one word"
            }
        ],
        "max_tokens": 800,
        "temperature": 1,
        "model": "gpt-3.5-turbo-0613"
    }'