@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/ai/index.js
CHANGED
|
@@ -4875,7 +4875,7 @@ var buildRAGReadinessPresentation = (readiness) => {
|
|
|
4875
4875
|
label: "Extractors",
|
|
4876
4876
|
title: readiness.extractorsConfigured ? `${readiness.extractorNames.length} configured` : "None configured",
|
|
4877
4877
|
summary: readiness.extractorsConfigured ? `Configured extractors: ${formatCompactList(readiness.extractorNames)}` : "No extractors configured.",
|
|
4878
|
-
|
|
4878
|
+
tags: readiness.extractorNames.length > 0 ? readiness.extractorNames : ["No extractors configured"]
|
|
4879
4879
|
}
|
|
4880
4880
|
]
|
|
4881
4881
|
};
|
|
@@ -6104,7 +6104,7 @@ var buildComparisonOverviewPresentation = (input) => {
|
|
|
6104
6104
|
}
|
|
6105
6105
|
],
|
|
6106
6106
|
winnerLabel,
|
|
6107
|
-
|
|
6107
|
+
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"
|
|
6108
6108
|
};
|
|
6109
6109
|
};
|
|
6110
6110
|
var buildRAGComparisonTraceSummaryRows = (entry) => {
|
|
@@ -6187,7 +6187,7 @@ var buildRAGRetrievalComparisonPresentations = (comparison) => {
|
|
|
6187
6187
|
return comparison.entries.map((entry) => ({
|
|
6188
6188
|
diffLabel: leader?.label ?? "Leader",
|
|
6189
6189
|
diffRows: buildRAGComparisonTraceDiffRows(entry, leader),
|
|
6190
|
-
|
|
6190
|
+
summary: formatRetrievalComparisonHeadline(entry),
|
|
6191
6191
|
id: entry.retrievalId,
|
|
6192
6192
|
label: entry.label,
|
|
6193
6193
|
traceSummaryRows: buildRAGComparisonTraceSummaryRows(entry)
|
|
@@ -6204,7 +6204,7 @@ var buildRAGRerankerComparisonPresentations = (comparison) => {
|
|
|
6204
6204
|
return comparison.entries.map((entry) => ({
|
|
6205
6205
|
diffLabel: leader?.label ?? "Leader",
|
|
6206
6206
|
diffRows: buildRAGComparisonTraceDiffRows(entry, leader),
|
|
6207
|
-
|
|
6207
|
+
summary: formatRerankerComparisonHeadline(entry),
|
|
6208
6208
|
id: entry.rerankerId,
|
|
6209
6209
|
label: entry.label,
|
|
6210
6210
|
traceSummaryRows: buildRAGComparisonTraceSummaryRows(entry)
|
|
@@ -6217,7 +6217,7 @@ var buildRAGRerankerComparisonOverviewPresentation = (comparison) => buildCompar
|
|
|
6217
6217
|
summary: comparison.summary
|
|
6218
6218
|
});
|
|
6219
6219
|
var buildRAGGroundingProviderPresentations = (entries) => entries.map((entry) => ({
|
|
6220
|
-
|
|
6220
|
+
summary: [
|
|
6221
6221
|
entry.label,
|
|
6222
6222
|
`passing ${formatEvaluationPassingRate(entry.response.passingRate)}`,
|
|
6223
6223
|
`citation f1 ${entry.response.summary.averageCitationF1.toFixed(3)}`,
|
|
@@ -6251,7 +6251,7 @@ var buildRAGGroundingProviderOverviewPresentation = (input) => {
|
|
|
6251
6251
|
}
|
|
6252
6252
|
],
|
|
6253
6253
|
winnerLabel,
|
|
6254
|
-
|
|
6254
|
+
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"
|
|
6255
6255
|
};
|
|
6256
6256
|
};
|
|
6257
6257
|
var buildRAGQualityOverviewPresentation = (input) => ({
|
|
@@ -6268,10 +6268,6 @@ var buildRAGQualityOverviewPresentation = (input) => ({
|
|
|
6268
6268
|
value: "Configure an AI provider to compare grounded answers."
|
|
6269
6269
|
}
|
|
6270
6270
|
]
|
|
6271
|
-
],
|
|
6272
|
-
insights: [
|
|
6273
|
-
"The example should answer three questions quickly: which strategy wins, whether grounding is stable, and whether the result regressed.",
|
|
6274
|
-
"Detailed case-by-case evidence stays behind collapsible sections so the page reads like a product surface instead of a console buffer."
|
|
6275
6271
|
]
|
|
6276
6272
|
});
|
|
6277
6273
|
var buildRAGGroundingProviderCaseComparisonPresentations = (comparisons) => comparisons.map((comparison) => {
|
|
@@ -12371,5 +12367,5 @@ export {
|
|
|
12371
12367
|
aiChat
|
|
12372
12368
|
};
|
|
12373
12369
|
|
|
12374
|
-
//# debugId=
|
|
12370
|
+
//# debugId=3AF7811A44F784F664756E2164756E21
|
|
12375
12371
|
//# sourceMappingURL=index.js.map
|