refactor(rag, minimax): silence HF Hub warnings and strictly filter highspeed models

This commit is contained in:
2026-05-10 14:10:29 -04:00
parent ed95549f0a
commit 504c1afaa9
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -596,7 +596,7 @@ def _list_minimax_models(api_key: str) -> list[str]:
return sorted(found)
except Exception:
pass
return ["MiniMax-M2.7", "MiniMax-M2.5", "MiniMax-M2.5-highspeed", "MiniMax-M2.1", "MiniMax-M2.1-highspeed", "MiniMax-M2"]
return ["MiniMax-M2.7", "MiniMax-M2.5", "MiniMax-M2.1", "MiniMax-M2"]
TOOL_NAME: str = "run_powershell"