12 lines
229 B
Python
Executable file
12 lines
229 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""
|
|
Hermes Agent CLI Launcher
|
|
|
|
This is a convenience wrapper to launch the Hermes CLI.
|
|
Usage: ./hermes [options]
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
from cli import main
|
|
import fire
|
|
fire.Fire(main)
|