Hi everyone,
I wanted to share an issue we encountered while trying to implement Structured Outputs in our application. My goal was to enforce a specific JSON schema using the new structured output features described in the docs.
According to the documentation, Structured Outputs should be enabled by supplying a text
property with a format
object. Our payload looked like this:
text: {
format: {
type: "json_schema",
name: "tool_schema",
schema: {
type: "object",
properties: {
title: {
type: "string",
description: "Main title of the tool."
},
coverSlide: {
type: "object",
properties: {
title: {
type: "string",
description: "Cover slide title."
},
subtitle: {
type: "string",
description: "Cover slide subtitle."
}
},
required: ["title", "subtitle"],
additionalProperties: false
},
// ... rest of schema ...
},
required: [
"title",
"coverSlide",
"problemSlide",
"solutionSlide",
"researchSlide",
"commonProblemsSlide",
"stepsSlide",
"ctaSlide"
],
additionalProperties: false
}
}
}
I used this with the chat/completions
endpoint and tried it on models such as "o1-2024-12-17"
, “gpt-4o-2024-08-06”`, “gpt-4o”, and “o1” expecting the model to output JSON strictly adhering to my schema.
{
"error": {
"message": "Unrecognized request argument supplied: text",
"type": "invalid_request_error",
"param": null,
"code": null
}
}
Despite the docs showing an example that includes a text
property with json_schema
formatting, the API didn’t recognize the text
parameter. We double-checked our payload against the documentation, and it was correct according to the examples provided.
After exploring the docs and community feedback, I removed the text
property and used the response_format
parameter with { type: "json_object" }
as a fallback. While this approach doesn’t enforce the schema adherence as strictly as the json_schema
format was intended to, it allowed me to receive structured JSON output.
Has anyone else encountered this issue with structured outputs?