diff --git a/README.md b/README.md index d71e5b05..9b5f5884 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ -# Hermes Agent 🦋 +

+ Hermes Agent +

+ +# Hermes Agent ⚕ An AI agent with advanced tool-calling capabilities, featuring a flexible toolsets system, messaging integrations, and scheduled tasks. diff --git a/assets/banner.png b/assets/banner.png new file mode 100644 index 00000000..802e15e9 Binary files /dev/null and b/assets/banner.png differ diff --git a/hermes_cli/config.py b/hermes_cli/config.py index 8183d5fe..7fd88905 100644 --- a/hermes_cli/config.py +++ b/hermes_cli/config.py @@ -601,7 +601,7 @@ def show_config(): print() print(color("┌─────────────────────────────────────────────────────────┐", Colors.CYAN)) - print(color("│ 🦋 Hermes Configuration │", Colors.CYAN)) + print(color("│ ⚕ Hermes Configuration │", Colors.CYAN)) print(color("└─────────────────────────────────────────────────────────┘", Colors.CYAN)) # Paths diff --git a/hermes_cli/cron.py b/hermes_cli/cron.py index dc43ab63..9000ae53 100644 --- a/hermes_cli/cron.py +++ b/hermes_cli/cron.py @@ -89,7 +89,7 @@ def cron_daemon(interval: int = 60): from cron.scheduler import start_daemon print(color("┌─────────────────────────────────────────────────────────┐", Colors.CYAN)) - print(color("│ 🦋 Hermes Cron Daemon │", Colors.CYAN)) + print(color("│ ⚕ Hermes Cron Daemon │", Colors.CYAN)) print(color("├─────────────────────────────────────────────────────────┤", Colors.CYAN)) print(color("│ Press Ctrl+C to stop │", Colors.CYAN)) print(color("└─────────────────────────────────────────────────────────┘", Colors.CYAN)) diff --git a/hermes_cli/gateway.py b/hermes_cli/gateway.py index f36c21b8..800ec031 100644 --- a/hermes_cli/gateway.py +++ b/hermes_cli/gateway.py @@ -354,7 +354,7 @@ def run_gateway(verbose: bool = False): from gateway.run import start_gateway print("┌─────────────────────────────────────────────────────────┐") - print("│ 🦋 Hermes Gateway Starting... │") + print("│ ⚕ Hermes Gateway Starting... │") print("├─────────────────────────────────────────────────────────┤") print("│ Press Ctrl+C to stop │") print("└─────────────────────────────────────────────────────────┘") diff --git a/hermes_cli/main.py b/hermes_cli/main.py index 2c04a445..4c92b57e 100644 --- a/hermes_cli/main.py +++ b/hermes_cli/main.py @@ -432,7 +432,7 @@ def cmd_update(args): import subprocess import shutil - print("🦋 Updating Hermes Agent...") + print("⚕ Updating Hermes Agent...") print() # Check if we're in a git repo diff --git a/hermes_cli/setup.py b/hermes_cli/setup.py index 41b9cff4..fe5ef634 100644 --- a/hermes_cli/setup.py +++ b/hermes_cli/setup.py @@ -301,7 +301,7 @@ def run_setup_wizard(args): print() print(color("┌─────────────────────────────────────────────────────────┐", Colors.MAGENTA)) - print(color("│ 🦋 Hermes Agent Setup Wizard │", Colors.MAGENTA)) + print(color("│ ⚕ Hermes Agent Setup Wizard │", Colors.MAGENTA)) print(color("├─────────────────────────────────────────────────────────┤", Colors.MAGENTA)) print(color("│ Let's configure your Hermes Agent installation. │", Colors.MAGENTA)) print(color("│ Press Ctrl+C at any time to exit. │", Colors.MAGENTA)) diff --git a/hermes_cli/status.py b/hermes_cli/status.py index f4d8fb67..9f914102 100644 --- a/hermes_cli/status.py +++ b/hermes_cli/status.py @@ -66,7 +66,7 @@ def show_status(args): print() print(color("┌─────────────────────────────────────────────────────────┐", Colors.CYAN)) - print(color("│ 🦋 Hermes Agent Status │", Colors.CYAN)) + print(color("│ ⚕ Hermes Agent Status │", Colors.CYAN)) print(color("└─────────────────────────────────────────────────────────┘", Colors.CYAN)) # ========================================================================= diff --git a/hermes_cli/uninstall.py b/hermes_cli/uninstall.py index a38c9303..0f7676d8 100644 --- a/hermes_cli/uninstall.py +++ b/hermes_cli/uninstall.py @@ -199,7 +199,7 @@ def run_uninstall(args): print() print(color("┌─────────────────────────────────────────────────────────┐", Colors.MAGENTA, Colors.BOLD)) - print(color("│ 🦋 Hermes Agent Uninstaller │", Colors.MAGENTA, Colors.BOLD)) + print(color("│ ⚕ Hermes Agent Uninstaller │", Colors.MAGENTA, Colors.BOLD)) print(color("└─────────────────────────────────────────────────────────┘", Colors.MAGENTA, Colors.BOLD)) print() @@ -337,5 +337,5 @@ def run_uninstall(args): print(color("Reload your shell to complete the process:", Colors.YELLOW)) print(" source ~/.bashrc # or ~/.zshrc") print() - print("Thank you for using Hermes Agent! 🦋") + print("Thank you for using Hermes Agent! ⚕") print() diff --git a/scripts/install.ps1 b/scripts/install.ps1 index 1e40f6d0..2de6a7eb 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -37,7 +37,7 @@ $PythonVersion = "3.11" function Write-Banner { Write-Host "" Write-Host "┌─────────────────────────────────────────────────────────┐" -ForegroundColor Magenta - Write-Host "│ 🦋 Hermes Agent Installer │" -ForegroundColor Magenta + Write-Host "│ ⚕ Hermes Agent Installer │" -ForegroundColor Magenta Write-Host "├─────────────────────────────────────────────────────────┤" -ForegroundColor Magenta Write-Host "│ An open source AI agent by Nous Research. │" -ForegroundColor Magenta Write-Host "└─────────────────────────────────────────────────────────┘" -ForegroundColor Magenta diff --git a/scripts/install.sh b/scripts/install.sh index 0e681bda..d92c4319 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -84,7 +84,7 @@ print_banner() { echo "" echo -e "${MAGENTA}${BOLD}" echo "┌─────────────────────────────────────────────────────────┐" - echo "│ 🦋 Hermes Agent Installer │" + echo "│ ⚕ Hermes Agent Installer │" echo "├─────────────────────────────────────────────────────────┤" echo "│ An open source AI agent by Nous Research. │" echo "└─────────────────────────────────────────────────────────┘" diff --git a/setup-hermes.sh b/setup-hermes.sh index 9423cf16..8979beb8 100755 --- a/setup-hermes.sh +++ b/setup-hermes.sh @@ -32,7 +32,7 @@ cd "$SCRIPT_DIR" PYTHON_VERSION="3.11" echo "" -echo -e "${CYAN}🦋 Hermes Agent Setup${NC}" +echo -e "${CYAN}⚕ Hermes Agent Setup${NC}" echo "" # ============================================================================