From 1eb93977f844e7e85a195f1208c21f1a255906da Mon Sep 17 00:00:00 2001 From: Ajay Raj Date: Mon, 6 Mar 2023 23:09:11 -0800 Subject: [PATCH] reload true --- pyproject.toml | 2 +- vocode/telephony/inbound_call_server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6d1bae6..5ca8128 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vocode" -version = "0.1.22" +version = "0.1.23" description = "The all-in-one voice SDK" authors = ["Ajay Raj "] license = "MIT License" diff --git a/vocode/telephony/inbound_call_server.py b/vocode/telephony/inbound_call_server.py index 1ca082e..42aa8af 100644 --- a/vocode/telephony/inbound_call_server.py +++ b/vocode/telephony/inbound_call_server.py @@ -33,4 +33,4 @@ class InboundCallServer(): ) def run(self, host="localhost", port=3000): - uvicorn.run(self.app, host=host, port=port) \ No newline at end of file + uvicorn.run(self.app, host=host, port=port, reload=True) \ No newline at end of file