@xsai/utils-reasoning 0.3.0-beta.2 → 0.3.0-beta.3

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -15,12 +15,10 @@ declare const extractReasoning: (text: string, options?: ExtractReasoningOptions
15
15
  text: string;
16
16
  };
17
17
 
18
- interface ExtractReasoningStreamOptions extends ExtractReasoningOptions {
19
- }
20
18
  interface ExtractReasoningStreamResult {
21
19
  reasoningStream: ReadableStream<string>;
22
20
  textStream: ReadableStream<string>;
23
21
  }
24
- declare const extractReasoningStream: (stream: ReadableStream<string>, options?: ExtractReasoningStreamOptions) => ExtractReasoningStreamResult;
22
+ declare const extractReasoningStream: (stream: ReadableStream<string>, options?: ExtractReasoningOptions) => ExtractReasoningStreamResult;
25
23
 
26
- export { type ExtractReasoningOptions, type ExtractReasoningResult, type ExtractReasoningStreamOptions, type ExtractReasoningStreamResult, extractReasoning, extractReasoningStream };
24
+ export { type ExtractReasoningOptions, type ExtractReasoningResult, type ExtractReasoningStreamResult, extractReasoning, extractReasoningStream };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xsai/utils-reasoning",
3
3
  "type": "module",
4
- "version": "0.3.0-beta.2",
4
+ "version": "0.3.0-beta.3",
5
5
  "description": "extra-small AI SDK for Browser, Node.js, Deno, Bun or Edge Runtime.",
6
6
  "author": "Moeru AI",
7
7
  "license": "MIT",