3cb0679 19958df 3cb0679 9956235 19958df
1
2
3
4
5
6
7
8
9
#!/bin/bash # Start the FastAPI server with Gradio UI mounted on the same port # HF Spaces only exposes port 7860 set -e echo "Starting TRACE server (FastAPI + Gradio) on port 7860..." exec uvicorn server.app:app --host 0.0.0.0 --port 7860