
Hermes Agent by NousResearch — an autonomous AI agent with persistent memory, tool use, cron scheduling, and multi-platform messaging (Telegram, Discord, Slack). Includes an OpenAI-compatible API server.
Zeabur
Zeabur
Zeabur
Hermes Agent is an autonomous AI agent built by Nous Research. It features persistent memory, 40+ built-in tools, cron scheduling, and multi-platform messaging support.
curl https://YOUR_DOMAIN/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_SERVER_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "default", "messages": [{"role": "user", "content": "Hello!"}]}'
Telegram is configured at deploy time as an example. You can add other platforms (Discord, Slack, WhatsApp, etc.) by setting the corresponding environment variables after deployment.
See the official Messaging Gateway guide for setup instructions for each platform.
/opt/data/:
config.yaml — model selection, terminal backend, platform settingsSOUL.md — agent personality and system prompt.env — all environment variablesHermes Agent is licensed under the MIT License by Nous Research.
Zeabur