philipp-zettl
commited on
Commit
•
8f03093
1
Parent(s):
fdc03a9
Update app.py
Browse files
app.py
CHANGED
@@ -6,9 +6,13 @@ app = gr.load(
|
|
6 |
hf_token=os.environ.get('HF_TOKEN')
|
7 |
)
|
8 |
|
9 |
-
app
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
app.inputs = ["text", gr.Slider(label="seed")]
|
14 |
-
app.launch()
|
|
|
6 |
hf_token=os.environ.get('HF_TOKEN')
|
7 |
)
|
8 |
|
9 |
+
with app as demo:
|
10 |
+
|
11 |
+
demo.examples = [
|
12 |
+
"Colorful line shading by JON_JUAREZ a dark cave with toxic mushrooms",
|
13 |
+
|
14 |
+
]
|
15 |
+
gr.Slider(label="seed")
|
16 |
+
|
17 |
|
18 |
+
demo.launch()
|
|
|
|