You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to generate a structured output response using response_format = json_schema with an Assistant run using GPT-4o. When I attempt to execute the run, I get the following error:
Parameter: response_format
Invalid parameter: 'response_format' of type 'json_schema' is not supported with model version `gpt-4o`.
It's my understanding via this documentation that GPT-4o (which currently points to gpt-4o-2024-08-06) that this should be supported.
Additionally when attempting a simple chat completion specifying json_schema as the response_format via Postman, it works correctly.
This makes me think this could be a bug in the .NET library itself.
Steps to reproduce
Call CreateThreadAndRunAsync() using GPT-4o, with response format configured to return a specific schema.
Error is returned
Code snippets
// Most relevant snippets of code exemplifying the problemvarrunCreationOptions=new RunCreationOptions(){ResponseFormat= AssistantResponseFormat.CreateJsonSchemaFormat(Name, MySchema, Description,true),ModelOverride="GPT-4o"};
...
await _openAIAssistantsClient.CreateThreadAndRunAsync(_assistantId, threadCreationOptions, runCreationOptions);// error
OS
Windows Server 2016 Standard
.NET version
.NET Core 2.2
Library version
2.0.0
The text was updated successfully, but these errors were encountered:
The error arises from a limitation in model compatibility with response_format: json_schema. Although some recent models support this setting (gpt-4o-mini, gpt-4o-mini-2024-07-18, and gpt-4o-2024-08-06), this does not guarantee that every GPT-4o variant is covered.
Suggestions
Try explicitly specifying a compatible model, such as gpt-4o-2024-08-06, instead of GPT-4o to ensure compatibility.
Service
OpenAI
Describe the bug
I am attempting to generate a structured output response using
response_format = json_schema
with an Assistant run using GPT-4o. When I attempt to execute the run, I get the following error:It's my understanding via this documentation that GPT-4o (which currently points to gpt-4o-2024-08-06) that this should be supported.
Additionally when attempting a simple chat completion specifying
json_schema
as the response_format via Postman, it works correctly.This makes me think this could be a bug in the .NET library itself.
Steps to reproduce
Call
CreateThreadAndRunAsync()
using GPT-4o, with response format configured to return a specific schema.Error is returned
Code snippets
OS
Windows Server 2016 Standard
.NET version
.NET Core 2.2
Library version
2.0.0
The text was updated successfully, but these errors were encountered: