14 lines
345 B
Python
Executable File
14 lines
345 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Hermes Agent CLI launcher.
|
|
|
|
This wrapper should behave like the installed `hermes` command, including
|
|
subcommands such as `gateway`, `cron`, and `doctor`.
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
import os
|
|
os.environ["HERMES_DEFAULT_MODEL"] = "local/llama-3.2-3b-q5_k_m"
|
|
from hermes_cli.main import main
|
|
main()
|