@ai-sdk/openai 1.3.13 → 1.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ai-sdk/openai
2
2
 
3
+ ## 1.3.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 980141c: fix (openai): structure output for responses model
8
+
3
9
  ## 1.3.13
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2009,6 +2009,7 @@ var OpenAIResponsesLanguageModel = class {
2009
2009
  constructor(modelId, config) {
2010
2010
  this.specificationVersion = "v1";
2011
2011
  this.defaultObjectGenerationMode = "json";
2012
+ this.supportsStructuredOutputs = true;
2012
2013
  this.modelId = modelId;
2013
2014
  this.config = config;
2014
2015
  }