fix: change local inference server url

This commit is contained in:
2024-08-22 23:50:58 +01:00
parent b398f4d025
commit 3299f2dcc6

View File

@@ -25,7 +25,7 @@ async def lifespan(app: FastAPI):
inference_url = os.environ.get("INFERENCE_SERVER_URL")
if not inference_url:
inference_url = "ws://localhost:8001"
inference_url = "http://localhost:8001"
advance()