Spaces:
Running
Running
| import datetime | |
| import uvicorn | |
| # Ali Test | |
| from src.api.main import app | |
| def read_root(): | |
| return {"message": "Welcome to YouTube Study Notes AI! The server is running perfectly."} | |
| if __name__ == "__main__": | |
| uvicorn.run(app, host="0.0.0.0", port=7860) |