@ai-sdk/provider-utils 5.0.10 → 5.0.11
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.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/types/tool.ts +2 -2
package/package.json
CHANGED
package/src/types/tool.ts
CHANGED
|
@@ -112,8 +112,8 @@ type BaseTool<
|
|
|
112
112
|
>;
|
|
113
113
|
|
|
114
114
|
/**
|
|
115
|
-
* Optional function that is called when the
|
|
116
|
-
*
|
|
115
|
+
* Optional function that is called when the model starts generating the tool input.
|
|
116
|
+
* In non-streaming contexts, it is called immediately before `onInputAvailable`.
|
|
117
117
|
*/
|
|
118
118
|
onInputStart?: (
|
|
119
119
|
options: ToolExecutionOptions<NoInfer<CONTEXT>>,
|