mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 23:11:37 +08:00
Compare commits
1 Commits
opencode-p
...
hermes/her
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4788a45fae |
@@ -139,7 +139,7 @@ hermes gateway setup # Interactive platform configuration
|
|||||||
Want microphone input in the CLI or spoken replies in messaging?
|
Want microphone input in the CLI or spoken replies in messaging?
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install hermes-agent[voice]
|
pip install "hermes-agent[voice]"
|
||||||
|
|
||||||
# Optional but recommended for free local speech-to-text
|
# Optional but recommended for free local speech-to-text
|
||||||
pip install faster-whisper
|
pip install faster-whisper
|
||||||
|
|||||||
@@ -57,19 +57,19 @@ If that is not solid yet, fix text mode first.
|
|||||||
### CLI microphone + playback
|
### CLI microphone + playback
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install hermes-agent[voice]
|
pip install "hermes-agent[voice]"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Messaging platforms
|
### Messaging platforms
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install hermes-agent[messaging]
|
pip install "hermes-agent[messaging]"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Premium ElevenLabs TTS
|
### Premium ElevenLabs TTS
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install hermes-agent[tts-premium]
|
pip install "hermes-agent[tts-premium]"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Local NeuTTS (optional)
|
### Local NeuTTS (optional)
|
||||||
@@ -81,7 +81,7 @@ python -m pip install -U neutts[all]
|
|||||||
### Everything
|
### Everything
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install hermes-agent[all]
|
pip install "hermes-agent[all]"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Step 3: install system dependencies
|
## Step 3: install system dependencies
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ Configure in `~/.hermes/config.yaml` under your gateway's settings. See the [Mes
|
|||||||
**Solution:**
|
**Solution:**
|
||||||
```bash
|
```bash
|
||||||
# Install messaging dependencies
|
# Install messaging dependencies
|
||||||
pip install hermes-agent[telegram] # or [discord], [slack], [whatsapp]
|
pip install "hermes-agent[telegram]" # or [discord], [slack], [whatsapp]
|
||||||
|
|
||||||
# Check for port conflicts
|
# Check for port conflicts
|
||||||
lsof -i :8080
|
lsof -i :8080
|
||||||
|
|||||||
@@ -320,7 +320,7 @@ vLLM supports tool calling, structured output, and multi-modal models. Use `--en
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Start SGLang server
|
# Start SGLang server
|
||||||
pip install sglang[all]
|
pip install "sglang[all]"
|
||||||
python -m sglang.launch_server \
|
python -m sglang.launch_server \
|
||||||
--model meta-llama/Llama-3.1-70B-Instruct \
|
--model meta-llama/Llama-3.1-70B-Instruct \
|
||||||
--port 8000 \
|
--port 8000 \
|
||||||
@@ -363,7 +363,7 @@ Download GGUF models from [Hugging Face](https://huggingface.co/models?library=g
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Install and start
|
# Install and start
|
||||||
pip install litellm[proxy]
|
pip install "litellm[proxy]"
|
||||||
litellm --model anthropic/claude-sonnet-4 --port 4000
|
litellm --model anthropic/claude-sonnet-4 --port 4000
|
||||||
|
|
||||||
# Or with a config file for multiple models:
|
# Or with a config file for multiple models:
|
||||||
|
|||||||
@@ -36,19 +36,19 @@ The `~/.hermes/` directory and default `config.yaml` are created automatically t
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# CLI voice mode (microphone + audio playback)
|
# CLI voice mode (microphone + audio playback)
|
||||||
pip install hermes-agent[voice]
|
pip install "hermes-agent[voice]"
|
||||||
|
|
||||||
# Discord + Telegram messaging (includes discord.py[voice] for VC support)
|
# Discord + Telegram messaging (includes discord.py[voice] for VC support)
|
||||||
pip install hermes-agent[messaging]
|
pip install "hermes-agent[messaging]"
|
||||||
|
|
||||||
# Premium TTS (ElevenLabs)
|
# Premium TTS (ElevenLabs)
|
||||||
pip install hermes-agent[tts-premium]
|
pip install "hermes-agent[tts-premium]"
|
||||||
|
|
||||||
# Local TTS (NeuTTS, optional)
|
# Local TTS (NeuTTS, optional)
|
||||||
python -m pip install -U neutts[all]
|
python -m pip install -U neutts[all]
|
||||||
|
|
||||||
# Everything at once
|
# Everything at once
|
||||||
pip install hermes-agent[all]
|
pip install "hermes-agent[all]"
|
||||||
```
|
```
|
||||||
|
|
||||||
| Extra | Packages | Required For |
|
| Extra | Packages | Required For |
|
||||||
|
|||||||
Reference in New Issue
Block a user