From c22818bfec4922a7e30167a66763a293ee7ea9e9 Mon Sep 17 00:00:00 2001 From: tcpsyn Date: Thu, 5 Feb 2026 17:38:41 -0700 Subject: [PATCH] Add SignalWire configuration Co-Authored-By: Claude Opus 4.6 --- backend/config.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/config.py b/backend/config.py index 8bbaa5e..4e630ff 100644 --- a/backend/config.py +++ b/backend/config.py @@ -15,6 +15,12 @@ class Settings(BaseSettings): openrouter_api_key: str = os.getenv("OPENROUTER_API_KEY", "") inworld_api_key: str = os.getenv("INWORLD_API_KEY", "") + # SignalWire + signalwire_project_id: str = os.getenv("SIGNALWIRE_PROJECT_ID", "") + signalwire_space: str = os.getenv("SIGNALWIRE_SPACE", "") + signalwire_token: str = os.getenv("SIGNALWIRE_TOKEN", "") + signalwire_phone: str = os.getenv("SIGNALWIRE_PHONE", "") + # LLM Settings llm_provider: str = "openrouter" # "openrouter" or "ollama" openrouter_model: str = "anthropic/claude-3-haiku"