@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/ai/client/index.js
CHANGED
|
@@ -961,7 +961,7 @@ var buildRAGReadinessPresentation = (readiness) => {
|
|
|
961
961
|
label: "Extractors",
|
|
962
962
|
title: readiness.extractorsConfigured ? `${readiness.extractorNames.length} configured` : "None configured",
|
|
963
963
|
summary: readiness.extractorsConfigured ? `Configured extractors: ${formatCompactList(readiness.extractorNames)}` : "No extractors configured.",
|
|
964
|
-
|
|
964
|
+
tags: readiness.extractorNames.length > 0 ? readiness.extractorNames : ["No extractors configured"]
|
|
965
965
|
}
|
|
966
966
|
]
|
|
967
967
|
};
|
|
@@ -2640,7 +2640,7 @@ var buildRAGRetrievalComparisonPresentations = (comparison) => {
|
|
|
2640
2640
|
return comparison.entries.map((entry) => ({
|
|
2641
2641
|
diffLabel: leader?.label ?? "Leader",
|
|
2642
2642
|
diffRows: buildRAGComparisonTraceDiffRows(entry, leader),
|
|
2643
|
-
|
|
2643
|
+
summary: formatRetrievalComparisonHeadline(entry),
|
|
2644
2644
|
id: entry.retrievalId,
|
|
2645
2645
|
label: entry.label,
|
|
2646
2646
|
traceSummaryRows: buildRAGComparisonTraceSummaryRows(entry)
|
|
@@ -2657,7 +2657,7 @@ var buildRAGRerankerComparisonPresentations = (comparison) => {
|
|
|
2657
2657
|
return comparison.entries.map((entry) => ({
|
|
2658
2658
|
diffLabel: leader?.label ?? "Leader",
|
|
2659
2659
|
diffRows: buildRAGComparisonTraceDiffRows(entry, leader),
|
|
2660
|
-
|
|
2660
|
+
summary: formatRerankerComparisonHeadline(entry),
|
|
2661
2661
|
id: entry.rerankerId,
|
|
2662
2662
|
label: entry.label,
|
|
2663
2663
|
traceSummaryRows: buildRAGComparisonTraceSummaryRows(entry)
|
|
@@ -2670,7 +2670,7 @@ var buildRAGRerankerComparisonOverviewPresentation = (comparison) => buildCompar
|
|
|
2670
2670
|
summary: comparison.summary
|
|
2671
2671
|
});
|
|
2672
2672
|
var buildRAGGroundingProviderPresentations = (entries) => entries.map((entry) => ({
|
|
2673
|
-
|
|
2673
|
+
summary: [
|
|
2674
2674
|
entry.label,
|
|
2675
2675
|
`passing ${formatEvaluationPassingRate(entry.response.passingRate)}`,
|
|
2676
2676
|
`citation f1 ${entry.response.summary.averageCitationF1.toFixed(3)}`,
|
|
@@ -2721,10 +2721,6 @@ var buildRAGQualityOverviewPresentation = (input) => ({
|
|
|
2721
2721
|
value: "Configure an AI provider to compare grounded answers."
|
|
2722
2722
|
}
|
|
2723
2723
|
]
|
|
2724
|
-
],
|
|
2725
|
-
insights: [
|
|
2726
|
-
"The example should answer three questions quickly: which strategy wins, whether grounding is stable, and whether the result regressed.",
|
|
2727
|
-
"Detailed case-by-case evidence stays behind collapsible sections so the page reads like a product surface instead of a console buffer."
|
|
2728
2724
|
]
|
|
2729
2725
|
});
|
|
2730
2726
|
var buildRAGGroundingProviderCaseComparisonPresentations = (comparisons) => comparisons.map((comparison) => {
|
|
@@ -3686,5 +3682,5 @@ export {
|
|
|
3686
3682
|
buildRAGAnswerWorkflowState
|
|
3687
3683
|
};
|
|
3688
3684
|
|
|
3689
|
-
//# debugId=
|
|
3685
|
+
//# debugId=663E41B74E0EE9D564756E2164756E21
|
|
3690
3686
|
//# sourceMappingURL=index.js.map
|