TenPoisk commited on
Commit
c4a5e1c
Β·
1 Parent(s): 388a10d

Update sd_ui.py

Browse files
Files changed (1) hide show
  1. sd_ui.py +6 -3
sd_ui.py CHANGED
@@ -22,14 +22,17 @@ print('β– β– ')
22
  print('β– ')
23
 
24
  #title of app
25
- title = "WebDef.UI"
 
 
 
 
26
 
27
  #description of app
28
  description = \
29
  """
30
  __This is WebDef.UI__ Generate fantastic images with the latest AI models for __FREE__!
31
 
32
- ![](https://raw.githubusercontent.com/ehristoforu/imghost/main/Picsart_23-08-04_21-51-22-975.png)
33
  """
34
  #article of app
35
  article = \
@@ -57,7 +60,7 @@ article = \
57
  #ready rum space
58
  print('πŸŽ‰ The app is ready to go!')
59
 
60
- gr.Interface.load("models/runwayml/stable-diffusion-v1-5", description=description, article=article).launch()
61
 
62
 
63
 
 
22
  print('β– ')
23
 
24
  #title of app
25
+ title = \
26
+ """
27
+ ![](https://raw.githubusercontent.com/ehristoforu/imghost/main/Picsart_23-08-04_21-51-22-975.png)
28
+
29
+ """
30
 
31
  #description of app
32
  description = \
33
  """
34
  __This is WebDef.UI__ Generate fantastic images with the latest AI models for __FREE__!
35
 
 
36
  """
37
  #article of app
38
  article = \
 
60
  #ready rum space
61
  print('πŸŽ‰ The app is ready to go!')
62
 
63
+ gr.Interface.load("models/runwayml/stable-diffusion-v1-5", title=title, description=description, article=article).launch()
64
 
65
 
66