mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
Hide Hermes model until next release with agentic capabilities
This commit is contained in:
parent
33bc1a3b58
commit
69d3d3c15a
1 changed files with 5 additions and 1 deletions
|
|
@ -596,7 +596,11 @@ def fetch_nous_models(
|
||||||
continue
|
continue
|
||||||
model_id = item.get("id")
|
model_id = item.get("id")
|
||||||
if isinstance(model_id, str) and model_id.strip():
|
if isinstance(model_id, str) and model_id.strip():
|
||||||
model_ids.append(model_id.strip())
|
mid = model_id.strip()
|
||||||
|
# Skip Hermes models — they're not reliable for agentic tool-calling
|
||||||
|
if "hermes" in mid.lower():
|
||||||
|
continue
|
||||||
|
model_ids.append(mid)
|
||||||
|
|
||||||
return list(dict.fromkeys(model_ids))
|
return list(dict.fromkeys(model_ids))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue