mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
Merge PR #448: fix(cli): use correct dict key for codex auth file path in status output
Authored by PercyDikec. Fixes #447. The status display used codex_status.get('auth_file') but get_codex_auth_status() in auth.py returns the path under 'auth_store' (line 1220). This one-char key mismatch silently dropped the auth file path from 'hermes status'.
This commit is contained in:
commit
ecb8148a9f
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ def show_status(args):
|
|||
f" {'OpenAI Codex':<12} {check_mark(codex_logged_in)} "
|
||||
f"{'logged in' if codex_logged_in else 'not logged in (run: hermes model)'}"
|
||||
)
|
||||
codex_auth_file = codex_status.get("auth_file")
|
||||
codex_auth_file = codex_status.get("auth_store")
|
||||
if codex_auth_file:
|
||||
print(f" Auth file: {codex_auth_file}")
|
||||
codex_last_refresh = _format_iso_timestamp(codex_status.get("last_refresh"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue