JarvisLabs commited on
Commit
2489dc3
1 Parent(s): e3e9cd0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -37,6 +37,10 @@ model_dic["Anime_niji"]={
37
  "model_trigger":"anime coloring in the style of appleseed",
38
  }
39
 
 
 
 
 
40
 
41
 
42
  gallery=[] #Gallery array to hold image outputs
@@ -76,7 +80,7 @@ def gradio_gen_process(img,prompt,ps=0.6,style_model="Anime_Galverse",ls=0.6,jp=
76
 
77
 
78
 
79
- return gallery #img
80
 
81
 
82
 
 
37
  "model_trigger":"anime coloring in the style of appleseed",
38
  }
39
 
40
+ model_dic["FineArt_FrancoisBoucher"]={
41
+ "model_loc":"brettimus/sdxl-adelaide:f2d079e9da2b9cd3b527235813f6fe0f0fe6dc815363b5dd1930112fcc442d90",
42
+ "model_trigger":"in style of francois boucher ",
43
+ }
44
 
45
 
46
  gallery=[] #Gallery array to hold image outputs
 
80
 
81
 
82
 
83
+ return gallery[::-1] #Flip it so new it at top #img
84
 
85
 
86