@absolutejs/absolute 0.19.0-beta.545 → 0.19.0-beta.546
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/dist/ai/client/index.js +5 -9
- package/dist/ai/client/index.js.map +4 -4
- package/dist/ai/index.js +5 -9
- package/dist/ai/index.js.map +4 -4
- package/dist/angular/ai/index.js +2 -2
- package/dist/angular/ai/index.js.map +3 -3
- package/dist/react/ai/index.js +5 -9
- package/dist/react/ai/index.js.map +4 -4
- package/dist/svelte/ai/index.js +5 -9
- package/dist/svelte/ai/index.js.map +4 -4
- package/dist/types/ai.d.ts +3 -4
- package/dist/vue/ai/index.js +5 -9
- package/dist/vue/ai/index.js.map +4 -4
- package/package.json +7 -7
package/dist/svelte/ai/index.js
CHANGED
|
@@ -1295,7 +1295,7 @@ var buildRAGReadinessPresentation = (readiness) => {
|
|
|
1295
1295
|
label: "Extractors",
|
|
1296
1296
|
title: readiness.extractorsConfigured ? `${readiness.extractorNames.length} configured` : "None configured",
|
|
1297
1297
|
summary: readiness.extractorsConfigured ? `Configured extractors: ${formatCompactList(readiness.extractorNames)}` : "No extractors configured.",
|
|
1298
|
-
|
|
1298
|
+
tags: readiness.extractorNames.length > 0 ? readiness.extractorNames : ["No extractors configured"]
|
|
1299
1299
|
}
|
|
1300
1300
|
]
|
|
1301
1301
|
};
|
|
@@ -2667,7 +2667,7 @@ var buildRAGRetrievalComparisonPresentations = (comparison) => {
|
|
|
2667
2667
|
return comparison.entries.map((entry) => ({
|
|
2668
2668
|
diffLabel: leader?.label ?? "Leader",
|
|
2669
2669
|
diffRows: buildRAGComparisonTraceDiffRows(entry, leader),
|
|
2670
|
-
|
|
2670
|
+
summary: formatRetrievalComparisonHeadline(entry),
|
|
2671
2671
|
id: entry.retrievalId,
|
|
2672
2672
|
label: entry.label,
|
|
2673
2673
|
traceSummaryRows: buildRAGComparisonTraceSummaryRows(entry)
|
|
@@ -2684,7 +2684,7 @@ var buildRAGRerankerComparisonPresentations = (comparison) => {
|
|
|
2684
2684
|
return comparison.entries.map((entry) => ({
|
|
2685
2685
|
diffLabel: leader?.label ?? "Leader",
|
|
2686
2686
|
diffRows: buildRAGComparisonTraceDiffRows(entry, leader),
|
|
2687
|
-
|
|
2687
|
+
summary: formatRerankerComparisonHeadline(entry),
|
|
2688
2688
|
id: entry.rerankerId,
|
|
2689
2689
|
label: entry.label,
|
|
2690
2690
|
traceSummaryRows: buildRAGComparisonTraceSummaryRows(entry)
|
|
@@ -2697,7 +2697,7 @@ var buildRAGRerankerComparisonOverviewPresentation = (comparison) => buildCompar
|
|
|
2697
2697
|
summary: comparison.summary
|
|
2698
2698
|
});
|
|
2699
2699
|
var buildRAGGroundingProviderPresentations = (entries) => entries.map((entry) => ({
|
|
2700
|
-
|
|
2700
|
+
summary: [
|
|
2701
2701
|
entry.label,
|
|
2702
2702
|
`passing ${formatEvaluationPassingRate(entry.response.passingRate)}`,
|
|
2703
2703
|
`citation f1 ${entry.response.summary.averageCitationF1.toFixed(3)}`,
|
|
@@ -2748,10 +2748,6 @@ var buildRAGQualityOverviewPresentation = (input) => ({
|
|
|
2748
2748
|
value: "Configure an AI provider to compare grounded answers."
|
|
2749
2749
|
}
|
|
2750
2750
|
]
|
|
2751
|
-
],
|
|
2752
|
-
insights: [
|
|
2753
|
-
"The example should answer three questions quickly: which strategy wins, whether grounding is stable, and whether the result regressed.",
|
|
2754
|
-
"Detailed case-by-case evidence stays behind collapsible sections so the page reads like a product surface instead of a console buffer."
|
|
2755
2751
|
]
|
|
2756
2752
|
});
|
|
2757
2753
|
var buildRAGGroundingProviderCaseComparisonPresentations = (comparisons) => comparisons.map((comparison) => {
|
|
@@ -4366,5 +4362,5 @@ export {
|
|
|
4366
4362
|
createAIStream
|
|
4367
4363
|
};
|
|
4368
4364
|
|
|
4369
|
-
//# debugId=
|
|
4365
|
+
//# debugId=5B15B71D29CD181C64756E2164756E21
|
|
4370
4366
|
//# sourceMappingURL=index.js.map
|