feat: improve model catalog aggregation

This commit is contained in:
2026-05-11 17:44:57 +08:00
parent ec87816c95
commit 0431cb8157
41 changed files with 4745 additions and 550 deletions
@@ -0,0 +1,6 @@
ALTER TABLE IF EXISTS platform_models
ADD COLUMN IF NOT EXISTS provider_model_name text;
UPDATE platform_models
SET provider_model_name = model_name
WHERE provider_model_name IS NULL OR btrim(provider_model_name) = '';