@ai-sdk/openai 3.0.66 → 3.0.67
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 +6 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/internal/index.d.mts +195 -1
- package/dist/internal/index.d.ts +195 -1
- package/dist/internal/index.js +11 -2
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +6 -1
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/internal/index.ts +1 -0
package/dist/internal/index.mjs
CHANGED
|
@@ -4758,6 +4758,7 @@ var webSearchToolFactory = createProviderToolFactoryWithOutputSchema9({
|
|
|
4758
4758
|
inputSchema: webSearchInputSchema,
|
|
4759
4759
|
outputSchema: webSearchOutputSchema
|
|
4760
4760
|
});
|
|
4761
|
+
var webSearch = (args = {}) => webSearchToolFactory(args);
|
|
4761
4762
|
|
|
4762
4763
|
// src/tool/web-search-preview.ts
|
|
4763
4764
|
import {
|
|
@@ -6840,8 +6841,12 @@ export {
|
|
|
6840
6841
|
openaiLanguageModelChatOptions,
|
|
6841
6842
|
openaiLanguageModelCompletionOptions,
|
|
6842
6843
|
openaiSpeechModelOptionsSchema,
|
|
6844
|
+
webSearch,
|
|
6845
|
+
webSearchArgsSchema,
|
|
6846
|
+
webSearchOutputSchema,
|
|
6843
6847
|
webSearchPreview,
|
|
6844
6848
|
webSearchPreviewArgsSchema,
|
|
6845
|
-
webSearchPreviewInputSchema
|
|
6849
|
+
webSearchPreviewInputSchema,
|
|
6850
|
+
webSearchToolFactory
|
|
6846
6851
|
};
|
|
6847
6852
|
//# sourceMappingURL=index.mjs.map
|