Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
3,785 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I get the following error:
Error processing request: Request failed: 400 model_error
With O1 and O3 mini models deployed to sweden central.
let apiversion = "2024-12-01-preview"
let response = await fetch(`${endpoint}/openai/deployments/${deploymentName}/chat/completions?api-version=${apiversion}`, {
method: "POST",
headers: {
"Content-Type": "application/json",
"api-key": azureApiKey,
},
body: JSON.stringify({
messages: commands,
...options
})
});