prompt_search_engine / api /service_manager.py
krstakis's picture
fixed import..........
8974235
raw
history blame
135 Bytes
from api.web_server import app
import uvicorn
def run():
"""
TODO
"""
uvicorn.run(app, host="0.0.0.0", port=8000)