@absolutejs/absolute 0.19.0-beta.601 → 0.19.0-beta.602
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 +2 -2
- package/dist/ai/client/index.js.map +3 -3
- package/dist/ai/index.js +2 -2
- package/dist/ai/index.js.map +3 -3
- package/dist/ai/rag/quality.js +2 -2
- package/dist/ai/rag/quality.js.map +3 -3
- package/dist/react/ai/index.js +2 -2
- package/dist/react/ai/index.js.map +3 -3
- package/dist/svelte/ai/index.js +2 -2
- package/dist/svelte/ai/index.js.map +3 -3
- package/dist/vue/ai/index.js +2 -2
- package/dist/vue/ai/index.js.map +3 -3
- package/package.json +7 -7
package/dist/ai/rag/quality.js
CHANGED
|
@@ -1752,7 +1752,7 @@ var createRAGFileRetrievalBaselineStore = (path) => {
|
|
|
1752
1752
|
status: "active",
|
|
1753
1753
|
version: typeof record.version === "number" ? record.version : currentVersion + 1
|
|
1754
1754
|
},
|
|
1755
|
-
...existing.map((entry) => entry.groupKey === record.groupKey ? { ...entry, status: "superseded" } : entry)
|
|
1755
|
+
...existing.map((entry) => entry.groupKey === record.groupKey && (entry.rolloutLabel ?? undefined) === (record.rolloutLabel ?? undefined) ? { ...entry, status: "superseded" } : entry)
|
|
1756
1756
|
]);
|
|
1757
1757
|
await mkdir(dirname(path), { recursive: true });
|
|
1758
1758
|
await writeFile(path, JSON.stringify(next, null, "\t") + `
|
|
@@ -3595,5 +3595,5 @@ export {
|
|
|
3595
3595
|
buildRAGAnswerGroundingCaseDifficultyLeaderboard
|
|
3596
3596
|
};
|
|
3597
3597
|
|
|
3598
|
-
//# debugId=
|
|
3598
|
+
//# debugId=87DD409FB7CA7A0B64756E2164756E21
|
|
3599
3599
|
//# sourceMappingURL=quality.js.map
|