Structured Outputs with Azure OpenAi #671
Unanswered
fitprotracker
asked this question in
Q&A
Replies: 1 comment
-
Can you try with setting api version to preview? var sdk = new OpenAIService(settings: new OpenAiOptions()
{
ProviderType = ProviderType.Azure,
ApiKey = "",
DeploymentId = "xxx-4o-new",
ResourceName = "xxx-ai-dev-2",
ApiVersion = "2024-08-01-preview"
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the bug
I am trying the small code snippet in the Wiki about structured outputs. I am using Provider Type Azure with the Betalgo.OpenAI (8.7.2) library. The test is running in a .NET console project using the latest model gpt-4.0 (model version 2024-08-06).
Your code piece
Beta Was this translation helpful? Give feedback.
All reactions