We're trying to use Azure OpenAI via CURL
Can you help what's wrong - as I can't find CURL examples in doc
curl --request POST \
--url https://oai.hconeai.com/openai/deployments/DEPLOYMENTNAME/chat/completions \
--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: "system",
content: "System Prompt"
},
{
role: "user",
content: "Answer in one word"
}],
"max_tokens": 800,
"temperature": 1,
"model": "gpt-3.5-turbo-0613"
}'