@absolutejs/absolute 0.19.0-beta.601 → 0.19.0-beta.603
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 +53 -7
package/dist/react/ai/index.js
CHANGED
|
@@ -1760,7 +1760,7 @@ var createRAGFileRetrievalBaselineStore = (path) => {
|
|
|
1760
1760
|
status: "active",
|
|
1761
1761
|
version: typeof record.version === "number" ? record.version : currentVersion + 1
|
|
1762
1762
|
},
|
|
1763
|
-
...existing.map((entry) => entry.groupKey === record.groupKey ? { ...entry, status: "superseded" } : entry)
|
|
1763
|
+
...existing.map((entry) => entry.groupKey === record.groupKey && (entry.rolloutLabel ?? undefined) === (record.rolloutLabel ?? undefined) ? { ...entry, status: "superseded" } : entry)
|
|
1764
1764
|
]);
|
|
1765
1765
|
await mkdir(dirname(path), { recursive: true });
|
|
1766
1766
|
await writeFile(path, JSON.stringify(next, null, "\t") + `
|
|
@@ -7543,5 +7543,5 @@ export {
|
|
|
7543
7543
|
AIStreamProvider
|
|
7544
7544
|
};
|
|
7545
7545
|
|
|
7546
|
-
//# debugId=
|
|
7546
|
+
//# debugId=1C8C3F1D291DDB2564756E2164756E21
|
|
7547
7547
|
//# sourceMappingURL=index.js.map
|