AIdea-Server / app.py
“botayla”
message
f2d5b66
raw
history blame contribute delete
276 Bytes
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)