test / server /app.py
paramjitbaral's picture
Upload folder using huggingface_hub
ab69aa8 verified
Raw
History Blame Contribute Delete
210 Bytes
import uvicorn
from app.server.app import app
def main() -> None:
uvicorn.run("app.server.app:app", host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()
__all__ = ["app", "main"]