@absolutejs/absolute 0.19.0-beta.617 → 0.19.0-beta.619
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 +100 -23
- package/dist/ai/client/index.js.map +4 -4
- package/dist/ai/client/ui.js +96 -22
- package/dist/ai/client/ui.js.map +3 -3
- package/dist/ai/index.js +502 -84
- package/dist/ai/index.js.map +9 -9
- package/dist/ai/rag/quality.js +5 -2
- package/dist/ai/rag/quality.js.map +3 -3
- package/dist/ai/rag/ui.js +96 -22
- package/dist/ai/rag/ui.js.map +3 -3
- package/dist/ai-client/angular/ai/index.js +95 -21
- package/dist/ai-client/react/ai/index.js +95 -21
- package/dist/ai-client/vue/ai/index.js +95 -21
- package/dist/angular/ai/index.js +96 -22
- package/dist/angular/ai/index.js.map +3 -3
- package/dist/react/ai/index.js +100 -23
- package/dist/react/ai/index.js.map +4 -4
- package/dist/src/ai/rag/quality.d.ts +2 -1
- package/dist/src/vue/ai/useRAG.d.ts +4 -4
- package/dist/src/vue/ai/useRAGChunkPreview.d.ts +2 -2
- package/dist/src/vue/ai/useRAGSearch.d.ts +2 -2
- package/dist/svelte/ai/index.js +100 -23
- package/dist/svelte/ai/index.js.map +4 -4
- package/dist/types/ai.d.ts +3 -2
- package/dist/vue/ai/index.js +100 -23
- package/dist/vue/ai/index.js.map +4 -4
- package/package.json +7 -7
package/dist/ai/rag/quality.js
CHANGED
|
@@ -2046,6 +2046,7 @@ var createRAGFileRetrievalLaneHandoffDecisionStore = (path) => ({
|
|
|
2046
2046
|
});
|
|
2047
2047
|
var createRAGFileRetrievalReleaseIncidentStore = (path) => ({
|
|
2048
2048
|
listIncidents: async ({
|
|
2049
|
+
corpusGroupKey,
|
|
2049
2050
|
groupKey,
|
|
2050
2051
|
limit,
|
|
2051
2052
|
severity,
|
|
@@ -2062,7 +2063,7 @@ var createRAGFileRetrievalReleaseIncidentStore = (path) => ({
|
|
|
2062
2063
|
throw error;
|
|
2063
2064
|
}
|
|
2064
2065
|
}
|
|
2065
|
-
const filtered = parsed.filter((entry) => (!groupKey || entry.groupKey === groupKey) && (!targetRolloutLabel || entry.targetRolloutLabel === targetRolloutLabel) && (!severity || entry.severity === severity) && (!status || entry.status === status));
|
|
2066
|
+
const filtered = parsed.filter((entry) => (!corpusGroupKey || entry.corpusGroupKey === corpusGroupKey) && (!groupKey || entry.groupKey === groupKey) && (!targetRolloutLabel || entry.targetRolloutLabel === targetRolloutLabel) && (!severity || entry.severity === severity) && (!status || entry.status === status));
|
|
2066
2067
|
const sorted = normalizeRetrievalReleaseIncidentRecords(filtered);
|
|
2067
2068
|
return typeof limit === "number" ? sorted.slice(0, limit) : sorted;
|
|
2068
2069
|
},
|
|
@@ -3045,12 +3046,14 @@ var loadRAGRetrievalLaneHandoffDecisions = async ({
|
|
|
3045
3046
|
})));
|
|
3046
3047
|
var loadRAGRetrievalReleaseIncidents = async ({
|
|
3047
3048
|
store,
|
|
3049
|
+
corpusGroupKey,
|
|
3048
3050
|
groupKey,
|
|
3049
3051
|
limit,
|
|
3050
3052
|
targetRolloutLabel,
|
|
3051
3053
|
status,
|
|
3052
3054
|
severity
|
|
3053
3055
|
}) => normalizeRetrievalReleaseIncidentRecords(await Promise.resolve(store.listIncidents({
|
|
3056
|
+
corpusGroupKey,
|
|
3054
3057
|
groupKey,
|
|
3055
3058
|
limit,
|
|
3056
3059
|
severity,
|
|
@@ -3836,5 +3839,5 @@ export {
|
|
|
3836
3839
|
buildRAGAnswerGroundingCaseDifficultyLeaderboard
|
|
3837
3840
|
};
|
|
3838
3841
|
|
|
3839
|
-
//# debugId=
|
|
3842
|
+
//# debugId=4BA11A498835C35E64756E2164756E21
|
|
3840
3843
|
//# sourceMappingURL=quality.js.map
|