new code
Browse files- src/interface.py +1 -1
src/interface.py
CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
|
|
3 |
# Gradio application setup
|
4 |
def create_demo():
|
5 |
|
6 |
-
with gr.Blocks(title="RAG Chatbot Q&A", theme="
|
7 |
with gr.Column():
|
8 |
with gr.Row():
|
9 |
chat_history = gr.Chatbot(value=[], elem_id='chatbot', height=680)
|
|
|
3 |
# Gradio application setup
|
4 |
def create_demo():
|
5 |
|
6 |
+
with gr.Blocks(title="RAG Chatbot Q&A", theme="Soft",css=".gradio-container {background-color: black}") as demo:
|
7 |
with gr.Column():
|
8 |
with gr.Row():
|
9 |
chat_history = gr.Chatbot(value=[], elem_id='chatbot', height=680)
|