@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/svelte/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") + `
|
|
@@ -7330,5 +7330,5 @@ export {
|
|
|
7330
7330
|
createAIStream
|
|
7331
7331
|
};
|
|
7332
7332
|
|
|
7333
|
-
//# debugId=
|
|
7333
|
+
//# debugId=C032A3F31461FE6064756E2164756E21
|
|
7334
7334
|
//# sourceMappingURL=index.js.map
|