Skip to content

Commit 24a3703

Browse files
committed
Merge PR NousResearch#711: fix(setup): correct import of get_codex_model_ids in setup wizard
Authored by dragonkhoi. Fixes NousResearch#712.
2 parents c052022 + 081079d commit 24a3703

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hermes_cli/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -870,8 +870,8 @@ def setup_model_provider(config: dict):
870870
config['model'] = custom
871871
save_env_value("LLM_MODEL", custom)
872872
elif selected_provider == "openai-codex":
873-
from hermes_cli.codex_models import get_codex_models
874-
codex_models = get_codex_models()
873+
from hermes_cli.codex_models import get_codex_model_ids
874+
codex_models = get_codex_model_ids()
875875
model_choices = codex_models + [f"Keep current ({current_model})"]
876876
default_codex = 0
877877
if current_model in codex_models:

0 commit comments

Comments
 (0)