Powered by Azure OpenAI
https://llm.cdnetwork.ai.in
api.openai.com (the SDK appends /v1). Set api_key to any value.Use any of the listed model names (hyphenated preferred for OpenAI SDK compatibility).
curl -X POST https://llm.cdnetwork.ai.in/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model":"gpt-4o",
"messages":[
{
"role":"user",
"content":"Hello"
}
]
}'