prompt_search_engine / api /service_manager.py
krstakis's picture
fixed imports
eb99ae2
raw
history blame
169 Bytes
import uvicorn
from web_server import app
def run():
"""
Start the FastAPI web server using Uvicorn.
"""
uvicorn.run(app, host="0.0.0.0", port=7860)