Maintainer review changes on the Edge TTS PR: - edge-tts was added as a HARD base requirement, but the /api/tts handler is designed optional (ImportError returns 503). Moved it out of requirements.txt with an OPTIONAL comment + install hint; updated the 503 message from the nonexistent 'see docs' to the actual install command. Keeps minimal base deps. - PR shipped NO tests for a new auth+rate-limited+allowlisted network endpoint. Added tests/test_issue2931_edge_tts_endpoint.py covering method (405), missing text (400), over-length (400), voice allowlist (400), per-client rate limit (429) — all in-process, no real synthesis/network.
11 lines
542 B
Plaintext
11 lines
542 B
Plaintext
# Hermes Web UI -- minimal Python dependencies
|
|
# The server uses PyYAML plus cryptography for optional local passkey/WebAuthn support.
|
|
# All heavy ML/agent deps live in the Hermes agent venv.
|
|
#
|
|
# OPTIONAL: the Edge TTS speech engine (Settings -> Voice -> TTS Engine -> "Edge TTS")
|
|
# needs `edge-tts`. It is intentionally NOT a hard dependency — the /api/tts
|
|
# endpoint returns 503 with an install hint when it's absent. Install it only if
|
|
# you want server-side Microsoft neural voices: pip install edge-tts
|
|
pyyaml>=6.0
|
|
cryptography>=42.0
|