@absolutejs/absolute 0.19.0-beta.616 → 0.19.0-beta.618

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