Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -81,9 +81,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
81 |
client_id = gr.State()
|
82 |
|
83 |
with gr.Row():
|
84 |
-
image_display = gr.Image(label="π Extracted Document Image", show_label=True, height=
|
85 |
with gr.Column():
|
86 |
-
chatbot = gr.Chatbot(label="π¬ Document Assistant", height=
|
87 |
text_input = gr.Textbox(label="Ask about the document", placeholder="e.g. What is clause 3.2?")
|
88 |
send_btn = gr.Button("Send")
|
89 |
|
|
|
81 |
client_id = gr.State()
|
82 |
|
83 |
with gr.Row():
|
84 |
+
image_display = gr.Image(label="π Extracted Document Image", show_label=True, height=480, width=400)
|
85 |
with gr.Column():
|
86 |
+
chatbot = gr.Chatbot(label="π¬ Document Assistant", height=480)
|
87 |
text_input = gr.Textbox(label="Ask about the document", placeholder="e.g. What is clause 3.2?")
|
88 |
send_btn = gr.Button("Send")
|
89 |
|