File size: 173 Bytes
8a0c27f
 
19b2dc7
b652e4e
8a0c27f
 
 
b652e4e
8a0c27f
 
b652e4e
1
2
3
4
5
6
7
8
9
10
11
12
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)