crowdata / run.py
YOSOYYONOSOYOTRO's picture
Upload folder using huggingface_hub (part 2)
4223796 verified
Raw
History Blame Contribute Delete
256 Bytes
import uvicorn
if __name__ == "__main__":
# Importante: Mantener el ProactorEventLoopPolicy por defecto de Windows
# porque Playwright lo requiere para crear subprocesses correctamente.
uvicorn.run("app.main:app", host="127.0.0.1", port=8000)