From 922aa964d5e0073e73d310b40b5233427f980c29 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Fri, 9 May 2025 17:42:24 -0600 Subject: [PATCH] a --- run_unified_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_unified_api.py b/run_unified_api.py index 41f9774..ff9c530 100644 --- a/run_unified_api.py +++ b/run_unified_api.py @@ -33,7 +33,7 @@ def run_unified_api(): if ssl_available: print(f"Using SSL with certificates at {ssl_cert} and {ssl_key}") uvicorn.run( - "api_server:app", + "api_service.api_server:app", host=bind_host, port=api_port, log_level="debug", @@ -43,7 +43,7 @@ def run_unified_api(): else: print("SSL certificates not found or not configured. Starting without SSL (development mode)") uvicorn.run( - "api_server:app", + "api_service.api_server:app", host=bind_host, port=api_port, log_level="debug"