logs in voive agent

parent 5994cc49
......@@ -175,4 +175,9 @@ def create_app() -> FastAPI:
app = create_app()
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)
\ No newline at end of file
try:
uvicorn.run(app, host="0.0.0.0", port=8000)
except Exception as e:
print(f"Application failed to start: {e}", flush=True)
import sys
sys.exit(1)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment