chatx / run.py
imseldrith's picture
Update run.py
42fa167
raw
history blame contribute delete
110 Bytes
import uvicorn
if __name__ == "__main__":
uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=True)