algorithm-agent / app.py
fanjingbo111's picture
Deploy algorithm agent app
ae0a268 verified
Raw
History Blame Contribute Delete
153 Bytes
from __future__ import annotations
import uvicorn
if __name__ == "__main__":
uvicorn.run("server:app", host="127.0.0.1", port=7860, reload=False)