ai 4.0.15 → 4.0.16
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
@@ -2125,6 +2125,12 @@ Details for all steps.
|
|
2125
2125
|
};
|
2126
2126
|
}): StreamTextResult<TOOLS>;
|
2127
2127
|
|
2128
|
+
/**
|
2129
|
+
* Smooths text streaming output.
|
2130
|
+
*
|
2131
|
+
* @param delayInMs - The delay in milliseconds between each chunk. Defaults to 10ms.
|
2132
|
+
* @returns A transform stream that smooths text streaming output.
|
2133
|
+
*/
|
2128
2134
|
declare function smoothStream<TOOLS extends Record<string, CoreTool>>({ delayInMs, _internal: { delay }, }?: {
|
2129
2135
|
delayInMs?: number;
|
2130
2136
|
/**
|
package/dist/index.d.ts
CHANGED
@@ -2125,6 +2125,12 @@ Details for all steps.
|
|
2125
2125
|
};
|
2126
2126
|
}): StreamTextResult<TOOLS>;
|
2127
2127
|
|
2128
|
+
/**
|
2129
|
+
* Smooths text streaming output.
|
2130
|
+
*
|
2131
|
+
* @param delayInMs - The delay in milliseconds between each chunk. Defaults to 10ms.
|
2132
|
+
* @returns A transform stream that smooths text streaming output.
|
2133
|
+
*/
|
2128
2134
|
declare function smoothStream<TOOLS extends Record<string, CoreTool>>({ delayInMs, _internal: { delay }, }?: {
|
2129
2135
|
delayInMs?: number;
|
2130
2136
|
/**
|
package/dist/index.js
CHANGED