Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -48,7 +48,7 @@ heading_html = f'''
|
|
| 48 |
</table>
|
| 49 |
'''
|
| 50 |
|
| 51 |
-
|
| 52 |
table {
|
| 53 |
border: none;
|
| 54 |
width: 100%;
|
|
@@ -72,7 +72,7 @@ if cfg.examples:
|
|
| 72 |
else:
|
| 73 |
app_examples = None
|
| 74 |
|
| 75 |
-
demo = gr.ChatInterface(respond, description = heading_html, css =
|
| 76 |
chatbot = gr.Chatbot(value = [[None, "How may I help you?"]]), examples = app_examples, cache_examples = False)
|
| 77 |
|
| 78 |
if __name__ == "__main__":
|
|
|
|
| 48 |
</table>
|
| 49 |
'''
|
| 50 |
|
| 51 |
+
bot_css = """
|
| 52 |
table {
|
| 53 |
border: none;
|
| 54 |
width: 100%;
|
|
|
|
| 72 |
else:
|
| 73 |
app_examples = None
|
| 74 |
|
| 75 |
+
demo = gr.ChatInterface(respond, description = heading_html, css = bot_css,
|
| 76 |
chatbot = gr.Chatbot(value = [[None, "How may I help you?"]]), examples = app_examples, cache_examples = False)
|
| 77 |
|
| 78 |
if __name__ == "__main__":
|