@convex-dev/ai-budget 0.0.2-alpha.3 → 0.0.2-alpha.5
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/README.md +116 -17
- package/dist/client/index.d.ts +433 -34
- package/dist/client/index.js +141 -33
- package/dist/component/_generated/component.d.ts +54 -24
- package/dist/component/lib.d.ts +130 -40
- package/dist/component/lib.js +550 -290
- package/dist/component/schema.d.ts +103 -53
- package/dist/component/schema.js +81 -38
- package/package.json +1 -1
- package/src/client/index.ts +241 -71
- package/src/component/_generated/component.ts +77 -29
- package/src/component/lib.test.ts +167 -15
- package/src/component/lib.ts +640 -313
- package/src/component/schema.ts +84 -38
package/src/component/lib.ts
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
type MutationCtx,
|
|
7
7
|
} from "./_generated/server";
|
|
8
8
|
import { api, internal, components } from "./_generated/api";
|
|
9
|
-
import { vMessage } from "./schema";
|
|
9
|
+
import { vMessage, vTag } from "./schema";
|
|
10
10
|
import type { Doc } from "./_generated/dataModel";
|
|
11
11
|
import { ShardedCounter } from "@convex-dev/sharded-counter";
|
|
12
12
|
|
|
@@ -19,6 +19,13 @@ import { ShardedCounter } from "@convex-dev/sharded-counter";
|
|
|
19
19
|
const NANOS_PER_DOLLAR = 1e9;
|
|
20
20
|
const fmtUsd = (nanos: number) => `$${(nanos / NANOS_PER_DOLLAR).toFixed(4)}`;
|
|
21
21
|
|
|
22
|
+
// Built-in attribution dimensions. `user` and `action` are always populated
|
|
23
|
+
// from a request's userId/actionName; apps can add any other dimensions
|
|
24
|
+
// (team, project, customer, env, …) as tags. These two names are reserved —
|
|
25
|
+
// tags carrying them are ignored in favor of the first-class fields.
|
|
26
|
+
const USER_DIM = "user";
|
|
27
|
+
const ACTION_DIM = "action";
|
|
28
|
+
|
|
22
29
|
// Deployment-wide spend totals (nanodollars), sharded for high write throughput.
|
|
23
30
|
// Keyed "total" (lifetime) and "day:<UTC date>" (natural daily reset).
|
|
24
31
|
const globalSpend = new ShardedCounter(components.shardedCounter);
|
|
@@ -53,7 +60,13 @@ const STALE_PENDING_MS = 30 * 60 * 1000;
|
|
|
53
60
|
// Override per-deployment via setRetention.
|
|
54
61
|
const DEFAULT_RETENTION_MS = 60 * 60 * 1000; // 1 hour
|
|
55
62
|
|
|
56
|
-
const dayStamp = () => new Date().toISOString().slice(0, 10);
|
|
63
|
+
const dayStamp = () => new Date().toISOString().slice(0, 10); // "2026-09-04"
|
|
64
|
+
const monthStamp = () => new Date().toISOString().slice(0, 7); // "2026-09"
|
|
65
|
+
|
|
66
|
+
// Cached (prompt-cache-read) input tokens are billed far below the normal input
|
|
67
|
+
// rate. When a model's price has no explicit cachedNanosPerMTok, charge this
|
|
68
|
+
// fraction of its input rate (providers commonly discount ~90%).
|
|
69
|
+
const CACHE_DISCOUNT = 0.1;
|
|
57
70
|
|
|
58
71
|
// Conservative fallback for any model not in the price table: the max of every
|
|
59
72
|
// known price dimension. Falling back to 0 would be fail-open — an unpriced
|
|
@@ -78,14 +91,21 @@ async function getPrice(ctx: MutationCtx, model: string) {
|
|
|
78
91
|
return {
|
|
79
92
|
input: override.inputNanosPerMTok,
|
|
80
93
|
output: override.outputNanosPerMTok,
|
|
94
|
+
cached: override.cachedNanosPerMTok,
|
|
81
95
|
known: true,
|
|
82
96
|
};
|
|
83
97
|
}
|
|
84
98
|
const known = DEFAULT_PRICES[model];
|
|
85
|
-
if (known) return { ...known, known: true };
|
|
86
|
-
return { ...CONSERVATIVE_PRICE, known: false };
|
|
99
|
+
if (known) return { ...known, cached: undefined, known: true };
|
|
100
|
+
return { ...CONSERVATIVE_PRICE, cached: undefined, known: false };
|
|
87
101
|
}
|
|
88
102
|
|
|
103
|
+
type Price = { input: number; output: number; cached?: number };
|
|
104
|
+
// The per-Mtok rate for cached (prompt-cache-read) tokens: an explicit override,
|
|
105
|
+
// else a discount off the input rate.
|
|
106
|
+
const cachedRate = (p: Price) =>
|
|
107
|
+
p.cached ?? Math.round(p.input * CACHE_DISCOUNT);
|
|
108
|
+
|
|
89
109
|
// Integer nanodollars. Divide-before-multiply keeps the intermediate product
|
|
90
110
|
// within 2^53 even for large token counts × large per-Mtok prices.
|
|
91
111
|
const costOf = (
|
|
@@ -97,6 +117,66 @@ const costOf = (
|
|
|
97
117
|
(inputTokens / 1e6) * price.input + (outputTokens / 1e6) * price.output
|
|
98
118
|
);
|
|
99
119
|
|
|
120
|
+
// Cache-aware settle cost: the cached slice of the prompt is billed at the
|
|
121
|
+
// (discounted) cache rate, the rest of the prompt at the input rate, and
|
|
122
|
+
// completions at the output rate. `cachedTokens` is the gateway's real
|
|
123
|
+
// prompt-cache-read count (usage.inputTokenDetails.cacheReadTokens).
|
|
124
|
+
const settleCost = (
|
|
125
|
+
promptTokens: number,
|
|
126
|
+
cachedTokens: number,
|
|
127
|
+
completionTokens: number,
|
|
128
|
+
price: Price
|
|
129
|
+
) => {
|
|
130
|
+
const cached = Math.min(Math.max(0, cachedTokens), Math.max(0, promptTokens));
|
|
131
|
+
const fresh = Math.max(0, promptTokens - cached);
|
|
132
|
+
return Math.round(
|
|
133
|
+
(fresh / 1e6) * price.input +
|
|
134
|
+
(cached / 1e6) * cachedRate(price) +
|
|
135
|
+
(completionTokens / 1e6) * price.output
|
|
136
|
+
);
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
// Upsert-add a settled amount into the durable per-(bucket, period) usage row.
|
|
140
|
+
// These rows are never swept by request retention, so spend history survives.
|
|
141
|
+
async function addUsage(
|
|
142
|
+
ctx: MutationCtx,
|
|
143
|
+
dimension: string,
|
|
144
|
+
value: string,
|
|
145
|
+
period: "day" | "month",
|
|
146
|
+
stamp: string,
|
|
147
|
+
spendNanos: number,
|
|
148
|
+
tokens: number,
|
|
149
|
+
requests: number
|
|
150
|
+
) {
|
|
151
|
+
const existing = await ctx.db
|
|
152
|
+
.query("usage")
|
|
153
|
+
.withIndex("bucket_period_stamp", (q) =>
|
|
154
|
+
q
|
|
155
|
+
.eq("dimension", dimension)
|
|
156
|
+
.eq("value", value)
|
|
157
|
+
.eq("period", period)
|
|
158
|
+
.eq("stamp", stamp)
|
|
159
|
+
)
|
|
160
|
+
.unique();
|
|
161
|
+
if (existing) {
|
|
162
|
+
await ctx.db.patch(existing._id, {
|
|
163
|
+
spendNanos: existing.spendNanos + spendNanos,
|
|
164
|
+
tokens: existing.tokens + tokens,
|
|
165
|
+
requests: existing.requests + requests,
|
|
166
|
+
});
|
|
167
|
+
} else {
|
|
168
|
+
await ctx.db.insert("usage", {
|
|
169
|
+
dimension,
|
|
170
|
+
value,
|
|
171
|
+
period,
|
|
172
|
+
stamp,
|
|
173
|
+
spendNanos,
|
|
174
|
+
tokens,
|
|
175
|
+
requests,
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
100
180
|
// Up-front estimate of a request's cost and token count, reserved before the
|
|
101
181
|
// call so concurrent in-flight requests are visible to each other's caps.
|
|
102
182
|
function estimateUsage(
|
|
@@ -111,58 +191,116 @@ function estimateUsage(
|
|
|
111
191
|
};
|
|
112
192
|
}
|
|
113
193
|
|
|
114
|
-
//
|
|
115
|
-
//
|
|
116
|
-
//
|
|
194
|
+
// The full set of attribution buckets a request touches: the built-in `user`
|
|
195
|
+
// and `action` dimensions plus any extra tags. Reserved dimensions in `extra`
|
|
196
|
+
// are dropped (userId/actionName own them), and (dimension, value) pairs are
|
|
197
|
+
// de-duplicated. Used identically at reserve time (startRequest) and settle
|
|
198
|
+
// time (foldOne), so a request always settles exactly the buckets it reserved.
|
|
199
|
+
function requestBuckets(
|
|
200
|
+
userId: string,
|
|
201
|
+
actionName: string | undefined,
|
|
202
|
+
extra: { dimension: string; value: string }[] | undefined
|
|
203
|
+
): { dimension: string; value: string }[] {
|
|
204
|
+
const out = [{ dimension: USER_DIM, value: userId }];
|
|
205
|
+
if (actionName !== undefined)
|
|
206
|
+
out.push({ dimension: ACTION_DIM, value: actionName });
|
|
207
|
+
for (const t of extra ?? []) {
|
|
208
|
+
if (t.dimension === USER_DIM || t.dimension === ACTION_DIM) continue;
|
|
209
|
+
if (!t.dimension || !t.value) continue;
|
|
210
|
+
if (out.some((x) => x.dimension === t.dimension && x.value === t.value))
|
|
211
|
+
continue;
|
|
212
|
+
out.push({ dimension: t.dimension, value: t.value });
|
|
213
|
+
}
|
|
214
|
+
return out;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// Drop reserved/empty/duplicate tags from a caller-supplied list, leaving the
|
|
218
|
+
// "extra" dimensions stored on the request row.
|
|
219
|
+
function sanitizeExtraTags(
|
|
220
|
+
extra: { dimension: string; value: string }[] | undefined
|
|
221
|
+
): { dimension: string; value: string }[] {
|
|
222
|
+
const out: { dimension: string; value: string }[] = [];
|
|
223
|
+
for (const t of extra ?? []) {
|
|
224
|
+
if (t.dimension === USER_DIM || t.dimension === ACTION_DIM) continue;
|
|
225
|
+
if (!t.dimension || !t.value) continue;
|
|
226
|
+
if (out.some((x) => x.dimension === t.dimension && x.value === t.value))
|
|
227
|
+
continue;
|
|
228
|
+
out.push({ dimension: t.dimension, value: t.value });
|
|
229
|
+
}
|
|
230
|
+
return out;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// Evaluate a bucket's spend + token budgets against committed + reserved + this
|
|
234
|
+
// request's estimate. Returns a hard rejection (block), soft warnings (allow),
|
|
235
|
+
// and threshold notices (approaching a cap — see warnAtPct). Each window (daily,
|
|
236
|
+
// monthly, lifetime) × kind (spend, token) is one check.
|
|
117
237
|
function evaluateCaps(o: {
|
|
118
238
|
label: string;
|
|
119
239
|
name: string;
|
|
120
240
|
enforcement: "hard" | "soft";
|
|
241
|
+
warnAtPct?: number;
|
|
121
242
|
estCost: number;
|
|
122
243
|
estTokens: number;
|
|
123
244
|
spendToday: number;
|
|
124
245
|
reservedSpendToday: number;
|
|
246
|
+
spendThisMonth: number;
|
|
247
|
+
reservedSpendMonth: number;
|
|
125
248
|
totalSpend: number;
|
|
126
249
|
reservedSpendTotal: number;
|
|
127
250
|
tokensToday: number;
|
|
128
251
|
reservedTokensToday: number;
|
|
252
|
+
tokensThisMonth: number;
|
|
253
|
+
reservedTokensMonth: number;
|
|
129
254
|
totalTokens: number;
|
|
130
255
|
reservedTokensTotal: number;
|
|
131
256
|
dailySpendLimitNanos?: number;
|
|
257
|
+
monthlySpendLimitNanos?: number;
|
|
132
258
|
lifetimeSpendLimitNanos?: number;
|
|
133
259
|
dailyTokenLimit?: number;
|
|
260
|
+
monthlyTokenLimit?: number;
|
|
134
261
|
lifetimeTokenLimit?: number;
|
|
135
|
-
}): {
|
|
262
|
+
}): {
|
|
263
|
+
hard?: { code: string; reason: string };
|
|
264
|
+
warnings: string[];
|
|
265
|
+
notices: string[];
|
|
266
|
+
} {
|
|
267
|
+
// { code, projected usage (incl. this estimate), cap, human window label,
|
|
268
|
+
// whether it's a money cap (formatted as $), spend? for notices }
|
|
269
|
+
const checks = [
|
|
270
|
+
{ w: "daily_spend_limit", used: o.spendToday + o.reservedSpendToday + o.estCost, cap: o.dailySpendLimitNanos, label: "daily spend limit", money: true },
|
|
271
|
+
{ w: "monthly_spend_limit", used: o.spendThisMonth + o.reservedSpendMonth + o.estCost, cap: o.monthlySpendLimitNanos, label: "monthly spend limit", money: true },
|
|
272
|
+
{ w: "lifetime_spend_limit", used: o.totalSpend + o.reservedSpendTotal + o.estCost, cap: o.lifetimeSpendLimitNanos, label: "lifetime spend limit", money: true },
|
|
273
|
+
{ w: "daily_token_limit", used: o.tokensToday + o.reservedTokensToday + o.estTokens, cap: o.dailyTokenLimit, label: "daily token limit", money: false },
|
|
274
|
+
{ w: "monthly_token_limit", used: o.tokensThisMonth + o.reservedTokensMonth + o.estTokens, cap: o.monthlyTokenLimit, label: "monthly token limit", money: false },
|
|
275
|
+
{ w: "lifetime_token_limit", used: o.totalTokens + o.reservedTokensTotal + o.estTokens, cap: o.lifetimeTokenLimit, label: "lifetime token limit", money: false },
|
|
276
|
+
];
|
|
277
|
+
|
|
136
278
|
const violations: { code: string; reason: string }[] = [];
|
|
137
|
-
const
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
if (
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
)
|
|
159
|
-
push("lifetime_token_limit", `Lifetime token limit reached for ${o.label} "${o.name}"`);
|
|
160
|
-
|
|
161
|
-
if (violations.length === 0) return { warnings: [] };
|
|
162
|
-
if (o.enforcement === "soft") return { warnings: violations.map((v) => v.reason) };
|
|
163
|
-
return { hard: violations[0], warnings: [] };
|
|
279
|
+
const notices: string[] = [];
|
|
280
|
+
const pct = o.warnAtPct;
|
|
281
|
+
for (const c of checks) {
|
|
282
|
+
if (c.cap === undefined) continue;
|
|
283
|
+
const capStr = c.money ? `${fmtUsd(c.cap)}` : `${c.cap} tokens`;
|
|
284
|
+
if (c.used > c.cap) {
|
|
285
|
+
violations.push({
|
|
286
|
+
code: `${o.label}_${c.w}`,
|
|
287
|
+
reason: `${cap(c.label)} reached for ${o.label} "${o.name}" (${capStr})`,
|
|
288
|
+
});
|
|
289
|
+
} else if (pct !== undefined && pct > 0 && pct < 1 && c.used >= pct * c.cap) {
|
|
290
|
+
notices.push(
|
|
291
|
+
`${o.label} "${o.name}" at ${Math.round((c.used / c.cap) * 100)}% of ${c.label} (${capStr})`
|
|
292
|
+
);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
if (violations.length === 0) return { warnings: [], notices };
|
|
297
|
+
if (o.enforcement === "soft")
|
|
298
|
+
return { warnings: violations.map((v) => v.reason), notices };
|
|
299
|
+
return { hard: violations[0], warnings: [], notices };
|
|
164
300
|
}
|
|
165
301
|
|
|
302
|
+
const cap = (s: string) => s.charAt(0).toUpperCase() + s.slice(1);
|
|
303
|
+
|
|
166
304
|
// A cap plus any one-time bump. Returns undefined when there's no base cap
|
|
167
305
|
// (a bump alone never creates a cap).
|
|
168
306
|
const withBump = (base: number | undefined, bump: number | undefined) =>
|
|
@@ -170,40 +308,43 @@ const withBump = (base: number | undefined, bump: number | undefined) =>
|
|
|
170
308
|
|
|
171
309
|
const hasAnyCap = (e: {
|
|
172
310
|
dailySpendLimitNanos?: number;
|
|
311
|
+
monthlySpendLimitNanos?: number;
|
|
173
312
|
lifetimeSpendLimitNanos?: number;
|
|
174
313
|
dailyTokenLimit?: number;
|
|
314
|
+
monthlyTokenLimit?: number;
|
|
175
315
|
lifetimeTokenLimit?: number;
|
|
176
316
|
}) =>
|
|
177
317
|
e.dailySpendLimitNanos !== undefined ||
|
|
318
|
+
e.monthlySpendLimitNanos !== undefined ||
|
|
178
319
|
e.lifetimeSpendLimitNanos !== undefined ||
|
|
179
320
|
e.dailyTokenLimit !== undefined ||
|
|
321
|
+
e.monthlyTokenLimit !== undefined ||
|
|
180
322
|
e.lifetimeTokenLimit !== undefined;
|
|
181
323
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
324
|
+
// A bucket needs a reservation row-write if it has any spend/token cap OR a
|
|
325
|
+
// concurrency cap (which reads pendingCount, incremented at reserve time).
|
|
326
|
+
const needsReserve = (e: Parameters<typeof hasAnyCap>[0] & { maxConcurrent?: number }) =>
|
|
327
|
+
hasAnyCap(e) || e.maxConcurrent !== undefined;
|
|
328
|
+
|
|
329
|
+
async function getBucketDoc(ctx: MutationCtx, dimension: string, value: string) {
|
|
330
|
+
return await ctx.db
|
|
331
|
+
.query("buckets")
|
|
332
|
+
.withIndex("dim_value", (q) =>
|
|
333
|
+
q.eq("dimension", dimension).eq("value", value)
|
|
334
|
+
)
|
|
186
335
|
.unique();
|
|
187
|
-
if (existing) return existing;
|
|
188
|
-
const id = await ctx.db.insert("users", {
|
|
189
|
-
userId,
|
|
190
|
-
totalSpendNanos: 0,
|
|
191
|
-
totalRequests: 0,
|
|
192
|
-
totalTokens: 0,
|
|
193
|
-
dayStamp: dayStamp(),
|
|
194
|
-
spendTodayNanos: 0,
|
|
195
|
-
});
|
|
196
|
-
return (await ctx.db.get(id))!;
|
|
197
336
|
}
|
|
198
337
|
|
|
199
|
-
async function
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
338
|
+
async function getOrCreateBucket(
|
|
339
|
+
ctx: MutationCtx,
|
|
340
|
+
dimension: string,
|
|
341
|
+
value: string
|
|
342
|
+
) {
|
|
343
|
+
const existing = await getBucketDoc(ctx, dimension, value);
|
|
204
344
|
if (existing) return existing;
|
|
205
|
-
const id = await ctx.db.insert("
|
|
206
|
-
|
|
345
|
+
const id = await ctx.db.insert("buckets", {
|
|
346
|
+
dimension,
|
|
347
|
+
value,
|
|
207
348
|
totalSpendNanos: 0,
|
|
208
349
|
totalRequests: 0,
|
|
209
350
|
totalTokens: 0,
|
|
@@ -220,11 +361,22 @@ async function getSettings(ctx: MutationCtx) {
|
|
|
220
361
|
.unique();
|
|
221
362
|
}
|
|
222
363
|
|
|
364
|
+
// Delete the reverse-index rows for a request (called when the request row is
|
|
365
|
+
// deleted, so the tag index never outlives the request it points at).
|
|
366
|
+
async function deleteRequestTags(ctx: MutationCtx, requestId: Doc<"requests">["_id"]) {
|
|
367
|
+
const tags = await ctx.db
|
|
368
|
+
.query("requestTags")
|
|
369
|
+
.withIndex("requestId", (q) => q.eq("requestId", requestId))
|
|
370
|
+
.collect();
|
|
371
|
+
for (const t of tags) await ctx.db.delete(t._id);
|
|
372
|
+
}
|
|
373
|
+
|
|
223
374
|
const vStartResult = v.union(
|
|
224
375
|
v.object({
|
|
225
376
|
allowed: v.literal(true),
|
|
226
377
|
requestId: v.id("requests"),
|
|
227
|
-
warnings: v.array(v.string()),
|
|
378
|
+
warnings: v.array(v.string()), // soft caps exceeded (allowed with a warning)
|
|
379
|
+
notices: v.array(v.string()), // approaching a cap (warnAtPct threshold)
|
|
228
380
|
}),
|
|
229
381
|
v.object({
|
|
230
382
|
allowed: v.literal(false),
|
|
@@ -237,13 +389,16 @@ export const startRequest = mutation({
|
|
|
237
389
|
args: {
|
|
238
390
|
userId: v.string(),
|
|
239
391
|
actionName: v.optional(v.string()),
|
|
392
|
+
// Extra attribution dimensions to bill/limit (team, customer, env, …).
|
|
393
|
+
// `user` and `action` are reserved (owned by userId/actionName).
|
|
394
|
+
tags: v.optional(v.array(vTag)),
|
|
240
395
|
model: v.string(),
|
|
241
396
|
messages: v.array(vMessage),
|
|
242
397
|
rerunOf: v.optional(v.id("requests")),
|
|
243
398
|
},
|
|
244
399
|
returns: vStartResult,
|
|
245
400
|
handler: async (ctx, args) => {
|
|
246
|
-
const
|
|
401
|
+
const extraTags = sanitizeExtraTags(args.tags);
|
|
247
402
|
// Record the blocked attempt and return a rejection (throwing would roll
|
|
248
403
|
// back the record). `persist` is false for the high-frequency-by-design
|
|
249
404
|
// rejections (rate limit, blocked user) that a client retries in a tight
|
|
@@ -252,7 +407,12 @@ export const startRequest = mutation({
|
|
|
252
407
|
const reject = async (code: string, reason: string, persist = true) => {
|
|
253
408
|
if (persist) {
|
|
254
409
|
await ctx.db.insert("requests", {
|
|
255
|
-
|
|
410
|
+
userId: args.userId,
|
|
411
|
+
actionName: args.actionName,
|
|
412
|
+
...(extraTags.length ? { tags: extraTags } : {}),
|
|
413
|
+
model: args.model,
|
|
414
|
+
messages: args.messages,
|
|
415
|
+
rerunOf: args.rerunOf,
|
|
256
416
|
status: "blocked" as const,
|
|
257
417
|
error: reason,
|
|
258
418
|
});
|
|
@@ -261,18 +421,18 @@ export const startRequest = mutation({
|
|
|
261
421
|
};
|
|
262
422
|
|
|
263
423
|
const today = dayStamp();
|
|
424
|
+
const month = monthStamp();
|
|
264
425
|
const priceInfo = await getPrice(ctx, args.model);
|
|
265
426
|
const est = estimateUsage(args.messages, priceInfo);
|
|
266
427
|
const warnings: string[] = [];
|
|
428
|
+
const notices: string[] = [];
|
|
267
429
|
|
|
268
|
-
if (user.blocked) {
|
|
269
|
-
return reject("blocked", `User "${args.userId}" is blocked`, false);
|
|
270
|
-
}
|
|
271
430
|
// Model allow/deny policy (component-wide).
|
|
272
|
-
const
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
const
|
|
431
|
+
const settings = await getSettings(ctx);
|
|
432
|
+
const defaultWarnAtPct = settings?.defaultWarnAtPct;
|
|
433
|
+
if (settings) {
|
|
434
|
+
const mode = settings.modelMode ?? "open";
|
|
435
|
+
const list = settings.models ?? [];
|
|
276
436
|
if (mode === "allowlist" && !list.includes(args.model)) {
|
|
277
437
|
return reject(
|
|
278
438
|
"model_not_allowed",
|
|
@@ -283,9 +443,48 @@ export const startRequest = mutation({
|
|
|
283
443
|
return reject("model_denied", `Model "${args.model}" is denied`);
|
|
284
444
|
}
|
|
285
445
|
}
|
|
286
|
-
|
|
446
|
+
|
|
447
|
+
// Fetch/create every bucket this request is attributed to (user, action,
|
|
448
|
+
// and any extra tags). Each may carry its own budget.
|
|
449
|
+
const bucketTags = requestBuckets(args.userId, args.actionName, extraTags);
|
|
450
|
+
const buckets: Doc<"buckets">[] = [];
|
|
451
|
+
for (const t of bucketTags) {
|
|
452
|
+
buckets.push(await getOrCreateBucket(ctx, t.dimension, t.value));
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
// A hard block on ANY bucket rejects the request. The user dimension's block
|
|
456
|
+
// isn't persisted (retried in a loop); config-level blocks on other
|
|
457
|
+
// dimensions are rarer, so they persist for the audit log.
|
|
458
|
+
for (const b of buckets) {
|
|
459
|
+
if (b.blocked) {
|
|
460
|
+
const label = b.dimension === USER_DIM ? "User" : b.dimension;
|
|
461
|
+
return reject(
|
|
462
|
+
`${b.dimension}_blocked`,
|
|
463
|
+
`${label} "${b.value}" is blocked`,
|
|
464
|
+
b.dimension !== USER_DIM
|
|
465
|
+
);
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
// Concurrency cap: reject when a bucket already has maxConcurrent requests
|
|
470
|
+
// in flight (pendingCount). A transient limit like rate-limiting, so it
|
|
471
|
+
// isn't persisted (the caller retries once something settles).
|
|
472
|
+
for (const b of buckets) {
|
|
473
|
+
if (b.maxConcurrent !== undefined && (b.pendingCount ?? 0) >= b.maxConcurrent) {
|
|
474
|
+
return reject(
|
|
475
|
+
`${b.dimension}_max_concurrent`,
|
|
476
|
+
`Too many concurrent requests for ${b.dimension} "${b.value}" (max ${b.maxConcurrent})`,
|
|
477
|
+
false
|
|
478
|
+
);
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
// Rate limit is enforced on the `user` dimension (the requests table is
|
|
483
|
+
// indexed by userId, so the 60s window is a bounded index read).
|
|
484
|
+
const userBucket = buckets.find((b) => b.dimension === USER_DIM)!;
|
|
485
|
+
if (userBucket.requestsPerMinute !== undefined) {
|
|
287
486
|
// Bounded read: we only need to know whether non-blocked requests in the
|
|
288
|
-
// window have reached the limit. Reading limit+
|
|
487
|
+
// window have reached the limit. Reading limit+50 non-blocked rows is
|
|
289
488
|
// enough, and .take caps the scan even if the window is flooded. Blocked
|
|
290
489
|
// rows aren't persisted for rate-limit/blocked rejections (see reject),
|
|
291
490
|
// so the window stays small.
|
|
@@ -294,167 +493,163 @@ export const startRequest = mutation({
|
|
|
294
493
|
.withIndex("userId", (q) =>
|
|
295
494
|
q.eq("userId", args.userId).gt("_creationTime", Date.now() - 60_000)
|
|
296
495
|
)
|
|
297
|
-
.take(
|
|
496
|
+
.take(userBucket.requestsPerMinute + 50);
|
|
298
497
|
if (
|
|
299
498
|
recent.filter((r) => r.status !== "blocked").length >=
|
|
300
|
-
|
|
499
|
+
userBucket.requestsPerMinute
|
|
301
500
|
) {
|
|
302
501
|
return reject(
|
|
303
502
|
"rate_limit",
|
|
304
|
-
`Rate limit exceeded for "${args.userId}" (${
|
|
503
|
+
`Rate limit exceeded for "${args.userId}" (${userBucket.requestsPerMinute}/min)`,
|
|
305
504
|
false
|
|
306
505
|
);
|
|
307
506
|
}
|
|
308
507
|
}
|
|
508
|
+
|
|
309
509
|
// Committed + already-reserved in-flight usage + this estimate must fit
|
|
310
|
-
// under
|
|
311
|
-
// serializable isolation makes it a true atomic check-and-reserve
|
|
312
|
-
// enforcement turns a violation into a
|
|
313
|
-
|
|
314
|
-
const
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
totalSpend: user.totalSpendNanos,
|
|
323
|
-
reservedSpendTotal: user.reservedTotalNanos ?? 0,
|
|
324
|
-
tokensToday: userSameDay ? user.tokensToday ?? 0 : 0,
|
|
325
|
-
reservedTokensToday: userSameDay ? user.reservedTodayTokens ?? 0 : 0,
|
|
326
|
-
totalTokens: user.totalTokens,
|
|
327
|
-
reservedTokensTotal: user.reservedTotalTokens ?? 0,
|
|
328
|
-
dailySpendLimitNanos: withBump(
|
|
329
|
-
user.dailySpendLimitNanos,
|
|
330
|
-
user.bumpDayStamp === today ? user.dailyBumpNanos : 0
|
|
331
|
-
),
|
|
332
|
-
lifetimeSpendLimitNanos: withBump(
|
|
333
|
-
user.lifetimeSpendLimitNanos,
|
|
334
|
-
user.lifetimeBumpNanos
|
|
335
|
-
),
|
|
336
|
-
dailyTokenLimit: user.dailyTokenLimit,
|
|
337
|
-
lifetimeTokenLimit: user.lifetimeTokenLimit,
|
|
338
|
-
});
|
|
339
|
-
if (userEval.hard) return reject(userEval.hard.code, userEval.hard.reason);
|
|
340
|
-
warnings.push(...userEval.warnings);
|
|
341
|
-
|
|
342
|
-
let action: Doc<"actions"> | null = null;
|
|
343
|
-
if (args.actionName !== undefined) {
|
|
344
|
-
action = await getOrCreateAction(ctx, args.actionName);
|
|
345
|
-
if (action.disabled) {
|
|
346
|
-
return reject("action_disabled", `Action "${action.name}" is disabled`);
|
|
347
|
-
}
|
|
348
|
-
const aSameDay = action.dayStamp === today;
|
|
349
|
-
const actionEval = evaluateCaps({
|
|
350
|
-
label: "action",
|
|
351
|
-
name: action.name,
|
|
352
|
-
enforcement: action.enforcement ?? "hard",
|
|
510
|
+
// under EACH bucket's cap. Decided and reserved in one transaction, so
|
|
511
|
+
// Convex's serializable isolation makes it a true atomic check-and-reserve
|
|
512
|
+
// across every capped bucket. Soft enforcement turns a violation into a
|
|
513
|
+
// warning instead of a block.
|
|
514
|
+
for (const b of buckets) {
|
|
515
|
+
const sameDay = b.dayStamp === today;
|
|
516
|
+
const sameMonth = b.monthStamp === month;
|
|
517
|
+
const ev = evaluateCaps({
|
|
518
|
+
label: b.dimension,
|
|
519
|
+
name: b.value,
|
|
520
|
+
enforcement: b.enforcement ?? "hard",
|
|
521
|
+
warnAtPct: b.warnAtPct ?? defaultWarnAtPct,
|
|
353
522
|
estCost: est.cost,
|
|
354
523
|
estTokens: est.tokens,
|
|
355
|
-
spendToday:
|
|
356
|
-
reservedSpendToday:
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
524
|
+
spendToday: sameDay ? b.spendTodayNanos : 0,
|
|
525
|
+
reservedSpendToday: sameDay ? b.reservedTodayNanos ?? 0 : 0,
|
|
526
|
+
spendThisMonth: sameMonth ? b.spendThisMonthNanos ?? 0 : 0,
|
|
527
|
+
reservedSpendMonth: sameMonth ? b.reservedMonthNanos ?? 0 : 0,
|
|
528
|
+
totalSpend: b.totalSpendNanos,
|
|
529
|
+
reservedSpendTotal: b.reservedTotalNanos ?? 0,
|
|
530
|
+
tokensToday: sameDay ? b.tokensToday ?? 0 : 0,
|
|
531
|
+
reservedTokensToday: sameDay ? b.reservedTodayTokens ?? 0 : 0,
|
|
532
|
+
tokensThisMonth: sameMonth ? b.tokensThisMonth ?? 0 : 0,
|
|
533
|
+
reservedTokensMonth: sameMonth ? b.reservedMonthTokens ?? 0 : 0,
|
|
534
|
+
totalTokens: b.totalTokens,
|
|
535
|
+
reservedTokensTotal: b.reservedTotalTokens ?? 0,
|
|
363
536
|
dailySpendLimitNanos: withBump(
|
|
364
|
-
|
|
365
|
-
|
|
537
|
+
b.dailySpendLimitNanos,
|
|
538
|
+
b.bumpDayStamp === today ? b.dailyBumpNanos : 0
|
|
539
|
+
),
|
|
540
|
+
monthlySpendLimitNanos: withBump(
|
|
541
|
+
b.monthlySpendLimitNanos,
|
|
542
|
+
b.bumpMonthStamp === month ? b.monthlyBumpNanos : 0
|
|
366
543
|
),
|
|
367
544
|
lifetimeSpendLimitNanos: withBump(
|
|
368
|
-
|
|
369
|
-
|
|
545
|
+
b.lifetimeSpendLimitNanos,
|
|
546
|
+
b.lifetimeBumpNanos
|
|
370
547
|
),
|
|
371
|
-
dailyTokenLimit:
|
|
372
|
-
|
|
548
|
+
dailyTokenLimit: b.dailyTokenLimit,
|
|
549
|
+
monthlyTokenLimit: b.monthlyTokenLimit,
|
|
550
|
+
lifetimeTokenLimit: b.lifetimeTokenLimit,
|
|
373
551
|
});
|
|
374
|
-
if (
|
|
375
|
-
warnings.push(...
|
|
552
|
+
if (ev.hard) return reject(ev.hard.code, ev.hard.reason);
|
|
553
|
+
warnings.push(...ev.warnings);
|
|
554
|
+
notices.push(...ev.notices);
|
|
376
555
|
}
|
|
377
556
|
|
|
378
557
|
// Deployment-wide ("global") spend cap — same reserve-then-settle model and
|
|
379
|
-
// the SAME evaluateCaps logic as the per-
|
|
558
|
+
// the SAME evaluateCaps logic as the per-bucket caps above, so the guarantee
|
|
380
559
|
// statement is uniform: a request is admitted only if
|
|
381
560
|
// committed + reserved + estimate <= cap. The ONE difference is the holder:
|
|
382
|
-
// per-
|
|
561
|
+
// per-bucket caps reserve on a single row (an exact atomic
|
|
383
562
|
// check-and-reserve), while the global holder is a sharded counter for
|
|
384
563
|
// throughput — its committed total is read as an eventually-consistent sum
|
|
385
564
|
// with no cross-request reservation, so a hard global cap can overshoot by a
|
|
386
565
|
// bounded amount under burst. That's the deliberate exactness/throughput
|
|
387
566
|
// trade for a deployment-wide killswitch; it's the only approximate scope.
|
|
388
567
|
if (
|
|
389
|
-
|
|
390
|
-
(
|
|
391
|
-
|
|
568
|
+
settings &&
|
|
569
|
+
(settings.globalDailySpendLimitNanos !== undefined ||
|
|
570
|
+
settings.globalLifetimeSpendLimitNanos !== undefined)
|
|
392
571
|
) {
|
|
393
572
|
const globalEval = evaluateCaps({
|
|
394
573
|
label: "global",
|
|
395
574
|
name: "deployment",
|
|
396
|
-
enforcement:
|
|
575
|
+
enforcement: settings.globalEnforcement ?? "hard",
|
|
576
|
+
warnAtPct: defaultWarnAtPct,
|
|
397
577
|
estCost: est.cost,
|
|
398
578
|
estTokens: est.tokens,
|
|
399
579
|
spendToday: await globalSpend.count(ctx, globalDayKey(today)),
|
|
400
580
|
reservedSpendToday: 0, // sharded holder: no cross-request reservation
|
|
581
|
+
spendThisMonth: 0, // global tracks daily + lifetime only
|
|
582
|
+
reservedSpendMonth: 0,
|
|
401
583
|
totalSpend: await globalSpend.count(ctx, GLOBAL_TOTAL),
|
|
402
584
|
reservedSpendTotal: 0,
|
|
403
585
|
tokensToday: 0,
|
|
404
586
|
reservedTokensToday: 0,
|
|
587
|
+
tokensThisMonth: 0,
|
|
588
|
+
reservedTokensMonth: 0,
|
|
405
589
|
totalTokens: 0,
|
|
406
590
|
reservedTokensTotal: 0,
|
|
407
591
|
dailySpendLimitNanos: withBump(
|
|
408
|
-
|
|
409
|
-
|
|
592
|
+
settings.globalDailySpendLimitNanos,
|
|
593
|
+
settings.globalBumpDayStamp === today ? settings.globalDailyBumpNanos : 0
|
|
410
594
|
),
|
|
411
595
|
lifetimeSpendLimitNanos: withBump(
|
|
412
|
-
|
|
413
|
-
|
|
596
|
+
settings.globalLifetimeSpendLimitNanos,
|
|
597
|
+
settings.globalLifetimeBumpNanos
|
|
414
598
|
),
|
|
415
599
|
});
|
|
416
600
|
if (globalEval.hard) return reject(globalEval.hard.code, globalEval.hard.reason);
|
|
417
601
|
warnings.push(...globalEval.warnings);
|
|
602
|
+
notices.push(...globalEval.notices);
|
|
418
603
|
}
|
|
419
604
|
|
|
420
|
-
// Passed — reserve, but ONLY on
|
|
421
|
-
//
|
|
422
|
-
// (e.g. all callers of one action); with no cap
|
|
423
|
-
// to consult. Totals are still accrued later,
|
|
424
|
-
|
|
425
|
-
|
|
605
|
+
// Passed — reserve, but ONLY on buckets that actually have a cap. Writing an
|
|
606
|
+
// uncapped bucket's row here would serialize every request that shares it
|
|
607
|
+
// (e.g. all callers of one action, or every request in one env); with no cap
|
|
608
|
+
// there's no reserved amount to consult. Totals are still accrued later,
|
|
609
|
+
// asynchronously, in foldOne — for every bucket, capped or not.
|
|
610
|
+
for (const b of buckets) {
|
|
611
|
+
if (!needsReserve(b)) continue;
|
|
612
|
+
const sameDay = b.dayStamp === today;
|
|
613
|
+
const sameMonth = b.monthStamp === month;
|
|
614
|
+
await ctx.db.patch(b._id, {
|
|
426
615
|
dayStamp: today,
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
dayStamp: today,
|
|
440
|
-
spendTodayNanos: aSameDay ? action.spendTodayNanos : 0,
|
|
441
|
-
tokensToday: aSameDay ? action.tokensToday ?? 0 : 0,
|
|
442
|
-
reservedTodayNanos: (aSameDay ? action.reservedTodayNanos ?? 0 : 0) + est.cost,
|
|
443
|
-
reservedTotalNanos: (action.reservedTotalNanos ?? 0) + est.cost,
|
|
444
|
-
reservedTodayTokens: (aSameDay ? action.reservedTodayTokens ?? 0 : 0) + est.tokens,
|
|
445
|
-
reservedTotalTokens: (action.reservedTotalTokens ?? 0) + est.tokens,
|
|
446
|
-
pendingCount: (action.pendingCount ?? 0) + 1,
|
|
616
|
+
monthStamp: month,
|
|
617
|
+
spendTodayNanos: sameDay ? b.spendTodayNanos : 0,
|
|
618
|
+
tokensToday: sameDay ? b.tokensToday ?? 0 : 0,
|
|
619
|
+
spendThisMonthNanos: sameMonth ? b.spendThisMonthNanos ?? 0 : 0,
|
|
620
|
+
tokensThisMonth: sameMonth ? b.tokensThisMonth ?? 0 : 0,
|
|
621
|
+
reservedTodayNanos: (sameDay ? b.reservedTodayNanos ?? 0 : 0) + est.cost,
|
|
622
|
+
reservedMonthNanos: (sameMonth ? b.reservedMonthNanos ?? 0 : 0) + est.cost,
|
|
623
|
+
reservedTotalNanos: (b.reservedTotalNanos ?? 0) + est.cost,
|
|
624
|
+
reservedTodayTokens: (sameDay ? b.reservedTodayTokens ?? 0 : 0) + est.tokens,
|
|
625
|
+
reservedMonthTokens: (sameMonth ? b.reservedMonthTokens ?? 0 : 0) + est.tokens,
|
|
626
|
+
reservedTotalTokens: (b.reservedTotalTokens ?? 0) + est.tokens,
|
|
627
|
+
pendingCount: (b.pendingCount ?? 0) + 1,
|
|
447
628
|
});
|
|
448
629
|
}
|
|
449
630
|
const requestId = await ctx.db.insert("requests", {
|
|
450
|
-
|
|
631
|
+
userId: args.userId,
|
|
632
|
+
actionName: args.actionName,
|
|
633
|
+
...(extraTags.length ? { tags: extraTags } : {}),
|
|
634
|
+
model: args.model,
|
|
635
|
+
messages: args.messages,
|
|
636
|
+
rerunOf: args.rerunOf,
|
|
451
637
|
status: "pending",
|
|
452
638
|
estimatedNanos: est.cost,
|
|
453
639
|
estimatedTokens: est.tokens,
|
|
454
640
|
...(priceInfo.known ? {} : { unpricedModel: true }),
|
|
455
641
|
...(warnings.length > 0 ? { overBudget: true } : {}),
|
|
456
642
|
});
|
|
457
|
-
|
|
643
|
+
// Reverse index so the request log can be filtered by any extra tag
|
|
644
|
+
// dimension (user/action are already indexed on the requests table).
|
|
645
|
+
for (const t of extraTags) {
|
|
646
|
+
await ctx.db.insert("requestTags", {
|
|
647
|
+
dimension: t.dimension,
|
|
648
|
+
value: t.value,
|
|
649
|
+
requestId,
|
|
650
|
+
});
|
|
651
|
+
}
|
|
652
|
+
return { allowed: true as const, requestId, warnings, notices };
|
|
458
653
|
},
|
|
459
654
|
});
|
|
460
655
|
|
|
@@ -466,6 +661,10 @@ export const finishRequest = mutation({
|
|
|
466
661
|
promptTokens: v.optional(v.number()),
|
|
467
662
|
completionTokens: v.optional(v.number()),
|
|
468
663
|
cachedTokens: v.optional(v.number()),
|
|
664
|
+
// Authoritative cost from the gateway, if it ever reports one. When present
|
|
665
|
+
// it's recorded verbatim (no token-based estimate); when absent we price
|
|
666
|
+
// from tokens (cache-aware). Wired now so adopting a real cost is one line.
|
|
667
|
+
costNanos: v.optional(v.number()),
|
|
469
668
|
latencyMs: v.optional(v.number()),
|
|
470
669
|
},
|
|
471
670
|
returns: v.object({ costNanos: v.number() }),
|
|
@@ -489,10 +688,17 @@ export const finishRequest = mutation({
|
|
|
489
688
|
const promptTokens = Math.max(0, args.promptTokens ?? 0);
|
|
490
689
|
const completionTokens = Math.max(0, args.completionTokens ?? 0);
|
|
491
690
|
const cachedTokens = Math.min(promptTokens, Math.max(0, args.cachedTokens ?? 0));
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
691
|
+
// Prefer an authoritative gateway cost when supplied; otherwise price from
|
|
692
|
+
// tokens, discounting the cached (prompt-cache-read) slice of the prompt.
|
|
693
|
+
const costNanos =
|
|
694
|
+
args.costNanos !== undefined && args.costNanos >= 0
|
|
695
|
+
? Math.round(args.costNanos)
|
|
696
|
+
: settleCost(
|
|
697
|
+
promptTokens,
|
|
698
|
+
cachedTokens,
|
|
699
|
+
completionTokens,
|
|
700
|
+
await getPrice(ctx, request.model)
|
|
701
|
+
);
|
|
496
702
|
|
|
497
703
|
// Durable write to the request's OWN row only — uncontended, so it always
|
|
498
704
|
// lands. `settled: false` hands it to the fold step; the row is never left
|
|
@@ -509,7 +715,7 @@ export const finishRequest = mutation({
|
|
|
509
715
|
settled: false,
|
|
510
716
|
});
|
|
511
717
|
|
|
512
|
-
// Fold into the (hot)
|
|
718
|
+
// Fold into the (hot) per-bucket counters in a separate mutation. If it
|
|
513
719
|
// exhausts retries under contention, the cron reconciler picks it up.
|
|
514
720
|
await ctx.scheduler.runAfter(0, internal.lib.foldTotals, {
|
|
515
721
|
requestId: args.requestId,
|
|
@@ -518,9 +724,9 @@ export const finishRequest = mutation({
|
|
|
518
724
|
},
|
|
519
725
|
});
|
|
520
726
|
|
|
521
|
-
// Fold one finished request into
|
|
522
|
-
// reservation. Idempotent: guarded by `settled` so the scheduler
|
|
523
|
-
// reconciler can never double-count.
|
|
727
|
+
// Fold one finished request into every attributed bucket's running totals,
|
|
728
|
+
// releasing its reservation. Idempotent: guarded by `settled` so the scheduler
|
|
729
|
+
// and the cron reconciler can never double-count.
|
|
524
730
|
async function foldOne(ctx: MutationCtx, req: Doc<"requests"> | null) {
|
|
525
731
|
if (!req || req.settled !== false) return;
|
|
526
732
|
const actual = req.costNanos ?? 0;
|
|
@@ -528,48 +734,44 @@ async function foldOne(ctx: MutationCtx, req: Doc<"requests"> | null) {
|
|
|
528
734
|
const tokens = (req.promptTokens ?? 0) + (req.completionTokens ?? 0);
|
|
529
735
|
const estTokens = req.estimatedTokens ?? 0;
|
|
530
736
|
const today = dayStamp();
|
|
737
|
+
const month = monthStamp();
|
|
531
738
|
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
pendingCount: Math.max(0, (user.pendingCount ?? 0) - 1),
|
|
546
|
-
});
|
|
547
|
-
|
|
548
|
-
if (req.actionName !== undefined) {
|
|
549
|
-
const action = await getOrCreateAction(ctx, req.actionName);
|
|
550
|
-
const aSameDay = action.dayStamp === today;
|
|
551
|
-
await ctx.db.patch(action._id, {
|
|
552
|
-
totalSpendNanos: action.totalSpendNanos + actual,
|
|
553
|
-
totalRequests: action.totalRequests + 1,
|
|
554
|
-
totalTokens: action.totalTokens + tokens,
|
|
739
|
+
// Accrue into every attributed bucket (user, action, and each tag) — capped
|
|
740
|
+
// or not. Buckets that never held a reservation have their reserved fields
|
|
741
|
+
// clamped at 0 by Math.max, so subtracting an estimate is a harmless no-op.
|
|
742
|
+
// Also write the durable per-(bucket, day/month) usage rows that survive
|
|
743
|
+
// request retention, so spend history outlives the raw request log.
|
|
744
|
+
for (const t of requestBuckets(req.userId, req.actionName, req.tags)) {
|
|
745
|
+
const b = await getOrCreateBucket(ctx, t.dimension, t.value);
|
|
746
|
+
const sameDay = b.dayStamp === today;
|
|
747
|
+
const sameMonth = b.monthStamp === month;
|
|
748
|
+
await ctx.db.patch(b._id, {
|
|
749
|
+
totalSpendNanos: b.totalSpendNanos + actual,
|
|
750
|
+
totalRequests: b.totalRequests + 1,
|
|
751
|
+
totalTokens: b.totalTokens + tokens,
|
|
555
752
|
dayStamp: today,
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
753
|
+
monthStamp: month,
|
|
754
|
+
spendTodayNanos: (sameDay ? b.spendTodayNanos : 0) + actual,
|
|
755
|
+
tokensToday: (sameDay ? b.tokensToday ?? 0 : 0) + tokens,
|
|
756
|
+
spendThisMonthNanos: (sameMonth ? b.spendThisMonthNanos ?? 0 : 0) + actual,
|
|
757
|
+
tokensThisMonth: (sameMonth ? b.tokensThisMonth ?? 0 : 0) + tokens,
|
|
758
|
+
reservedTodayNanos: Math.max(0, (sameDay ? b.reservedTodayNanos ?? 0 : 0) - estCost),
|
|
759
|
+
reservedMonthNanos: Math.max(0, (sameMonth ? b.reservedMonthNanos ?? 0 : 0) - estCost),
|
|
760
|
+
reservedTotalNanos: Math.max(0, (b.reservedTotalNanos ?? 0) - estCost),
|
|
761
|
+
reservedTodayTokens: Math.max(0, (sameDay ? b.reservedTodayTokens ?? 0 : 0) - estTokens),
|
|
762
|
+
reservedMonthTokens: Math.max(0, (sameMonth ? b.reservedMonthTokens ?? 0 : 0) - estTokens),
|
|
763
|
+
reservedTotalTokens: Math.max(0, (b.reservedTotalTokens ?? 0) - estTokens),
|
|
764
|
+
pendingCount: Math.max(0, (b.pendingCount ?? 0) - 1),
|
|
563
765
|
});
|
|
766
|
+
await addUsage(ctx, t.dimension, t.value, "day", today, actual, tokens, 1);
|
|
767
|
+
await addUsage(ctx, t.dimension, t.value, "month", month, actual, tokens, 1);
|
|
564
768
|
}
|
|
769
|
+
|
|
565
770
|
// Deployment-wide totals via the sharded counter (only when a global cap is
|
|
566
771
|
// configured — otherwise skip the writes entirely). Distributed across shards,
|
|
567
772
|
// so this does not serialize on a single row.
|
|
568
773
|
if (actual > 0) {
|
|
569
|
-
const settings = await ctx
|
|
570
|
-
.query("settings")
|
|
571
|
-
.withIndex("key", (q) => q.eq("key", "singleton"))
|
|
572
|
-
.unique();
|
|
774
|
+
const settings = await getSettings(ctx);
|
|
573
775
|
if (
|
|
574
776
|
settings &&
|
|
575
777
|
(settings.globalDailySpendLimitNanos !== undefined ||
|
|
@@ -641,6 +843,7 @@ export const reconcile = internalMutation({
|
|
|
641
843
|
// Only rows that are done and accounted: folded (settled === true) or a
|
|
642
844
|
// blocked attempt (never needs folding). Never a pending/unfolded row.
|
|
643
845
|
if (req.settled === true || req.status === "blocked") {
|
|
846
|
+
await deleteRequestTags(ctx, req._id);
|
|
644
847
|
await ctx.db.delete(req._id);
|
|
645
848
|
purged++;
|
|
646
849
|
}
|
|
@@ -687,10 +890,19 @@ export const getRequest = query({
|
|
|
687
890
|
});
|
|
688
891
|
|
|
689
892
|
export const listRequests = query({
|
|
690
|
-
args: {
|
|
893
|
+
args: {
|
|
894
|
+
userId: v.optional(v.string()),
|
|
895
|
+
// Filter by any attribution dimension (user/action indexed on the request;
|
|
896
|
+
// custom tag dimensions resolved via the requestTags reverse index).
|
|
897
|
+
dimension: v.optional(v.string()),
|
|
898
|
+
value: v.optional(v.string()),
|
|
899
|
+
limit: v.optional(v.number()),
|
|
900
|
+
},
|
|
691
901
|
handler: async (ctx, args) => {
|
|
692
902
|
const limit = args.limit ?? 50;
|
|
693
|
-
|
|
903
|
+
const dim = args.dimension;
|
|
904
|
+
const val = args.value ?? args.userId;
|
|
905
|
+
if (dim === undefined && args.userId !== undefined) {
|
|
694
906
|
const userId = args.userId;
|
|
695
907
|
return await ctx.db
|
|
696
908
|
.query("requests")
|
|
@@ -698,161 +910,248 @@ export const listRequests = query({
|
|
|
698
910
|
.order("desc")
|
|
699
911
|
.take(limit);
|
|
700
912
|
}
|
|
913
|
+
if (dim !== undefined && val !== undefined) {
|
|
914
|
+
if (dim === USER_DIM) {
|
|
915
|
+
return await ctx.db
|
|
916
|
+
.query("requests")
|
|
917
|
+
.withIndex("userId", (q) => q.eq("userId", val))
|
|
918
|
+
.order("desc")
|
|
919
|
+
.take(limit);
|
|
920
|
+
}
|
|
921
|
+
if (dim === ACTION_DIM) {
|
|
922
|
+
return await ctx.db
|
|
923
|
+
.query("requests")
|
|
924
|
+
.withIndex("actionName", (q) => q.eq("actionName", val))
|
|
925
|
+
.order("desc")
|
|
926
|
+
.take(limit);
|
|
927
|
+
}
|
|
928
|
+
// Custom tag dimension: walk the reverse index, then fetch each request.
|
|
929
|
+
const tagRows = await ctx.db
|
|
930
|
+
.query("requestTags")
|
|
931
|
+
.withIndex("dim_value", (q) => q.eq("dimension", dim).eq("value", val))
|
|
932
|
+
.order("desc")
|
|
933
|
+
.take(limit);
|
|
934
|
+
const rows = await Promise.all(tagRows.map((t) => ctx.db.get(t.requestId)));
|
|
935
|
+
return rows.filter((r): r is Doc<"requests"> => r !== null);
|
|
936
|
+
}
|
|
701
937
|
return await ctx.db.query("requests").order("desc").take(limit);
|
|
702
938
|
},
|
|
703
939
|
});
|
|
704
940
|
|
|
705
941
|
const ADMIN_LIST_CAP = 2000;
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
942
|
+
|
|
943
|
+
// List budget buckets, optionally filtered to one dimension ("user", "action",
|
|
944
|
+
// or any custom tag dimension). Today's spend is zeroed for stale day windows.
|
|
945
|
+
export const listBuckets = query({
|
|
946
|
+
args: { dimension: v.optional(v.string()) },
|
|
947
|
+
handler: async (ctx, args) => {
|
|
709
948
|
// Bounded to avoid an unbounded full-table scan on this reactive query.
|
|
710
|
-
// Paginate (ctx.db.query("
|
|
711
|
-
const
|
|
949
|
+
// Paginate (ctx.db.query("buckets").paginate(...)) for larger deployments.
|
|
950
|
+
const rows =
|
|
951
|
+
args.dimension !== undefined
|
|
952
|
+
? await ctx.db
|
|
953
|
+
.query("buckets")
|
|
954
|
+
.withIndex("dimension", (q) => q.eq("dimension", args.dimension!))
|
|
955
|
+
.take(ADMIN_LIST_CAP)
|
|
956
|
+
: await ctx.db.query("buckets").take(ADMIN_LIST_CAP);
|
|
712
957
|
const today = dayStamp();
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
958
|
+
const month = monthStamp();
|
|
959
|
+
return rows.map((b) => ({
|
|
960
|
+
...b,
|
|
961
|
+
spendTodayNanos: b.dayStamp === today ? b.spendTodayNanos : 0,
|
|
962
|
+
spendThisMonthNanos: b.monthStamp === month ? b.spendThisMonthNanos ?? 0 : 0,
|
|
716
963
|
}));
|
|
717
964
|
},
|
|
718
965
|
});
|
|
719
966
|
|
|
720
|
-
export const
|
|
967
|
+
export const getBucket = query({
|
|
968
|
+
args: { dimension: v.string(), value: v.string() },
|
|
969
|
+
handler: async (ctx, args) => {
|
|
970
|
+
const b = await getBucketDoc(ctx as any, args.dimension, args.value);
|
|
971
|
+
if (!b) return null;
|
|
972
|
+
const today = dayStamp();
|
|
973
|
+
const month = monthStamp();
|
|
974
|
+
return {
|
|
975
|
+
...b,
|
|
976
|
+
spendTodayNanos: b.dayStamp === today ? b.spendTodayNanos : 0,
|
|
977
|
+
spendThisMonthNanos: b.monthStamp === month ? b.spendThisMonthNanos ?? 0 : 0,
|
|
978
|
+
};
|
|
979
|
+
},
|
|
980
|
+
});
|
|
981
|
+
|
|
982
|
+
// Set a bucket's limits/controls. `user` and `action` are just dimensions here;
|
|
983
|
+
// the client's ai.users / ai.actions namespaces are thin wrappers over this.
|
|
984
|
+
export const setBucketLimits = mutation({
|
|
721
985
|
args: {
|
|
722
|
-
|
|
986
|
+
dimension: v.string(),
|
|
987
|
+
value: v.string(),
|
|
723
988
|
requestsPerMinute: v.optional(v.number()),
|
|
989
|
+
maxConcurrent: v.optional(v.number()),
|
|
724
990
|
dailySpendLimitNanos: v.optional(v.number()),
|
|
991
|
+
monthlySpendLimitNanos: v.optional(v.number()),
|
|
725
992
|
lifetimeSpendLimitNanos: v.optional(v.number()),
|
|
726
993
|
dailyTokenLimit: v.optional(v.number()),
|
|
994
|
+
monthlyTokenLimit: v.optional(v.number()),
|
|
727
995
|
lifetimeTokenLimit: v.optional(v.number()),
|
|
996
|
+
warnAtPct: v.optional(v.number()),
|
|
728
997
|
enforcement: v.optional(v.union(v.literal("hard"), v.literal("soft"))),
|
|
729
998
|
blocked: v.optional(v.boolean()),
|
|
730
999
|
},
|
|
731
1000
|
returns: v.null(),
|
|
732
1001
|
handler: async (ctx, args) => {
|
|
733
|
-
const
|
|
734
|
-
const {
|
|
735
|
-
await ctx.db.patch(
|
|
1002
|
+
const bucket = await getOrCreateBucket(ctx, args.dimension, args.value);
|
|
1003
|
+
const { dimension: _d, value: _v, ...limits } = args;
|
|
1004
|
+
await ctx.db.patch(bucket._id, limits);
|
|
736
1005
|
return null;
|
|
737
1006
|
},
|
|
738
1007
|
});
|
|
739
1008
|
|
|
740
|
-
// Delete a user and all their request rows (e.g. account deletion / GDPR).
|
|
741
|
-
// Deletes in bounded batches and self-reschedules so it never exceeds the
|
|
742
|
-
// per-transaction document limit — a user with millions of rows still deletes.
|
|
743
|
-
const DELETE_BATCH = 500;
|
|
744
|
-
export const deleteUser = mutation({
|
|
745
|
-
args: { userId: v.string() },
|
|
746
|
-
returns: v.object({ deletedThisBatch: v.number(), done: v.boolean() }),
|
|
747
|
-
handler: async (ctx, { userId }) => {
|
|
748
|
-
const rows = await ctx.db
|
|
749
|
-
.query("requests")
|
|
750
|
-
.withIndex("userId", (q) => q.eq("userId", userId))
|
|
751
|
-
.take(DELETE_BATCH);
|
|
752
|
-
for (const r of rows) await ctx.db.delete(r._id);
|
|
753
|
-
if (rows.length === DELETE_BATCH) {
|
|
754
|
-
// More to go — continue in a fresh transaction.
|
|
755
|
-
await ctx.scheduler.runAfter(0, api.lib.deleteUser, { userId });
|
|
756
|
-
return { deletedThisBatch: rows.length, done: false };
|
|
757
|
-
}
|
|
758
|
-
// Last batch: remove the user row itself.
|
|
759
|
-
const user = await ctx.db
|
|
760
|
-
.query("users")
|
|
761
|
-
.withIndex("userId", (q) => q.eq("userId", userId))
|
|
762
|
-
.unique();
|
|
763
|
-
if (user) await ctx.db.delete(user._id);
|
|
764
|
-
return { deletedThisBatch: rows.length + (user ? 1 : 0), done: true };
|
|
765
|
-
},
|
|
766
|
-
});
|
|
767
|
-
|
|
768
|
-
export const listActions = query({
|
|
769
|
-
args: {},
|
|
770
|
-
handler: async (ctx) => {
|
|
771
|
-
const actions = await ctx.db.query("actions").take(ADMIN_LIST_CAP);
|
|
772
|
-
const today = dayStamp();
|
|
773
|
-
return actions.map((a) => ({
|
|
774
|
-
...a,
|
|
775
|
-
spendTodayNanos: a.dayStamp === today ? a.spendTodayNanos : 0,
|
|
776
|
-
}));
|
|
777
|
-
},
|
|
778
|
-
});
|
|
779
|
-
|
|
780
1009
|
const vBumpArgs = {
|
|
781
1010
|
dailyNanos: v.optional(v.number()),
|
|
1011
|
+
monthlyNanos: v.optional(v.number()),
|
|
782
1012
|
lifetimeNanos: v.optional(v.number()),
|
|
783
1013
|
};
|
|
784
1014
|
|
|
785
|
-
// One-time "approve another $X" bumps, added on top of
|
|
786
|
-
// changing it. Daily bumps apply to
|
|
787
|
-
|
|
788
|
-
|
|
1015
|
+
// One-time "approve another $X" bumps, added on top of a bucket's standing cap
|
|
1016
|
+
// without changing it. Daily/monthly bumps apply to the current window only;
|
|
1017
|
+
// lifetime bumps persist.
|
|
1018
|
+
export const bumpBucket = mutation({
|
|
1019
|
+
args: { dimension: v.string(), value: v.string(), ...vBumpArgs },
|
|
789
1020
|
returns: v.null(),
|
|
790
|
-
handler: async (ctx, {
|
|
791
|
-
const
|
|
1021
|
+
handler: async (ctx, { dimension, value, dailyNanos, monthlyNanos, lifetimeNanos }) => {
|
|
1022
|
+
const bucket = await getOrCreateBucket(ctx, dimension, value);
|
|
792
1023
|
const today = dayStamp();
|
|
793
|
-
const
|
|
794
|
-
|
|
1024
|
+
const month = monthStamp();
|
|
1025
|
+
const curDaily =
|
|
1026
|
+
bucket.bumpDayStamp === today ? bucket.dailyBumpNanos ?? 0 : 0;
|
|
1027
|
+
const curMonthly =
|
|
1028
|
+
bucket.bumpMonthStamp === month ? bucket.monthlyBumpNanos ?? 0 : 0;
|
|
1029
|
+
await ctx.db.patch(bucket._id, {
|
|
795
1030
|
bumpDayStamp: today,
|
|
796
1031
|
dailyBumpNanos: curDaily + (dailyNanos ?? 0),
|
|
797
|
-
|
|
1032
|
+
bumpMonthStamp: month,
|
|
1033
|
+
monthlyBumpNanos: curMonthly + (monthlyNanos ?? 0),
|
|
1034
|
+
lifetimeBumpNanos: (bucket.lifetimeBumpNanos ?? 0) + (lifetimeNanos ?? 0),
|
|
798
1035
|
});
|
|
799
1036
|
return null;
|
|
800
1037
|
},
|
|
801
1038
|
});
|
|
802
1039
|
|
|
803
|
-
|
|
804
|
-
|
|
1040
|
+
// Manually credit or debit a bucket (comp a user, correct an overcharge).
|
|
1041
|
+
// Negative deltaNanos = credit/refund, positive = extra charge. Adjusts the
|
|
1042
|
+
// live day/month/lifetime windows AND the durable usage history, and records an
|
|
1043
|
+
// audit row. Does not touch the global sharded total or reservations.
|
|
1044
|
+
export const adjustBucket = mutation({
|
|
1045
|
+
args: {
|
|
1046
|
+
dimension: v.string(),
|
|
1047
|
+
value: v.string(),
|
|
1048
|
+
deltaNanos: v.number(),
|
|
1049
|
+
tokens: v.optional(v.number()),
|
|
1050
|
+
reason: v.optional(v.string()),
|
|
1051
|
+
},
|
|
805
1052
|
returns: v.null(),
|
|
806
|
-
handler: async (ctx, {
|
|
807
|
-
const
|
|
1053
|
+
handler: async (ctx, { dimension, value, deltaNanos, tokens, reason }) => {
|
|
1054
|
+
const b = await getOrCreateBucket(ctx, dimension, value);
|
|
808
1055
|
const today = dayStamp();
|
|
809
|
-
const
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
1056
|
+
const month = monthStamp();
|
|
1057
|
+
const dSame = b.dayStamp === today;
|
|
1058
|
+
const mSame = b.monthStamp === month;
|
|
1059
|
+
const dt = tokens ?? 0;
|
|
1060
|
+
await ctx.db.patch(b._id, {
|
|
1061
|
+
totalSpendNanos: Math.max(0, b.totalSpendNanos + deltaNanos),
|
|
1062
|
+
totalTokens: Math.max(0, b.totalTokens + dt),
|
|
1063
|
+
dayStamp: today,
|
|
1064
|
+
monthStamp: month,
|
|
1065
|
+
spendTodayNanos: Math.max(0, (dSame ? b.spendTodayNanos : 0) + deltaNanos),
|
|
1066
|
+
tokensToday: Math.max(0, (dSame ? b.tokensToday ?? 0 : 0) + dt),
|
|
1067
|
+
spendThisMonthNanos: Math.max(0, (mSame ? b.spendThisMonthNanos ?? 0 : 0) + deltaNanos),
|
|
1068
|
+
tokensThisMonth: Math.max(0, (mSame ? b.tokensThisMonth ?? 0 : 0) + dt),
|
|
814
1069
|
});
|
|
1070
|
+
await ctx.db.insert("adjustments", { dimension, value, deltaNanos, tokens: dt, reason });
|
|
1071
|
+
await addUsage(ctx, dimension, value, "day", today, deltaNanos, dt, 0);
|
|
1072
|
+
await addUsage(ctx, dimension, value, "month", month, deltaNanos, dt, 0);
|
|
815
1073
|
return null;
|
|
816
1074
|
},
|
|
817
1075
|
});
|
|
818
1076
|
|
|
819
|
-
export const
|
|
820
|
-
args:
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
globalBumpDayStamp: today,
|
|
828
|
-
globalDailyBumpNanos: curDaily + (dailyNanos ?? 0),
|
|
829
|
-
globalLifetimeBumpNanos: (s?.globalLifetimeBumpNanos ?? 0) + (lifetimeNanos ?? 0),
|
|
830
|
-
};
|
|
831
|
-
if (s) await ctx.db.patch(s._id, patch);
|
|
832
|
-
else await ctx.db.insert("settings", { key: "singleton", ...patch });
|
|
833
|
-
return null;
|
|
834
|
-
},
|
|
1077
|
+
export const listAdjustments = query({
|
|
1078
|
+
args: { dimension: v.string(), value: v.string(), limit: v.optional(v.number()) },
|
|
1079
|
+
handler: async (ctx, { dimension, value, limit }) =>
|
|
1080
|
+
ctx.db
|
|
1081
|
+
.query("adjustments")
|
|
1082
|
+
.withIndex("dim_value", (q) => q.eq("dimension", dimension).eq("value", value))
|
|
1083
|
+
.order("desc")
|
|
1084
|
+
.take(limit ?? 50),
|
|
835
1085
|
});
|
|
836
1086
|
|
|
837
|
-
|
|
1087
|
+
// Durable spend history for a bucket: per-day or per-month rows, newest first.
|
|
1088
|
+
// Survives request retention.
|
|
1089
|
+
export const usageHistory = query({
|
|
838
1090
|
args: {
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
lifetimeTokenLimit: v.optional(v.number()),
|
|
844
|
-
enforcement: v.optional(v.union(v.literal("hard"), v.literal("soft"))),
|
|
845
|
-
disabled: v.optional(v.boolean()),
|
|
1091
|
+
dimension: v.string(),
|
|
1092
|
+
value: v.string(),
|
|
1093
|
+
period: v.union(v.literal("day"), v.literal("month")),
|
|
1094
|
+
limit: v.optional(v.number()),
|
|
846
1095
|
},
|
|
1096
|
+
handler: async (ctx, { dimension, value, period, limit }) =>
|
|
1097
|
+
ctx.db
|
|
1098
|
+
.query("usage")
|
|
1099
|
+
.withIndex("bucket_period_stamp", (q) =>
|
|
1100
|
+
q.eq("dimension", dimension).eq("value", value).eq("period", period)
|
|
1101
|
+
)
|
|
1102
|
+
.order("desc")
|
|
1103
|
+
.take(limit ?? 90),
|
|
1104
|
+
});
|
|
1105
|
+
|
|
1106
|
+
// Deployment-wide default threshold for approaching-limit alerts (fraction of a
|
|
1107
|
+
// cap, e.g. 0.8). Buckets can override with their own warnAtPct.
|
|
1108
|
+
export const setAlertDefaults = mutation({
|
|
1109
|
+
args: { warnAtPct: v.optional(v.number()) },
|
|
847
1110
|
returns: v.null(),
|
|
848
|
-
handler: async (ctx,
|
|
849
|
-
const
|
|
850
|
-
|
|
851
|
-
await ctx.db.
|
|
1111
|
+
handler: async (ctx, { warnAtPct }) => {
|
|
1112
|
+
const existing = await getSettings(ctx);
|
|
1113
|
+
if (existing) await ctx.db.patch(existing._id, { defaultWarnAtPct: warnAtPct });
|
|
1114
|
+
else await ctx.db.insert("settings", { key: "singleton", defaultWarnAtPct: warnAtPct });
|
|
852
1115
|
return null;
|
|
853
1116
|
},
|
|
854
1117
|
});
|
|
855
1118
|
|
|
1119
|
+
// Delete a bucket and (for the `user` dimension) all of that user's request
|
|
1120
|
+
// rows — e.g. account deletion / GDPR. Deletes requests in bounded batches and
|
|
1121
|
+
// self-reschedules so it never exceeds the per-transaction document limit.
|
|
1122
|
+
const DELETE_BATCH = 500;
|
|
1123
|
+
export const deleteBucket = mutation({
|
|
1124
|
+
args: { dimension: v.string(), value: v.string() },
|
|
1125
|
+
returns: v.object({ deletedThisBatch: v.number(), done: v.boolean() }),
|
|
1126
|
+
handler: async (ctx, { dimension, value }) => {
|
|
1127
|
+
// Only the user dimension owns request rows (indexed by userId). Other
|
|
1128
|
+
// dimensions just drop their budget-holder row.
|
|
1129
|
+
if (dimension === USER_DIM) {
|
|
1130
|
+
const rows = await ctx.db
|
|
1131
|
+
.query("requests")
|
|
1132
|
+
.withIndex("userId", (q) => q.eq("userId", value))
|
|
1133
|
+
.take(DELETE_BATCH);
|
|
1134
|
+
for (const r of rows) {
|
|
1135
|
+
await deleteRequestTags(ctx, r._id);
|
|
1136
|
+
await ctx.db.delete(r._id);
|
|
1137
|
+
}
|
|
1138
|
+
if (rows.length === DELETE_BATCH) {
|
|
1139
|
+
await ctx.scheduler.runAfter(0, api.lib.deleteBucket, {
|
|
1140
|
+
dimension,
|
|
1141
|
+
value,
|
|
1142
|
+
});
|
|
1143
|
+
return { deletedThisBatch: rows.length, done: false };
|
|
1144
|
+
}
|
|
1145
|
+
const bucket = await getBucketDoc(ctx, dimension, value);
|
|
1146
|
+
if (bucket) await ctx.db.delete(bucket._id);
|
|
1147
|
+
return { deletedThisBatch: rows.length + (bucket ? 1 : 0), done: true };
|
|
1148
|
+
}
|
|
1149
|
+
const bucket = await getBucketDoc(ctx, dimension, value);
|
|
1150
|
+
if (bucket) await ctx.db.delete(bucket._id);
|
|
1151
|
+
return { deletedThisBatch: bucket ? 1 : 0, done: true };
|
|
1152
|
+
},
|
|
1153
|
+
});
|
|
1154
|
+
|
|
856
1155
|
export const getModelPolicy = query({
|
|
857
1156
|
args: {},
|
|
858
1157
|
returns: v.object({
|
|
@@ -920,6 +1219,24 @@ export const setGlobalLimits = mutation({
|
|
|
920
1219
|
},
|
|
921
1220
|
});
|
|
922
1221
|
|
|
1222
|
+
export const bumpGlobal = mutation({
|
|
1223
|
+
args: vBumpArgs,
|
|
1224
|
+
returns: v.null(),
|
|
1225
|
+
handler: async (ctx, { dailyNanos, lifetimeNanos }) => {
|
|
1226
|
+
const today = dayStamp();
|
|
1227
|
+
const s = await getSettings(ctx);
|
|
1228
|
+
const curDaily = s?.globalBumpDayStamp === today ? s?.globalDailyBumpNanos ?? 0 : 0;
|
|
1229
|
+
const patch = {
|
|
1230
|
+
globalBumpDayStamp: today,
|
|
1231
|
+
globalDailyBumpNanos: curDaily + (dailyNanos ?? 0),
|
|
1232
|
+
globalLifetimeBumpNanos: (s?.globalLifetimeBumpNanos ?? 0) + (lifetimeNanos ?? 0),
|
|
1233
|
+
};
|
|
1234
|
+
if (s) await ctx.db.patch(s._id, patch);
|
|
1235
|
+
else await ctx.db.insert("settings", { key: "singleton", ...patch });
|
|
1236
|
+
return null;
|
|
1237
|
+
},
|
|
1238
|
+
});
|
|
1239
|
+
|
|
923
1240
|
export const setModelPolicy = mutation({
|
|
924
1241
|
args: {
|
|
925
1242
|
mode: v.union(
|
|
@@ -953,12 +1270,18 @@ export const setPrice = mutation({
|
|
|
953
1270
|
model: v.string(),
|
|
954
1271
|
inputNanosPerMTok: v.number(),
|
|
955
1272
|
outputNanosPerMTok: v.number(),
|
|
1273
|
+
// optional cache-read rate; if omitted, a default discount off input applies
|
|
1274
|
+
cachedNanosPerMTok: v.optional(v.number()),
|
|
956
1275
|
},
|
|
957
1276
|
returns: v.null(),
|
|
958
1277
|
handler: async (ctx, args) => {
|
|
959
1278
|
// Negative prices would make costOf return a negative cost, which folds
|
|
960
1279
|
// into totals as a spend *refund* — pushing a user back under their cap.
|
|
961
|
-
if (
|
|
1280
|
+
if (
|
|
1281
|
+
args.inputNanosPerMTok < 0 ||
|
|
1282
|
+
args.outputNanosPerMTok < 0 ||
|
|
1283
|
+
(args.cachedNanosPerMTok ?? 0) < 0
|
|
1284
|
+
) {
|
|
962
1285
|
throw new Error("Prices must be non-negative");
|
|
963
1286
|
}
|
|
964
1287
|
const existing = await ctx.db
|
|
@@ -978,7 +1301,10 @@ export const listPrices = query({
|
|
|
978
1301
|
args: {},
|
|
979
1302
|
handler: async (ctx) => {
|
|
980
1303
|
const overrides = await ctx.db.query("prices").collect();
|
|
981
|
-
const merged: Record<
|
|
1304
|
+
const merged: Record<
|
|
1305
|
+
string,
|
|
1306
|
+
{ input: number; output: number; cached?: number; overridden: boolean }
|
|
1307
|
+
> = {};
|
|
982
1308
|
for (const [model, p] of Object.entries(DEFAULT_PRICES)) {
|
|
983
1309
|
merged[model] = { ...p, overridden: false };
|
|
984
1310
|
}
|
|
@@ -986,6 +1312,7 @@ export const listPrices = query({
|
|
|
986
1312
|
merged[o.model] = {
|
|
987
1313
|
input: o.inputNanosPerMTok,
|
|
988
1314
|
output: o.outputNanosPerMTok,
|
|
1315
|
+
cached: o.cachedNanosPerMTok,
|
|
989
1316
|
overridden: true,
|
|
990
1317
|
};
|
|
991
1318
|
}
|