@ai-sdk/provider 3.0.0-beta.23 → 3.0.0-beta.24
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.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -914,6 +914,13 @@ type LanguageModelV3FunctionTool = {
|
|
|
914
914
|
understand the tool's input requirements and to provide matching suggestions.
|
|
915
915
|
*/
|
|
916
916
|
inputSchema: JSONSchema7;
|
|
917
|
+
/**
|
|
918
|
+
* An optional list of input examples that show the language
|
|
919
|
+
* model what the input should look like.
|
|
920
|
+
*/
|
|
921
|
+
inputExamples?: Array<{
|
|
922
|
+
input: JSONObject;
|
|
923
|
+
}>;
|
|
917
924
|
/**
|
|
918
925
|
* Strict mode setting for the tool.
|
|
919
926
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -914,6 +914,13 @@ type LanguageModelV3FunctionTool = {
|
|
|
914
914
|
understand the tool's input requirements and to provide matching suggestions.
|
|
915
915
|
*/
|
|
916
916
|
inputSchema: JSONSchema7;
|
|
917
|
+
/**
|
|
918
|
+
* An optional list of input examples that show the language
|
|
919
|
+
* model what the input should look like.
|
|
920
|
+
*/
|
|
921
|
+
inputExamples?: Array<{
|
|
922
|
+
input: JSONObject;
|
|
923
|
+
}>;
|
|
917
924
|
/**
|
|
918
925
|
* Strict mode setting for the tool.
|
|
919
926
|
*
|