feat: 视频计费增强与影子计费系统

This commit is contained in:
fawney19
2026-02-03 18:48:39 +08:00
parent ed68aebfb0
commit 00442c41fa
84 changed files with 6507 additions and 1678 deletions

View File

@@ -479,13 +479,11 @@ class EndpointHealthService:
fam, kind = normalized.split(":", 1)
fam_label = {"claude": "Claude", "openai": "OpenAI", "gemini": "Gemini"}.get(fam, fam)
kind_label = {
"chat": "",
"chat": "Chat",
"cli": "CLI",
"video": "Video",
"image": "Image",
}.get(kind, kind)
if not kind_label:
return fam_label
return f"{fam_label} {kind_label}"
@staticmethod