Spaces:
Running
Running
File size: 276 Bytes
0c60f42 f2d5b66 98abfe9 162cf59 a754844 162cf59 a754844 | 1 2 3 4 5 6 7 8 9 10 11 12 | import datetime
import uvicorn
# Ali Test
from src.api.main import app
@app.get("/")
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) |