@ai-sdk/openai 3.0.74 → 3.0.76
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 +18 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +2 -1
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +2 -1
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/responses/openai-responses-api.ts +1 -0
- package/src/responses/openai-responses-options.ts +2 -1
package/dist/internal/index.js
CHANGED
|
@@ -4267,13 +4267,14 @@ var openaiLanguageModelResponsesOptionsSchema = (0, import_provider_utils26.lazy
|
|
|
4267
4267
|
conversation: import_v419.z.string().nullish(),
|
|
4268
4268
|
/**
|
|
4269
4269
|
* The set of extra fields to include in the response (advanced, usually not needed).
|
|
4270
|
-
* Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'message.output_text.logprobs'.
|
|
4270
|
+
* Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'web_search_call.results', 'message.output_text.logprobs'.
|
|
4271
4271
|
*/
|
|
4272
4272
|
include: import_v419.z.array(
|
|
4273
4273
|
import_v419.z.enum([
|
|
4274
4274
|
"reasoning.encrypted_content",
|
|
4275
4275
|
// handled internally by default, only needed for unknown reasoning models
|
|
4276
4276
|
"file_search_call.results",
|
|
4277
|
+
"web_search_call.results",
|
|
4277
4278
|
"message.output_text.logprobs"
|
|
4278
4279
|
])
|
|
4279
4280
|
).nullish(),
|