Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
def greet(name):
|
4 |
return "Hello " + name + "!!"
|
5 |
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
global models_dict
|
4 |
+
models_dict = {
|
5 |
+
"RealVision": "SG161222/RealVisXL_V4.0" ,
|
6 |
+
"Unstable": "stablediffusionapi/sdxl-unstable-diffusers-y"
|
7 |
+
}
|
8 |
+
|
9 |
def greet(name):
|
10 |
return "Hello " + name + "!!"
|
11 |
|