File size: 325 Bytes
f5d1132
 
 
 
6be1e82
f5d1132
 
191d874
6be1e82
f5d1132
 
 
6be1e82
f5d1132
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import uvicorn
import calc_fast_api
import gradio_app
import threading

# Start FastAPI in a separate thread
def start_fastapi():
    uvicorn.run("calc_fast_api:app", host="0.0.0.0", port=8000)

# Start FastAPI thread
fastapi_thread = threading.Thread(target= start_fastapi)
fastapi_thread.start()

gradio_app.launch_gradio()