@absolutejs/absolute 0.19.0-beta.616 → 0.19.0-beta.617
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 +34 -4
- package/dist/ai/client/index.js.map +3 -3
- package/dist/ai/index.js +447 -61
- package/dist/ai/index.js.map +4 -4
- package/dist/ai/rag/quality.js +34 -4
- package/dist/ai/rag/quality.js.map +3 -3
- 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 +34 -4
- package/dist/react/ai/index.js.map +3 -3
- package/dist/src/ai/rag/quality.d.ts +20 -10
- package/dist/svelte/ai/index.js +34 -4
- package/dist/svelte/ai/index.js.map +3 -3
- package/dist/types/ai.d.ts +43 -0
- package/dist/vue/ai/index.js +34 -4
- package/dist/vue/ai/index.js.map +3 -3
- package/package.json +7 -7
package/dist/ai/rag/quality.js
CHANGED
|
@@ -2987,16 +2987,32 @@ var loadRAGRetrievalComparisonHistory = async ({
|
|
|
2987
2987
|
suiteId,
|
|
2988
2988
|
label,
|
|
2989
2989
|
winnerId,
|
|
2990
|
+
corpusGroupKey,
|
|
2990
2991
|
groupKey,
|
|
2991
2992
|
tag
|
|
2992
|
-
}) => normalizeRetrievalComparisonRuns(await Promise.resolve(store.listRuns({
|
|
2993
|
+
}) => normalizeRetrievalComparisonRuns(await Promise.resolve(store.listRuns({
|
|
2994
|
+
corpusGroupKey,
|
|
2995
|
+
groupKey,
|
|
2996
|
+
label,
|
|
2997
|
+
limit,
|
|
2998
|
+
suiteId,
|
|
2999
|
+
tag,
|
|
3000
|
+
winnerId
|
|
3001
|
+
})));
|
|
2993
3002
|
var loadRAGRetrievalBaselines = async ({
|
|
2994
3003
|
store,
|
|
3004
|
+
corpusGroupKey,
|
|
2995
3005
|
groupKey,
|
|
2996
3006
|
tag,
|
|
2997
3007
|
limit,
|
|
2998
3008
|
status
|
|
2999
|
-
}) => normalizeRetrievalBaselineRecords(await Promise.resolve(store.listBaselines({
|
|
3009
|
+
}) => normalizeRetrievalBaselineRecords(await Promise.resolve(store.listBaselines({
|
|
3010
|
+
corpusGroupKey,
|
|
3011
|
+
groupKey,
|
|
3012
|
+
limit,
|
|
3013
|
+
status,
|
|
3014
|
+
tag
|
|
3015
|
+
})));
|
|
3000
3016
|
var persistRAGRetrievalBaseline = async ({
|
|
3001
3017
|
store,
|
|
3002
3018
|
record
|
|
@@ -3006,18 +3022,21 @@ var persistRAGRetrievalBaseline = async ({
|
|
|
3006
3022
|
};
|
|
3007
3023
|
var loadRAGRetrievalReleaseDecisions = async ({
|
|
3008
3024
|
store,
|
|
3025
|
+
corpusGroupKey,
|
|
3009
3026
|
groupKey,
|
|
3010
3027
|
limit,
|
|
3011
3028
|
kind
|
|
3012
|
-
}) => normalizeRetrievalReleaseDecisionRecords(await Promise.resolve(store.listDecisions({ groupKey, kind, limit })));
|
|
3029
|
+
}) => normalizeRetrievalReleaseDecisionRecords(await Promise.resolve(store.listDecisions({ corpusGroupKey, groupKey, kind, limit })));
|
|
3013
3030
|
var loadRAGRetrievalLaneHandoffDecisions = async ({
|
|
3014
3031
|
store,
|
|
3032
|
+
corpusGroupKey,
|
|
3015
3033
|
groupKey,
|
|
3016
3034
|
limit,
|
|
3017
3035
|
kind,
|
|
3018
3036
|
sourceRolloutLabel,
|
|
3019
3037
|
targetRolloutLabel
|
|
3020
3038
|
}) => normalizeRetrievalLaneHandoffDecisionRecords(await Promise.resolve(store.listDecisions({
|
|
3039
|
+
corpusGroupKey,
|
|
3021
3040
|
groupKey,
|
|
3022
3041
|
kind,
|
|
3023
3042
|
limit,
|
|
@@ -3040,12 +3059,14 @@ var loadRAGRetrievalReleaseIncidents = async ({
|
|
|
3040
3059
|
})));
|
|
3041
3060
|
var loadRAGRetrievalLaneHandoffIncidents = async ({
|
|
3042
3061
|
store,
|
|
3062
|
+
corpusGroupKey,
|
|
3043
3063
|
groupKey,
|
|
3044
3064
|
limit,
|
|
3045
3065
|
targetRolloutLabel,
|
|
3046
3066
|
status,
|
|
3047
3067
|
severity
|
|
3048
3068
|
}) => normalizeRetrievalReleaseIncidentRecords(await Promise.resolve(store.listIncidents({
|
|
3069
|
+
corpusGroupKey,
|
|
3049
3070
|
groupKey,
|
|
3050
3071
|
limit,
|
|
3051
3072
|
severity,
|
|
@@ -3054,12 +3075,14 @@ var loadRAGRetrievalLaneHandoffIncidents = async ({
|
|
|
3054
3075
|
})));
|
|
3055
3076
|
var loadRAGRetrievalLaneHandoffIncidentHistory = async ({
|
|
3056
3077
|
store,
|
|
3078
|
+
corpusGroupKey,
|
|
3057
3079
|
action,
|
|
3058
3080
|
groupKey,
|
|
3059
3081
|
incidentId,
|
|
3060
3082
|
limit,
|
|
3061
3083
|
targetRolloutLabel
|
|
3062
3084
|
}) => await Promise.resolve(store.listRecords({
|
|
3085
|
+
corpusGroupKey,
|
|
3063
3086
|
action,
|
|
3064
3087
|
groupKey,
|
|
3065
3088
|
incidentId,
|
|
@@ -3104,21 +3127,25 @@ var loadRAGRetrievalIncidentRemediationExecutionHistory = async ({
|
|
|
3104
3127
|
})));
|
|
3105
3128
|
var loadRAGRetrievalLaneHandoffAutoCompletePolicyHistory = async ({
|
|
3106
3129
|
store,
|
|
3130
|
+
corpusGroupKey,
|
|
3107
3131
|
groupKey,
|
|
3108
3132
|
limit,
|
|
3109
3133
|
targetRolloutLabel
|
|
3110
3134
|
}) => await Promise.resolve(store.listRecords({
|
|
3135
|
+
corpusGroupKey,
|
|
3111
3136
|
groupKey,
|
|
3112
3137
|
limit,
|
|
3113
3138
|
targetRolloutLabel
|
|
3114
3139
|
}));
|
|
3115
3140
|
var loadRAGRetrievalReleaseLanePolicyHistory = async ({
|
|
3116
3141
|
store,
|
|
3142
|
+
corpusGroupKey,
|
|
3117
3143
|
groupKey,
|
|
3118
3144
|
limit,
|
|
3119
3145
|
rolloutLabel,
|
|
3120
3146
|
scope
|
|
3121
3147
|
}) => await Promise.resolve(store.listRecords({
|
|
3148
|
+
corpusGroupKey,
|
|
3122
3149
|
groupKey,
|
|
3123
3150
|
limit,
|
|
3124
3151
|
rolloutLabel,
|
|
@@ -3126,11 +3153,13 @@ var loadRAGRetrievalReleaseLanePolicyHistory = async ({
|
|
|
3126
3153
|
}));
|
|
3127
3154
|
var loadRAGRetrievalBaselineGatePolicyHistory = async ({
|
|
3128
3155
|
store,
|
|
3156
|
+
corpusGroupKey,
|
|
3129
3157
|
groupKey,
|
|
3130
3158
|
limit,
|
|
3131
3159
|
rolloutLabel,
|
|
3132
3160
|
scope
|
|
3133
3161
|
}) => await Promise.resolve(store.listRecords({
|
|
3162
|
+
corpusGroupKey,
|
|
3134
3163
|
groupKey,
|
|
3135
3164
|
limit,
|
|
3136
3165
|
rolloutLabel,
|
|
@@ -3138,6 +3167,7 @@ var loadRAGRetrievalBaselineGatePolicyHistory = async ({
|
|
|
3138
3167
|
}));
|
|
3139
3168
|
var loadRAGRetrievalReleaseLaneEscalationPolicyHistory = async ({
|
|
3140
3169
|
store,
|
|
3170
|
+
corpusGroupKey,
|
|
3141
3171
|
groupKey,
|
|
3142
3172
|
limit,
|
|
3143
3173
|
targetRolloutLabel
|
|
@@ -3806,5 +3836,5 @@ export {
|
|
|
3806
3836
|
buildRAGAnswerGroundingCaseDifficultyLeaderboard
|
|
3807
3837
|
};
|
|
3808
3838
|
|
|
3809
|
-
//# debugId=
|
|
3839
|
+
//# debugId=6A5C3ED0012F395064756E2164756E21
|
|
3810
3840
|
//# sourceMappingURL=quality.js.map
|