Spaces:
Runtime error
Runtime error
add in title
Browse files
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()
|