Spaces:
Runtime error
Runtime error
new code
Browse files- src/interface.py +3 -3
src/interface.py
CHANGED
|
@@ -3,11 +3,11 @@ import gradio as gr
|
|
| 3 |
# Gradio application setup
|
| 4 |
def create_demo():
|
| 5 |
|
| 6 |
-
with gr.Blocks(title="
|
| 7 |
with gr.Column():
|
| 8 |
with gr.Row():
|
| 9 |
-
chat_history = gr.Chatbot(value=[], elem_id='chatbot', height=
|
| 10 |
-
show_img = gr.Image(label='Overview', height=
|
| 11 |
|
| 12 |
with gr.Column():
|
| 13 |
with gr.Row():
|
|
|
|
| 3 |
# Gradio application setup
|
| 4 |
def create_demo():
|
| 5 |
|
| 6 |
+
with gr.Blocks(title="LLAMA 3 Rag on Fly", theme="Monochrome") as demo:
|
| 7 |
with gr.Column():
|
| 8 |
with gr.Row():
|
| 9 |
+
chat_history = gr.Chatbot(value=[], elem_id='chatbot', height=480)
|
| 10 |
+
show_img = gr.Image(label='Overview', height=480)
|
| 11 |
|
| 12 |
with gr.Column():
|
| 13 |
with gr.Row():
|