@ax-llm/ax 14.0.14 → 14.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/index.cjs +255 -222
- package/index.cjs.map +1 -1
- package/index.d.cts +3 -0
- package/index.d.ts +3 -0
- package/index.global.js +78 -45
- package/index.global.js.map +1 -1
- package/index.js +255 -222
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -525,6 +525,9 @@ type AxLoggerData = {
|
|
|
525
525
|
} | {
|
|
526
526
|
name: 'ChatResponseUsage';
|
|
527
527
|
value: AxModelUsage;
|
|
528
|
+
} | {
|
|
529
|
+
name: 'ChatResponseCitations';
|
|
530
|
+
value: AxCitation[];
|
|
528
531
|
};
|
|
529
532
|
type AxLoggerFunction = (message: AxLoggerData) => void;
|
|
530
533
|
type AxAIServiceOptions = {
|
package/index.d.ts
CHANGED
|
@@ -525,6 +525,9 @@ type AxLoggerData = {
|
|
|
525
525
|
} | {
|
|
526
526
|
name: 'ChatResponseUsage';
|
|
527
527
|
value: AxModelUsage;
|
|
528
|
+
} | {
|
|
529
|
+
name: 'ChatResponseCitations';
|
|
530
|
+
value: AxCitation[];
|
|
528
531
|
};
|
|
529
532
|
type AxLoggerFunction = (message: AxLoggerData) => void;
|
|
530
533
|
type AxAIServiceOptions = {
|