Add theme
Browse files
app.py
CHANGED
@@ -128,7 +128,7 @@ def clear_all():
|
|
128 |
return None, "", [], "" # Reset file input, load output, chatbot, and message input to default states
|
129 |
|
130 |
# Create the Gradio interface
|
131 |
-
with gr.Blocks() as demo:
|
132 |
gr.Markdown("# RAG Multi-file Chat Application with Speech-to-Text")
|
133 |
|
134 |
with gr.Row():
|
|
|
128 |
return None, "", [], "" # Reset file input, load output, chatbot, and message input to default states
|
129 |
|
130 |
# Create the Gradio interface
|
131 |
+
with gr.Blocks(theme=gr.themes.Base(primary_hue="teal", secondary_hue="teal", neutral_hue="slate")) as demo:
|
132 |
gr.Markdown("# RAG Multi-file Chat Application with Speech-to-Text")
|
133 |
|
134 |
with gr.Row():
|