Container's picture
Create app.py
02a7f2b verified
raw
history blame contribute delete
244 Bytes
import os
import gradio as gr
read_key = os.environ.get('HF_TOKEN', None)
with gr.Blocks() as demo:
gr.load("Container/Container-Tags-Min-V1.2", hf_token=read_key, src="spaces")
demo.queue(concurrency_count=10, max_size=20)
demo.launch()