File size: 163 Bytes
f81cfe2 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Start the API in background
python api_onnx.py &
# Wait briefly to make sure API is up
sleep 5
# Start the Gradio UI (on port 5685)
python app.py
|
f81cfe2 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Start the API in background
python api_onnx.py &
# Wait briefly to make sure API is up
sleep 5
# Start the Gradio UI (on port 5685)
python app.py
|