Merge pull request #1398 from NousResearch/hermes/hermes-1b6f4583

fix(cron): support per-job runtime overrides
This commit is contained in:
Teknium 2026-03-14 22:29:30 -07:00 committed by GitHub
commit 5b11570517
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 173 additions and 9 deletions

View file

@ -25,7 +25,11 @@ def test_nous_oauth_setup_keeps_current_model_when_syncing_disk_provider(
config = load_config()
prompt_choices = iter([0, 2])
# Provider selection always comes first. Depending on available vision
# backends, setup may either skip the optional vision step or prompt for
# it before the default-model choice. Provide enough selections for both
# paths while still ending on "keep current model".
prompt_choices = iter([0, 2, 2])
monkeypatch.setattr(
"hermes_cli.setup.prompt_choice",
lambda *args, **kwargs: next(prompt_choices),