Spaces:
Runtime error
Runtime error
File size: 678 Bytes
a77971a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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/Duskfallcrew/Gambit_and_Rogue",
title="""Gambit And Rogue""",
description="""Demo for <a href="https://huggingface.co/Duskfallcrew/Gambit_and_Rogue">Gambit And Rogue</a> Stable Diffusion model.
<a href="https://ko-fi.com/DUSKFALLcrew">Coffee is nice</a>
<a href="https://civitai.com/user/duskfallcrew"> Model Updates on CivIt </a>""",
article=article,
api_key=API_KEY,
).queue(concurrency_count=20).launch()
|