@absolutejs/absolute 0.19.0-beta.545 → 0.19.0-beta.547
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 +7 -11
- package/dist/ai/client/index.js.map +4 -4
- package/dist/ai/index.js +7 -11
- 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/angular/index.js +2 -2
- package/dist/angular/index.js.map +1 -1
- package/dist/angular/server.js +2 -2
- package/dist/angular/server.js.map +1 -1
- package/dist/build.js +2 -2
- package/dist/build.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/react/ai/index.js +7 -11
- package/dist/react/ai/index.js.map +4 -4
- package/dist/svelte/ai/index.js +7 -11
- package/dist/svelte/ai/index.js.map +4 -4
- package/dist/types/ai.d.ts +5 -6
- package/dist/vue/ai/index.js +7 -11
- 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
|
};
|
|
@@ -2584,7 +2584,7 @@ var buildComparisonOverviewPresentation = (input) => {
|
|
|
2584
2584
|
}
|
|
2585
2585
|
],
|
|
2586
2586
|
winnerLabel,
|
|
2587
|
-
|
|
2587
|
+
summary: winnerEntry ? `passing ${formatEvaluationPassingRate(winnerEntry.response.passingRate)} \xB7 f1 ${winnerEntry.response.summary.averageF1.toFixed(3)} \xB7 latency ${winnerEntry.response.summary.averageLatencyMs.toFixed(1)}ms` : "Stored benchmark comparison"
|
|
2588
2588
|
};
|
|
2589
2589
|
};
|
|
2590
2590
|
var buildRAGComparisonTraceSummaryRows = (entry) => {
|
|
@@ -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)}`,
|
|
@@ -2731,7 +2731,7 @@ var buildRAGGroundingProviderOverviewPresentation = (input) => {
|
|
|
2731
2731
|
}
|
|
2732
2732
|
],
|
|
2733
2733
|
winnerLabel,
|
|
2734
|
-
|
|
2734
|
+
summary: winnerEntry ? `passing ${formatEvaluationPassingRate(winnerEntry.response.passingRate)} \xB7 citation f1 ${winnerEntry.response.summary.averageCitationF1.toFixed(3)} \xB7 resolved ${formatEvaluationPassingRate(winnerEntry.response.summary.averageResolvedCitationRate)}` : "Stored workflow evaluation"
|
|
2735
2735
|
};
|
|
2736
2736
|
};
|
|
2737
2737
|
var buildRAGQualityOverviewPresentation = (input) => ({
|
|
@@ -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=F714546AB84EE8E064756E2164756E21
|
|
4370
4366
|
//# sourceMappingURL=index.js.map
|