zen: tpm routing

This commit is contained in:
Frank
2026-04-20 15:02:50 -04:00
parent bd1bdc4f04
commit ad65af28e7
6 changed files with 5474 additions and 12 deletions

View File

@@ -1,10 +1,10 @@
import { and, Database, eq, inArray, sql } from "@opencode-ai/console-core/drizzle/index.js"
import { ModelRateLimitTable } from "@opencode-ai/console-core/schema/ip.sql.js"
import { ModelTpmLimitTable } from "@opencode-ai/console-core/schema/ip.sql.js"
import { UsageInfo } from "./provider/provider"
export function createModelTpmLimiter(providers: { id: string; model: string; tpmLimit?: number }[]) {
const keys = providers.filter((p) => p.tpmLimit).map((p) => `${p.id}/${p.model}`)
if (keys.length === 0) return
const ids = providers.filter((p) => p.tpmLimit).map((p) => `${p.id}/${p.model}`)
if (ids.length === 0) return
const yyyyMMddHHmm = new Date(Date.now())
.toISOString()
@@ -16,30 +16,39 @@ export function createModelTpmLimiter(providers: { id: string; model: string; tp
const data = await Database.use((tx) =>
tx
.select()
.from(ModelRateLimitTable)
.where(and(inArray(ModelRateLimitTable.key, keys), eq(ModelRateLimitTable.interval, yyyyMMddHHmm))),
.from(ModelTpmLimitTable)
.where(
inArray(
ModelTpmLimitTable.id,
ids.map((id) => formatId(id, yyyyMMddHHmm)),
),
),
)
// convert to map of model to count
return data.reduce(
(acc, curr) => {
acc[curr.key] = curr.count
acc[curr.id] = curr.count
return acc
},
{} as Record<string, number>,
)
},
track: async (id: string, model: string, usageInfo: UsageInfo) => {
const key = `${id}/${model}`
if (!keys.includes(key)) return
track: async (provider: string, model: string, usageInfo: UsageInfo) => {
const id = `${provider}/${model}`
if (!ids.includes(id)) return
const usage = usageInfo.inputTokens
if (usage <= 0) return
await Database.use((tx) =>
tx
.insert(ModelRateLimitTable)
.values({ key, interval: yyyyMMddHHmm, count: usage })
.onDuplicateKeyUpdate({ set: { count: sql`${ModelRateLimitTable.count} + ${usage}` } }),
.insert(ModelTpmLimitTable)
.values({ id: formatId(id, yyyyMMddHHmm), count: usage })
.onDuplicateKeyUpdate({ set: { count: sql`${ModelTpmLimitTable.count} + ${usage}` } }),
)
},
}
function formatId(id: string, yyyyMMddHHmm: string) {
return `${id.substring(0, 200)}/${yyyyMMddHHmm}`
}
}

View File

@@ -0,0 +1,6 @@
CREATE TABLE `model_tpm_limit` (
`id` varchar(255) NOT NULL,
`interval` int NOT NULL,
`count` int NOT NULL,
CONSTRAINT PRIMARY KEY(`id`,`interval`)
);

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
ALTER TABLE `model_tpm_limit` DROP PRIMARY KEY;--> statement-breakpoint
ALTER TABLE `model_tpm_limit` ADD PRIMARY KEY (`id`);--> statement-breakpoint
ALTER TABLE `model_tpm_limit` DROP COLUMN `interval`;

View File

@@ -31,6 +31,15 @@ export const KeyRateLimitTable = mysqlTable(
(table) => [primaryKey({ columns: [table.key, table.interval] })],
)
export const ModelTpmLimitTable = mysqlTable(
"model_tpm_limit",
{
id: varchar("id", { length: 255 }).notNull(),
count: int("count").notNull(),
},
(table) => [primaryKey({ columns: [table.id] })],
)
export const ModelRateLimitTable = mysqlTable(
"model_rate_limit",
{