Access nouseresearch.com Hermes models via simonw's llm cli
Install this plugin in the same environment as LLM.
llm install llm-nousObtain a Nous API key and save it like this:
llm keys set nous
# <Paste key here>Run llm models to get a list of models.
Run prompts like this:
llm -m Hermes-4-405B 'five great names for a pet ocelot'
llm -m Hermes-4-70B 'how to reverse a linked list in python'To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd llm-nous
python3 -m venv venv
source venv/bin/activateNow install the dependencies and test dependencies:
llm install -e '.[test]'To run the tests:
pytest