vishalsh13's picture
update the file
fe0000f
raw
history blame
196 Bytes
from app import create_app
import os
os.environ["TRANSFORMERS_CACHE"] = "/app/cache"
if __name__ == "__main__":
obj_app = create_app()
obj_app.run(host='0.0.0.0', port=7860, debug=True)