philipp-zettl commited on
Commit
8bf10b5
1 Parent(s): cec3cb4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -1,4 +1,14 @@
1
  import gradio as gr
2
  import os
3
 
4
- gr.load("models/philipp-zettl/jon_juarez-lora", hf_token=os.environ.get('HF_TOKEN')).launch()
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
  import os
3
 
4
+ app = gr.load(
5
+ "models/philipp-zettl/jon_juarez-lora",
6
+ hf_token=os.environ.get('HF_TOKEN')
7
+ )
8
+
9
+ app.examples = [
10
+ "Colorful line shading by JON_JUAREZ a dark cave with toxic mushrooms",
11
+
12
+ ]
13
+ app inputs = ["text", gr.Slider("seed")]
14
+ app.launch()