prompt_search_engine / api /service_manager.py
krstakis's picture
fixing everything.....
b652e4e
raw
history blame
170 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)