File size: 208 Bytes
f6c6bf6
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"""Run API server separately"""

from api_server import app
import uvicorn

if __name__ == "__main__":
    # Run on different port to avoid conflict with Gradio
    uvicorn.run(app, host="0.0.0.0", port=7861)