hermes - 💡(How to fix) Fix feat(model): picker_providers config key to filter /model picker list

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Fix Action

Fix / Workaround

v0.15.1 status: Not implemented upstream. Local patch re-applied after update.

Code Example

model:
  picker_providers:
    - xiaomi-tp
    - ollama-launch
    - deepseek
    - ollama-cloud
RAW_BUFFERClick to expand / collapse

Description: The /model interactive picker shows ALL authenticated providers, including built-in ones (GitHub, Hugging Face, Nous, OpenRouter) that the user may not want to appear. There is no way to filter which providers show up in the picker.

Use case: Users with custom provider setups (e.g. only DeepSeek + Xiaomi-TP + Ollama) don't want to see GitHub Copilot, Hugging Face, Nous Portal, etc. in the picker — it clutters the list and confuses non-technical users.

Proposed solution: A model.picker_providers config key that acts as a whitelist:

model:
  picker_providers:
    - xiaomi-tp
    - ollama-launch
    - deepseek
    - ollama-cloud

When set, only listed providers appear in /model picker. Custom/user-defined endpoints (is_user_defined=True) always pass through.

Local implementation: Added to list_picker_providers() in hermes_cli/model_switch.py — filter by model.picker_providers config key before returning the list.

v0.15.1 status: Not implemented upstream. Local patch re-applied after update.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - 💡(How to fix) Fix feat(model): picker_providers config key to filter /model picker list