duchaba commited on
Commit
81a6742
Β·
verified Β·
1 Parent(s): 8af75cf

add in title

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -1,7 +1,5 @@
1
  import gradio
2
 
3
- intf = gradio.load("models/stabilityai/stable-diffusion-xl-base-1.0")
4
-
5
  txt1 = '''
6
  # πŸ˜ƒ Welcome Chadi:
7
 
@@ -29,6 +27,6 @@ However, jumping into tech solutions is not the right approach for AI Solution A
29
  **Here is an interesting last note:** It took twice as long to write this explanation as the code. :-)
30
  '''
31
 
32
- intf.title=txt1
33
 
34
  intf.launch()
 
1
  import gradio
2
 
 
 
3
  txt1 = '''
4
  # πŸ˜ƒ Welcome Chadi:
5
 
 
27
  **Here is an interesting last note:** It took twice as long to write this explanation as the code. :-)
28
  '''
29
 
30
+ intf = gradio.load("models/stabilityai/stable-diffusion-xl-base-1.0", title=txt1)
31
 
32
  intf.launch()