@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
|
@@ -120,17 +120,19 @@ export declare const loadRAGSearchTracePruneHistory: ({ store, limit, trigger }:
|
|
|
120
120
|
limit?: number;
|
|
121
121
|
trigger?: RAGSearchTracePruneRun["trigger"];
|
|
122
122
|
}) => Promise<RAGSearchTracePruneRun[]>;
|
|
123
|
-
export declare const loadRAGRetrievalComparisonHistory: ({ store, limit, suiteId, label, winnerId, groupKey, tag }: {
|
|
123
|
+
export declare const loadRAGRetrievalComparisonHistory: ({ store, limit, suiteId, label, winnerId, corpusGroupKey, groupKey, tag }: {
|
|
124
124
|
store: RAGRetrievalComparisonHistoryStore;
|
|
125
125
|
limit?: number;
|
|
126
126
|
suiteId?: string;
|
|
127
127
|
label?: string;
|
|
128
128
|
winnerId?: string;
|
|
129
|
+
corpusGroupKey?: string;
|
|
129
130
|
groupKey?: string;
|
|
130
131
|
tag?: string;
|
|
131
132
|
}) => Promise<RAGRetrievalComparisonRun[]>;
|
|
132
|
-
export declare const loadRAGRetrievalBaselines: ({ store, groupKey, tag, limit, status }: {
|
|
133
|
+
export declare const loadRAGRetrievalBaselines: ({ store, corpusGroupKey, groupKey, tag, limit, status }: {
|
|
133
134
|
store: RAGRetrievalBaselineStore;
|
|
135
|
+
corpusGroupKey?: string;
|
|
134
136
|
groupKey?: string;
|
|
135
137
|
tag?: string;
|
|
136
138
|
limit?: number;
|
|
@@ -140,14 +142,16 @@ export declare const persistRAGRetrievalBaseline: ({ store, record }: {
|
|
|
140
142
|
store: RAGRetrievalBaselineStore;
|
|
141
143
|
record: RAGRetrievalBaselineRecord;
|
|
142
144
|
}) => Promise<RAGRetrievalBaselineRecord>;
|
|
143
|
-
export declare const loadRAGRetrievalReleaseDecisions: ({ store, groupKey, limit, kind }: {
|
|
145
|
+
export declare const loadRAGRetrievalReleaseDecisions: ({ store, corpusGroupKey, groupKey, limit, kind }: {
|
|
144
146
|
store: RAGRetrievalReleaseDecisionStore;
|
|
147
|
+
corpusGroupKey?: string;
|
|
145
148
|
groupKey?: string;
|
|
146
149
|
limit?: number;
|
|
147
150
|
kind?: RAGRetrievalReleaseDecisionRecord["kind"];
|
|
148
151
|
}) => Promise<RAGRetrievalReleaseDecisionRecord[]>;
|
|
149
|
-
export declare const loadRAGRetrievalLaneHandoffDecisions: ({ store, groupKey, limit, kind, sourceRolloutLabel, targetRolloutLabel }: {
|
|
152
|
+
export declare const loadRAGRetrievalLaneHandoffDecisions: ({ store, corpusGroupKey, groupKey, limit, kind, sourceRolloutLabel, targetRolloutLabel }: {
|
|
150
153
|
store: RAGRetrievalLaneHandoffDecisionStore;
|
|
154
|
+
corpusGroupKey?: string;
|
|
151
155
|
groupKey?: string;
|
|
152
156
|
limit?: number;
|
|
153
157
|
kind?: RAGRetrievalLaneHandoffDecisionRecord["kind"];
|
|
@@ -162,16 +166,18 @@ export declare const loadRAGRetrievalReleaseIncidents: ({ store, groupKey, limit
|
|
|
162
166
|
status?: RAGRetrievalReleaseIncidentRecord["status"];
|
|
163
167
|
severity?: RAGRetrievalReleaseIncidentRecord["severity"];
|
|
164
168
|
}) => Promise<RAGRetrievalReleaseIncidentRecord[]>;
|
|
165
|
-
export declare const loadRAGRetrievalLaneHandoffIncidents: ({ store, groupKey, limit, targetRolloutLabel, status, severity }: {
|
|
169
|
+
export declare const loadRAGRetrievalLaneHandoffIncidents: ({ store, corpusGroupKey, groupKey, limit, targetRolloutLabel, status, severity }: {
|
|
166
170
|
store: RAGRetrievalLaneHandoffIncidentStore;
|
|
171
|
+
corpusGroupKey?: string;
|
|
167
172
|
groupKey?: string;
|
|
168
173
|
limit?: number;
|
|
169
174
|
targetRolloutLabel?: RAGRetrievalLaneHandoffIncidentRecord["targetRolloutLabel"];
|
|
170
175
|
status?: RAGRetrievalLaneHandoffIncidentRecord["status"];
|
|
171
176
|
severity?: RAGRetrievalLaneHandoffIncidentRecord["severity"];
|
|
172
177
|
}) => Promise<RAGRetrievalLaneHandoffIncidentRecord[]>;
|
|
173
|
-
export declare const loadRAGRetrievalLaneHandoffIncidentHistory: ({ store, action, groupKey, incidentId, limit, targetRolloutLabel }: {
|
|
178
|
+
export declare const loadRAGRetrievalLaneHandoffIncidentHistory: ({ store, corpusGroupKey, action, groupKey, incidentId, limit, targetRolloutLabel }: {
|
|
174
179
|
store: RAGRetrievalLaneHandoffIncidentHistoryStore;
|
|
180
|
+
corpusGroupKey?: string;
|
|
175
181
|
action?: RAGRetrievalLaneHandoffIncidentHistoryRecord["action"];
|
|
176
182
|
groupKey?: string;
|
|
177
183
|
incidentId?: string;
|
|
@@ -198,28 +204,32 @@ export declare const loadRAGRetrievalIncidentRemediationExecutionHistory: ({ sto
|
|
|
198
204
|
limit?: number;
|
|
199
205
|
targetRolloutLabel?: RAGRetrievalIncidentRemediationExecutionHistoryRecord["targetRolloutLabel"];
|
|
200
206
|
}) => Promise<RAGRetrievalIncidentRemediationExecutionHistoryRecord[]>;
|
|
201
|
-
export declare const loadRAGRetrievalLaneHandoffAutoCompletePolicyHistory: ({ store, groupKey, limit, targetRolloutLabel }: {
|
|
207
|
+
export declare const loadRAGRetrievalLaneHandoffAutoCompletePolicyHistory: ({ store, corpusGroupKey, groupKey, limit, targetRolloutLabel }: {
|
|
202
208
|
store: RAGRetrievalLaneHandoffAutoCompletePolicyHistoryStore;
|
|
209
|
+
corpusGroupKey?: string;
|
|
203
210
|
groupKey?: string;
|
|
204
211
|
limit?: number;
|
|
205
212
|
targetRolloutLabel?: RAGRetrievalLaneHandoffAutoCompletePolicyHistoryRecord["targetRolloutLabel"];
|
|
206
213
|
}) => Promise<RAGRetrievalLaneHandoffAutoCompletePolicyHistoryRecord[]>;
|
|
207
|
-
export declare const loadRAGRetrievalReleaseLanePolicyHistory: ({ store, groupKey, limit, rolloutLabel, scope }: {
|
|
214
|
+
export declare const loadRAGRetrievalReleaseLanePolicyHistory: ({ store, corpusGroupKey, groupKey, limit, rolloutLabel, scope }: {
|
|
208
215
|
store: RAGRetrievalReleaseLanePolicyHistoryStore;
|
|
216
|
+
corpusGroupKey?: string;
|
|
209
217
|
groupKey?: string;
|
|
210
218
|
limit?: number;
|
|
211
219
|
rolloutLabel?: RAGRetrievalReleaseLanePolicyHistoryRecord["rolloutLabel"];
|
|
212
220
|
scope?: RAGRetrievalReleaseLanePolicyHistoryRecord["scope"];
|
|
213
221
|
}) => Promise<RAGRetrievalReleaseLanePolicyHistoryRecord[]>;
|
|
214
|
-
export declare const loadRAGRetrievalBaselineGatePolicyHistory: ({ store, groupKey, limit, rolloutLabel, scope }: {
|
|
222
|
+
export declare const loadRAGRetrievalBaselineGatePolicyHistory: ({ store, corpusGroupKey, groupKey, limit, rolloutLabel, scope }: {
|
|
215
223
|
store: RAGRetrievalBaselineGatePolicyHistoryStore;
|
|
224
|
+
corpusGroupKey?: string;
|
|
216
225
|
groupKey?: string;
|
|
217
226
|
limit?: number;
|
|
218
227
|
rolloutLabel?: RAGRetrievalBaselineGatePolicyHistoryRecord["rolloutLabel"];
|
|
219
228
|
scope?: RAGRetrievalBaselineGatePolicyHistoryRecord["scope"];
|
|
220
229
|
}) => Promise<RAGRetrievalBaselineGatePolicyHistoryRecord[]>;
|
|
221
|
-
export declare const loadRAGRetrievalReleaseLaneEscalationPolicyHistory: ({ store, groupKey, limit, targetRolloutLabel }: {
|
|
230
|
+
export declare const loadRAGRetrievalReleaseLaneEscalationPolicyHistory: ({ store, corpusGroupKey, groupKey, limit, targetRolloutLabel }: {
|
|
222
231
|
store: RAGRetrievalReleaseLaneEscalationPolicyHistoryStore;
|
|
232
|
+
corpusGroupKey?: string;
|
|
223
233
|
groupKey?: string;
|
|
224
234
|
limit?: number;
|
|
225
235
|
targetRolloutLabel?: RAGRetrievalReleaseLaneEscalationPolicyHistoryRecord["targetRolloutLabel"];
|
package/dist/svelte/ai/index.js
CHANGED
|
@@ -2995,16 +2995,32 @@ var loadRAGRetrievalComparisonHistory = async ({
|
|
|
2995
2995
|
suiteId,
|
|
2996
2996
|
label,
|
|
2997
2997
|
winnerId,
|
|
2998
|
+
corpusGroupKey,
|
|
2998
2999
|
groupKey,
|
|
2999
3000
|
tag
|
|
3000
|
-
}) => normalizeRetrievalComparisonRuns(await Promise.resolve(store.listRuns({
|
|
3001
|
+
}) => normalizeRetrievalComparisonRuns(await Promise.resolve(store.listRuns({
|
|
3002
|
+
corpusGroupKey,
|
|
3003
|
+
groupKey,
|
|
3004
|
+
label,
|
|
3005
|
+
limit,
|
|
3006
|
+
suiteId,
|
|
3007
|
+
tag,
|
|
3008
|
+
winnerId
|
|
3009
|
+
})));
|
|
3001
3010
|
var loadRAGRetrievalBaselines = async ({
|
|
3002
3011
|
store,
|
|
3012
|
+
corpusGroupKey,
|
|
3003
3013
|
groupKey,
|
|
3004
3014
|
tag,
|
|
3005
3015
|
limit,
|
|
3006
3016
|
status
|
|
3007
|
-
}) => normalizeRetrievalBaselineRecords(await Promise.resolve(store.listBaselines({
|
|
3017
|
+
}) => normalizeRetrievalBaselineRecords(await Promise.resolve(store.listBaselines({
|
|
3018
|
+
corpusGroupKey,
|
|
3019
|
+
groupKey,
|
|
3020
|
+
limit,
|
|
3021
|
+
status,
|
|
3022
|
+
tag
|
|
3023
|
+
})));
|
|
3008
3024
|
var persistRAGRetrievalBaseline = async ({
|
|
3009
3025
|
store,
|
|
3010
3026
|
record
|
|
@@ -3014,18 +3030,21 @@ var persistRAGRetrievalBaseline = async ({
|
|
|
3014
3030
|
};
|
|
3015
3031
|
var loadRAGRetrievalReleaseDecisions = async ({
|
|
3016
3032
|
store,
|
|
3033
|
+
corpusGroupKey,
|
|
3017
3034
|
groupKey,
|
|
3018
3035
|
limit,
|
|
3019
3036
|
kind
|
|
3020
|
-
}) => normalizeRetrievalReleaseDecisionRecords(await Promise.resolve(store.listDecisions({ groupKey, kind, limit })));
|
|
3037
|
+
}) => normalizeRetrievalReleaseDecisionRecords(await Promise.resolve(store.listDecisions({ corpusGroupKey, groupKey, kind, limit })));
|
|
3021
3038
|
var loadRAGRetrievalLaneHandoffDecisions = async ({
|
|
3022
3039
|
store,
|
|
3040
|
+
corpusGroupKey,
|
|
3023
3041
|
groupKey,
|
|
3024
3042
|
limit,
|
|
3025
3043
|
kind,
|
|
3026
3044
|
sourceRolloutLabel,
|
|
3027
3045
|
targetRolloutLabel
|
|
3028
3046
|
}) => normalizeRetrievalLaneHandoffDecisionRecords(await Promise.resolve(store.listDecisions({
|
|
3047
|
+
corpusGroupKey,
|
|
3029
3048
|
groupKey,
|
|
3030
3049
|
kind,
|
|
3031
3050
|
limit,
|
|
@@ -3048,12 +3067,14 @@ var loadRAGRetrievalReleaseIncidents = async ({
|
|
|
3048
3067
|
})));
|
|
3049
3068
|
var loadRAGRetrievalLaneHandoffIncidents = async ({
|
|
3050
3069
|
store,
|
|
3070
|
+
corpusGroupKey,
|
|
3051
3071
|
groupKey,
|
|
3052
3072
|
limit,
|
|
3053
3073
|
targetRolloutLabel,
|
|
3054
3074
|
status,
|
|
3055
3075
|
severity
|
|
3056
3076
|
}) => normalizeRetrievalReleaseIncidentRecords(await Promise.resolve(store.listIncidents({
|
|
3077
|
+
corpusGroupKey,
|
|
3057
3078
|
groupKey,
|
|
3058
3079
|
limit,
|
|
3059
3080
|
severity,
|
|
@@ -3062,12 +3083,14 @@ var loadRAGRetrievalLaneHandoffIncidents = async ({
|
|
|
3062
3083
|
})));
|
|
3063
3084
|
var loadRAGRetrievalLaneHandoffIncidentHistory = async ({
|
|
3064
3085
|
store,
|
|
3086
|
+
corpusGroupKey,
|
|
3065
3087
|
action,
|
|
3066
3088
|
groupKey,
|
|
3067
3089
|
incidentId,
|
|
3068
3090
|
limit,
|
|
3069
3091
|
targetRolloutLabel
|
|
3070
3092
|
}) => await Promise.resolve(store.listRecords({
|
|
3093
|
+
corpusGroupKey,
|
|
3071
3094
|
action,
|
|
3072
3095
|
groupKey,
|
|
3073
3096
|
incidentId,
|
|
@@ -3112,21 +3135,25 @@ var loadRAGRetrievalIncidentRemediationExecutionHistory = async ({
|
|
|
3112
3135
|
})));
|
|
3113
3136
|
var loadRAGRetrievalLaneHandoffAutoCompletePolicyHistory = async ({
|
|
3114
3137
|
store,
|
|
3138
|
+
corpusGroupKey,
|
|
3115
3139
|
groupKey,
|
|
3116
3140
|
limit,
|
|
3117
3141
|
targetRolloutLabel
|
|
3118
3142
|
}) => await Promise.resolve(store.listRecords({
|
|
3143
|
+
corpusGroupKey,
|
|
3119
3144
|
groupKey,
|
|
3120
3145
|
limit,
|
|
3121
3146
|
targetRolloutLabel
|
|
3122
3147
|
}));
|
|
3123
3148
|
var loadRAGRetrievalReleaseLanePolicyHistory = async ({
|
|
3124
3149
|
store,
|
|
3150
|
+
corpusGroupKey,
|
|
3125
3151
|
groupKey,
|
|
3126
3152
|
limit,
|
|
3127
3153
|
rolloutLabel,
|
|
3128
3154
|
scope
|
|
3129
3155
|
}) => await Promise.resolve(store.listRecords({
|
|
3156
|
+
corpusGroupKey,
|
|
3130
3157
|
groupKey,
|
|
3131
3158
|
limit,
|
|
3132
3159
|
rolloutLabel,
|
|
@@ -3134,11 +3161,13 @@ var loadRAGRetrievalReleaseLanePolicyHistory = async ({
|
|
|
3134
3161
|
}));
|
|
3135
3162
|
var loadRAGRetrievalBaselineGatePolicyHistory = async ({
|
|
3136
3163
|
store,
|
|
3164
|
+
corpusGroupKey,
|
|
3137
3165
|
groupKey,
|
|
3138
3166
|
limit,
|
|
3139
3167
|
rolloutLabel,
|
|
3140
3168
|
scope
|
|
3141
3169
|
}) => await Promise.resolve(store.listRecords({
|
|
3170
|
+
corpusGroupKey,
|
|
3142
3171
|
groupKey,
|
|
3143
3172
|
limit,
|
|
3144
3173
|
rolloutLabel,
|
|
@@ -3146,6 +3175,7 @@ var loadRAGRetrievalBaselineGatePolicyHistory = async ({
|
|
|
3146
3175
|
}));
|
|
3147
3176
|
var loadRAGRetrievalReleaseLaneEscalationPolicyHistory = async ({
|
|
3148
3177
|
store,
|
|
3178
|
+
corpusGroupKey,
|
|
3149
3179
|
groupKey,
|
|
3150
3180
|
limit,
|
|
3151
3181
|
targetRolloutLabel
|
|
@@ -8269,5 +8299,5 @@ export {
|
|
|
8269
8299
|
createAIStream
|
|
8270
8300
|
};
|
|
8271
8301
|
|
|
8272
|
-
//# debugId=
|
|
8302
|
+
//# debugId=2341EF849E2053C564756E2164756E21
|
|
8273
8303
|
//# sourceMappingURL=index.js.map
|