gwx666 commited on
Commit
7187414
·
verified ·
1 Parent(s): 76de718

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
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