-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathadmin.api.v1.llm-models.seed.ts
More file actions
39 lines (31 loc) · 1.18 KB
/
admin.api.v1.llm-models.seed.ts
File metadata and controls
39 lines (31 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { type ActionFunctionArgs, json } from "@remix-run/server-runtime";
import { seedLlmPricing, syncLlmCatalog } from "@internal/llm-model-catalog";
import { prisma } from "~/db.server";
import { requireAdminApiRequest } from "~/services/personalAccessToken.server";
import { llmPricingRegistry } from "~/v3/llmPricingRegistry.server";
export async function action({ request }: ActionFunctionArgs) {
await requireAdminApiRequest(request);
const url = new URL(request.url);
const action = url.searchParams.get("action") ?? "seed";
if (action === "sync") {
const result = await syncLlmCatalog(prisma);
if (llmPricingRegistry) {
await llmPricingRegistry.reload();
}
return json({
success: true,
...result,
message: `Synced ${result.modelsUpdated} models, skipped ${result.modelsSkipped}`,
});
}
// Default: seed (creates new + syncs existing)
const result = await seedLlmPricing(prisma);
if (llmPricingRegistry) {
await llmPricingRegistry.reload();
}
return json({
success: true,
...result,
message: `Seeded ${result.modelsCreated} created, ${result.modelsSkipped} skipped, ${result.modelsUpdated} updated`,
});
}