Osage-v2 / app.py
satsune's picture
Upload app.py with huggingface_hub
a8525d3
raw
history blame contribute delete
497 Bytes
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/satsune/Osage-v2",
title="""Osage V2""",
description="""Demo for <a href="https://huggingface.co/satsune/Osage-v2">Osage V2</a> Stable Diffusion model.""",
article=article,
api_key=API_KEY,
).queue(concurrency_count=20).launch()