45bede6579
- Nemotron-3-Nano-Omni-30B-A3B-Reasoning von der Box entfernt (25 GB freigegeben) - llama-swap config: Modell-Eintrag und reasoning-Alias entfernt - sources.py: reasoning-Kategorie aus CATEGORIES entfernt - maintenance.py: reasoning->heavy Mapping aus ROLE_MAP entfernt - llamaswap.py: reasoning aus ROLE_IDS entfernt - Frontend: reasoning aus allen ROLES-Arrays entfernt (ModelBadges, RolesCard, Cockpit) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
1.3 KiB
Python
26 lines
1.3 KiB
Python
"""
|
|
Vertrauenswürdige Quellen + Kategorien für die automatische Modell-Entdeckung.
|
|
Portiert aus Mission Control v1 (sources.py). Rollen sind die EINE Quelle der
|
|
Wahrheit (vereinheitlicht): vision · coder · agent · scout.
|
|
"""
|
|
|
|
# HF-Orgs, die zuverlässig aktuelle, hochwertige GGUF-Quants veröffentlichen.
|
|
TRUSTED_AUTHORS = ["unsloth", "bartowski", "ggml-org", "lmstudio-community"]
|
|
|
|
# Kategorien (Reihenfolge = Anzeige + Zuordnungs-Priorität). Ein Modell wird der
|
|
# ERSTEN Kategorie zugeordnet, deren Stichwort im Repo-Namen vorkommt; sonst „scout".
|
|
# Die `role` ist zugleich der Alias-Vorschlag und gehört zu ROLE_IDS.
|
|
CATEGORIES = [
|
|
{"role": "vision", "title": "Bilder verstehen", "icon": "eye",
|
|
"kw": ["-vl-", "-vl", "vision", "llava", "multimodal", "-mm-", "pixtral"]},
|
|
{"role": "coder", "title": "Coden & Programmieren", "icon": "code",
|
|
"kw": ["coder", "-code-", "code-", "codestral", "starcoder"]},
|
|
{"role": "agent", "title": "Agenten & Tool-Use", "icon": "layers",
|
|
"kw": ["hermes", "-tool", "command-r", "watt", "-fc-", "function"]},
|
|
{"role": "scout", "title": "Allrounder & Chat", "icon": "compass",
|
|
"kw": []}, # Fallback: instruct/chat-Modelle
|
|
]
|
|
|
|
# Repo-Namensteile, die bei der Entdeckung übersprungen werden (Roh-/Spezialformate).
|
|
SKIP_TOKENS = ["-base", "-bnb-", "-gptq", "-awq", "-fp8", "draft", "tokenizer"]
|