Implemented experimental real production ready voice chat, relegated old flow to voice debug mode. New Web UI panel for Voice Chat.
This commit is contained in:
@@ -16,6 +16,10 @@ DISCORD_BOT_TOKEN = os.getenv("DISCORD_BOT_TOKEN")
|
||||
# Autonomous V2 Debug Mode (set to True to see detailed decision logging)
|
||||
AUTONOMOUS_DEBUG = os.getenv("AUTONOMOUS_DEBUG", "false").lower() == "true"
|
||||
|
||||
# Voice Chat Debug Mode (set to True for manual commands and text notifications)
|
||||
# When False (field deployment), voice chat operates silently without command notifications
|
||||
VOICE_DEBUG_MODE = os.getenv("VOICE_DEBUG_MODE", "false").lower() == "true"
|
||||
|
||||
# Llama.cpp server settings (via llama-swap)
|
||||
LLAMA_URL = os.getenv("LLAMA_URL", "http://llama-swap:8080")
|
||||
LLAMA_AMD_URL = os.getenv("LLAMA_AMD_URL", "http://llama-swap-amd:8080") # Secondary AMD GPU
|
||||
|
||||
Reference in New Issue
Block a user