mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-19 10:02:16 +00:00
Add /version slash command across CLI, gateway, TUI, and desktop.
Surfaces Hermes Agent version info on demand without leaving chat; works mid-run like /help and /update.
This commit is contained in:
parent
aa52cd3b57
commit
9c1bb8d2c7
7 changed files with 59 additions and 0 deletions
4
cli.py
4
cli.py
|
|
@ -9015,6 +9015,10 @@ class HermesCLI:
|
|||
elif canonical == "update":
|
||||
if self._handle_update_command():
|
||||
return False
|
||||
elif canonical == "version":
|
||||
from hermes_cli.main import _print_version_info
|
||||
|
||||
_print_version_info(check_updates=True)
|
||||
elif canonical == "paste":
|
||||
self._handle_paste_command()
|
||||
elif canonical == "image":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue