prompt_search_engine / api /service_manager.py
krstakis's picture
aaaaa
19b2dc7
raw
history blame contribute delete
173 Bytes
import uvicorn
from api.web_server import app
def run():
"""
Start the FastAPI web server using Uvicorn.
"""
uvicorn.run(app, host="0.0.0.0", port=7860)