Update app.py
Browse files
app.py
CHANGED
|
@@ -330,8 +330,14 @@ def chat_with_ai(message, history, role, use_search=False, audio_file=None):
|
|
| 330 |
|
| 331 |
def create_chatbot():
|
| 332 |
with gr.Blocks(
|
| 333 |
-
theme='
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 334 |
) as demo:
|
|
|
|
| 335 |
with gr.Tab("Chatbot"):
|
| 336 |
chatbot = gr.Chatbot(type='messages', elem_id="chatbot-box")
|
| 337 |
audio_output = gr.Audio(type="filepath", visible=False, autoplay=True)
|
|
|
|
| 330 |
|
| 331 |
def create_chatbot():
|
| 332 |
with gr.Blocks(
|
| 333 |
+
theme='Nymbo/Nymbo_Theme',
|
| 334 |
+
css="""
|
| 335 |
+
body, p, span, div, textarea, input {
|
| 336 |
+
font-weight: bold;
|
| 337 |
+
}
|
| 338 |
+
"""
|
| 339 |
) as demo:
|
| 340 |
+
|
| 341 |
with gr.Tab("Chatbot"):
|
| 342 |
chatbot = gr.Chatbot(type='messages', elem_id="chatbot-box")
|
| 343 |
audio_output = gr.Audio(type="filepath", visible=False, autoplay=True)
|