chore: update installer banner text for branding consistency

- Changed the banner message in both PowerShell and shell scripts to reflect the new branding of the Hermes Agent as an open source AI agent by Nous Research, enhancing clarity and consistency across installation scripts.
This commit is contained in:
teknium1
2026-02-20 11:20:59 -08:00
parent b9f3518b33
commit c007b9e5bd
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ function Write-Banner {
Write-Host "┌─────────────────────────────────────────────────────────┐" -ForegroundColor Magenta
Write-Host "│ 🦋 Hermes Agent Installer │" -ForegroundColor Magenta
Write-Host "├─────────────────────────────────────────────────────────┤" -ForegroundColor Magenta
Write-Host "I'm just a butterfly with a lot of tools." -ForegroundColor Magenta
Write-Host "An open source AI agent by Nous Research. " -ForegroundColor Magenta
Write-Host "└─────────────────────────────────────────────────────────┘" -ForegroundColor Magenta
Write-Host ""
}

View File

@@ -86,7 +86,7 @@ print_banner() {
echo "┌─────────────────────────────────────────────────────────┐"
echo "│ 🦋 Hermes Agent Installer │"
echo "├─────────────────────────────────────────────────────────┤"
echo "│ I'm just a butterfly with a lot of tools. │"
echo "│ An open source AI agent by Nous Research. │"
echo "└─────────────────────────────────────────────────────────┘"
echo -e "${NC}"
}