@absolutejs/absolute 0.19.0-beta.546 → 0.19.0-beta.548
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 +3 -3
- package/dist/ai/client/index.js.map +4 -4
- package/dist/ai/index.js +3 -4
- package/dist/ai/index.js.map +4 -4
- package/dist/angular/ai/index.js.map +2 -2
- 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 +3 -3
- package/dist/react/ai/index.js.map +4 -4
- package/dist/src/ai/index.d.ts +1 -1
- package/dist/src/ai/rag/index.d.ts +1 -1
- package/dist/src/ai/rag/presentation.d.ts +0 -1
- package/dist/svelte/ai/index.js +3 -3
- package/dist/svelte/ai/index.js.map +4 -4
- package/dist/types/ai.d.ts +2 -2
- package/dist/vue/ai/index.js +3 -3
- package/dist/vue/ai/index.js.map +4 -4
- package/package.json +7 -7
package/dist/types/ai.d.ts
CHANGED
|
@@ -1348,7 +1348,7 @@ export type RAGComparisonPresentation = {
|
|
|
1348
1348
|
};
|
|
1349
1349
|
export type RAGComparisonOverviewPresentation = {
|
|
1350
1350
|
winnerLabel: string;
|
|
1351
|
-
|
|
1351
|
+
summary: string;
|
|
1352
1352
|
rows: RAGLabelValueRow[];
|
|
1353
1353
|
};
|
|
1354
1354
|
export type RAGGroundingProviderPresentation = {
|
|
@@ -1358,7 +1358,7 @@ export type RAGGroundingProviderPresentation = {
|
|
|
1358
1358
|
};
|
|
1359
1359
|
export type RAGGroundingProviderOverviewPresentation = {
|
|
1360
1360
|
winnerLabel: string;
|
|
1361
|
-
|
|
1361
|
+
summary: string;
|
|
1362
1362
|
rows: RAGLabelValueRow[];
|
|
1363
1363
|
};
|
|
1364
1364
|
export type RAGQualityOverviewPresentation = {
|
package/dist/vue/ai/index.js
CHANGED
|
@@ -2581,7 +2581,7 @@ var buildComparisonOverviewPresentation = (input) => {
|
|
|
2581
2581
|
}
|
|
2582
2582
|
],
|
|
2583
2583
|
winnerLabel,
|
|
2584
|
-
|
|
2584
|
+
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"
|
|
2585
2585
|
};
|
|
2586
2586
|
};
|
|
2587
2587
|
var buildRAGComparisonTraceSummaryRows = (entry) => {
|
|
@@ -2728,7 +2728,7 @@ var buildRAGGroundingProviderOverviewPresentation = (input) => {
|
|
|
2728
2728
|
}
|
|
2729
2729
|
],
|
|
2730
2730
|
winnerLabel,
|
|
2731
|
-
|
|
2731
|
+
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"
|
|
2732
2732
|
};
|
|
2733
2733
|
};
|
|
2734
2734
|
var buildRAGQualityOverviewPresentation = (input) => ({
|
|
@@ -4345,5 +4345,5 @@ export {
|
|
|
4345
4345
|
AIStreamKey
|
|
4346
4346
|
};
|
|
4347
4347
|
|
|
4348
|
-
//# debugId=
|
|
4348
|
+
//# debugId=D7C9B3BC24B5466464756E2164756E21
|
|
4349
4349
|
//# sourceMappingURL=index.js.map
|