JoPmt's picture
Update app.py
45d2718 verified
raw
history blame contribute delete
314 Bytes
import gradio as gr
import os
from huggingface_hub import login
HF_TOKEN=os.environ.get('HF_TOKEN')
login(token=HF_TOKEN)
iface = gr.load("JoPmt/Gradio_Space_To_Apk_Builder", src="spaces", hf_token=HF_TOKEN)
iface.queue(max_size=3,api_open=False)
iface.launch(max_threads=20,share=True,inline=False,show_api=False)