From 900eaf994b7a5d68fc4f4842a2ce58af0945ae37 Mon Sep 17 00:00:00 2001 From: Ajay Raj Date: Fri, 24 Feb 2023 10:55:21 -0800 Subject: [PATCH] remove BASE_URL env var --- vocode/conversation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vocode/conversation.py b/vocode/conversation.py index 0e5cc60..558171f 100644 --- a/vocode/conversation.py +++ b/vocode/conversation.py @@ -13,8 +13,7 @@ from .models.agent import AgentConfig from .models.synthesizer import SynthesizerConfig from .models.websocket import ReadyMessage, AudioMessage, StartMessage, StopMessage -BASE_URL = os.environ.get('BASE_URL') -VOCODE_WEBSOCKET_URL = f'wss://{BASE_URL}/conversation' +VOCODE_WEBSOCKET_URL = f'wss://api.vocode.dev/conversation' class Conversation: