programORdie2 commited on
Commit
64f3dda
·
1 Parent(s): 2261f80

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+
4
+ API_KEY=os.environ.get('HUGGING_FACE_HUB_TOKEN', None)
5
+
6
+ article = """---
7
+ This space was created using [SD Space Creator](https://huggingface.co/spaces/anzorq/sd-space-creator)."""
8
+
9
+ gr.Interface.load(
10
+ name="models/dreamlike-art/dreamlike-photoreal-2.0",
11
+ title="""test""",
12
+ description="""test""",
13
+ article=article,
14
+ api_key=API_KEY,
15
+ ).queue(concurrency_count=20).launch()