- Introduced `cli-config.yaml.example` to provide a template for configuring the CLI behavior, including model settings, terminal tool configurations, agent behavior, and toolsets. - Created `cli.py` for an interactive terminal interface, allowing users to start the Hermes Agent with various options and toolsets. - Added `hermes` launcher script for convenient CLI access. - Updated `model_tools.py` to support quiet mode for suppressing output during tool initialization and execution. - Enhanced logging in various tools to respect quiet mode, improving user experience by reducing unnecessary output. - Added `prompt_toolkit` to `requirements.txt` for improved CLI interaction capabilities. - Created `TODO.md` for future improvements and enhancements to the Hermes Agent framework.
35 lines
598 B
Plaintext
35 lines
598 B
Plaintext
# Core dependencies
|
|
openai
|
|
python-dotenv
|
|
fire
|
|
httpx
|
|
rich
|
|
tenacity
|
|
prompt_toolkit
|
|
|
|
# Web tools
|
|
firecrawl-py
|
|
|
|
# Image generation
|
|
fal-client
|
|
|
|
# mini-swe-agent dependencies (for terminal tool)
|
|
# Note: Install mini-swe-agent itself with: pip install -e ./mini-swe-agent
|
|
pyyaml
|
|
requests
|
|
jinja2
|
|
pydantic>=2.0
|
|
litellm>=1.75.5
|
|
typer
|
|
platformdirs
|
|
|
|
# Optional: For Docker backend (recommended)
|
|
# Requires Docker installed and user in 'docker' group
|
|
|
|
# Optional: For Modal backend (cloud execution)
|
|
# modal
|
|
# boto3
|
|
|
|
# Optional: Legacy Hecate terminal backend
|
|
# git+ssh://git@github.com/NousResearch/hecate.git
|