remove reload

This commit is contained in:
Ajay Raj 2023-03-06 23:12:15 -08:00
commit 8cbdcfc474
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "vocode" name = "vocode"
version = "0.1.23" version = "0.1.24"
description = "The all-in-one voice SDK" description = "The all-in-one voice SDK"
authors = ["Ajay Raj <ajay@vocode.dev>"] authors = ["Ajay Raj <ajay@vocode.dev>"]
license = "MIT License" license = "MIT License"

View file

@ -33,4 +33,4 @@ class InboundCallServer():
) )
def run(self, host="localhost", port=3000): def run(self, host="localhost", port=3000):
uvicorn.run(self.app, host=host, port=port, reload=True) uvicorn.run(self.app, host=host, port=port)