MjolnirThor's picture
Update run.py
24b593f verified
raw
history blame
271 Bytes
# First start the training process
print("Starting training process...")
import train
# Then start the FastAPI app
print("Starting FastAPI application...")
from app import app
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)