Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions hermes_cli/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@
# (model_id, display description shown in menus)
OPENROUTER_MODELS: list[tuple[str, str]] = [
# Anthropic
("anthropic/claude-fable-5", ""),
("anthropic/claude-opus-4.8", ""),
("anthropic/claude-opus-4.8-fast", "2x price, higher output speed"),
("anthropic/claude-sonnet-4.6", ""),
("anthropic/claude-sonnet-5", ""),
("anthropic/claude-haiku-4.5", ""),
# OpenAI
("openai/gpt-5.5", ""),
Expand Down Expand Up @@ -71,6 +72,8 @@
("stepfun/step-3.7-flash", ""),
# NVIDIA
("nvidia/nemotron-3-super-120b-a12b", ""),
# Sakana
("sakana/fugu-ultra", ""),
# OpenRouter routers
("openrouter/pareto-code", "auto-routes to cheapest coder meeting openrouter.min_coding_score"),
# Free tier
Expand Down Expand Up @@ -176,8 +179,9 @@ def _xai_curated_models() -> list[str]:
"moa": ["default"],
"nous": [
# Anthropic
"anthropic/claude-fable-5",
"anthropic/claude-opus-4.8",
"anthropic/claude-sonnet-4.6",
"anthropic/claude-sonnet-5",
"anthropic/claude-haiku-4.5",
# OpenAI
"openai/gpt-5.5",
Expand Down Expand Up @@ -212,6 +216,8 @@ def _xai_curated_models() -> list[str]:
"stepfun/step-3.7-flash",
# NVIDIA
"nvidia/nemotron-3-super-120b-a12b",
# Sakana
"sakana/fugu-ultra",
],
# Native OpenAI Chat Completions (api.openai.com). Used by /model counts and
# provider_model_ids fallback when /v1/models is unavailable.
Expand Down
20 changes: 17 additions & 3 deletions website/static/api/model-catalog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": 1,
"updated_at": "2026-06-16T18:04:33Z",
"updated_at": "2026-07-01T20:08:52Z",
"metadata": {
"source": "hermes-agent repo",
"docs": "https://hermes-agent.nousresearch.com/docs/reference/model-catalog"
Expand All @@ -12,6 +12,10 @@
"note": "Descriptions drive picker badges. Live /api/v1/models filters curated ids by tool-calling support and free pricing."
},
"models": [
{
"id": "anthropic/claude-fable-5",
"description": ""
},
{
"id": "anthropic/claude-opus-4.8",
"description": ""
Expand All @@ -21,7 +25,7 @@
"description": "2x price, higher output speed"
},
{
"id": "anthropic/claude-sonnet-4.6",
"id": "anthropic/claude-sonnet-5",
"description": ""
},
{
Expand Down Expand Up @@ -112,6 +116,10 @@
"id": "nvidia/nemotron-3-super-120b-a12b",
"description": ""
},
{
"id": "sakana/fugu-ultra",
"description": ""
},
{
"id": "openrouter/pareto-code",
"description": "auto-routes to cheapest coder meeting openrouter.min_coding_score"
Expand Down Expand Up @@ -152,11 +160,14 @@
"note": "Free-tier gating is determined live via Portal pricing (partition_nous_models_by_tier), not this manifest."
},
"models": [
{
"id": "anthropic/claude-fable-5"
},
{
"id": "anthropic/claude-opus-4.8"
},
{
"id": "anthropic/claude-sonnet-4.6"
"id": "anthropic/claude-sonnet-5"
},
{
"id": "anthropic/claude-haiku-4.5"
Expand Down Expand Up @@ -223,6 +234,9 @@
},
{
"id": "nvidia/nemotron-3-super-120b-a12b"
},
{
"id": "sakana/fugu-ultra"
}
]
}
Expand Down
Loading