sd-space-creator / template /app_simple.py
anzorq's picture
Add api_key for loading private model (#5)
3d65ced
import os
import gradio as gr
API_KEY=os.environ.get('HUGGING_FACE_HUB_TOKEN', None)
article = """---
This space was created using [SD Space Creator](https://huggingface.co/spaces/anzorq/sd-space-creator)."""
gr.Interface.load(
name="models/$model_id",
title="""$title""",
description="""$description""",
article=article,
api_key=API_KEY,
).queue(concurrency_count=20).launch()