fix: add deepseek/deepseek-v4-flash to Nous Portal curated model list#26130
Closed
Thealilism wants to merge 1 commit into
Closed
fix: add deepseek/deepseek-v4-flash to Nous Portal curated model list#26130Thealilism wants to merge 1 commit into
Thealilism wants to merge 1 commit into
Conversation
deepseek/deepseek-v4-flash is a free-tier model on the Nous Portal but was missing from _PROVIDER_MODELS["nous"], which means it never appeared in the /model picker or in the model-catalog.json manifest published to hermes-agent.nousresearch.com. Also rebuilds website/static/api/model-catalog.json via scripts/build_model_catalog.py so the deployed catalog reflects the change.
Collaborator
This was referenced May 15, 2026
Contributor
|
This appears to be implemented on current Evidence:
Thanks for the report and patch; the maintainer comment here correctly noted the same-fix history, and that follow-up has since landed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
deepseek/deepseek-v4-flashis a free-tier model on the Nous Portal but was missing from_PROVIDER_MODELS["nous"]. This meant:/modelTUI pickermodel-catalog.jsonmanifest published to hermes-agent.nousresearch.comChanges
hermes_cli/models.py: Added"deepseek/deepseek-v4-flash"to thenousprovider's curated model listwebsite/static/api/model-catalog.json: Rebuilt viascripts/build_model_catalog.pyso the deployed catalog reflects the changeVerification
The free-tier models from Nous Portal's
/api/nous/recommended-modelsendpoint are:stepfun/step-3.5-flash(was already in list)deepseek/deepseek-v4-flash(now added)google/gemini-3-flash-preview(was already in list)Notes
The curated catalog (model-catalog.json) is built from
_PROVIDER_MODELSviascripts/build_model_catalog.py. The runtime fetcher athttps://hermes-agent.nousresearch.com/docs/api/model-catalog.jsonwill pick this up after the next docs deployment.