@ax-llm/ax 13.0.9 → 13.0.10
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/index.cjs +47 -46
- package/index.cjs.map +1 -1
- package/index.d.cts +4 -0
- package/index.d.ts +4 -0
- package/index.js +47 -46
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -301,6 +301,10 @@ type AxLoggerData = {
|
|
|
301
301
|
value: AxChatResponseResult & {
|
|
302
302
|
delta?: string;
|
|
303
303
|
};
|
|
304
|
+
} | {
|
|
305
|
+
name: 'ChatResponseStreamingDoneResult';
|
|
306
|
+
index: number;
|
|
307
|
+
value: AxChatResponseResult;
|
|
304
308
|
} | {
|
|
305
309
|
name: 'FunctionError';
|
|
306
310
|
index: number;
|
package/index.d.ts
CHANGED
|
@@ -301,6 +301,10 @@ type AxLoggerData = {
|
|
|
301
301
|
value: AxChatResponseResult & {
|
|
302
302
|
delta?: string;
|
|
303
303
|
};
|
|
304
|
+
} | {
|
|
305
|
+
name: 'ChatResponseStreamingDoneResult';
|
|
306
|
+
index: number;
|
|
307
|
+
value: AxChatResponseResult;
|
|
304
308
|
} | {
|
|
305
309
|
name: 'FunctionError';
|
|
306
310
|
index: number;
|