Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -90,7 +90,19 @@ examples = [
|
|
90 |
|
91 |
#title = "<div style='text-align: center;'><b>My Centered and Bold Title</b></div>"
|
92 |
#title = "<h1 style='text-align: center; font-weight: bold;'>My Centered and Bold Title</h1>"
|
93 |
-
title = "<div style='text-align: center; font-weight: bold;'>My Centered and Bold Title</div>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
gr.ChatInterface(
|
95 |
fn=generate,
|
96 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
|
|
90 |
|
91 |
#title = "<div style='text-align: center;'><b>My Centered and Bold Title</b></div>"
|
92 |
#title = "<h1 style='text-align: center; font-weight: bold;'>My Centered and Bold Title</h1>"
|
93 |
+
#title = "<div style='text-align: center; font-weight: bold;'>My Centered and Bold Title</div>"
|
94 |
+
|
95 |
+
title=(
|
96 |
+
"""
|
97 |
+
<center>
|
98 |
+
|
99 |
+
<h1> Title cannot be display in center 🛰️ </h1>
|
100 |
+
<b> text 📧<b>
|
101 |
+
|
102 |
+
</center>
|
103 |
+
"""
|
104 |
+
)
|
105 |
+
|
106 |
gr.ChatInterface(
|
107 |
fn=generate,
|
108 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|