Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def upload_pdf(file):
|
|
100 |
with gr.Blocks() as demo:
|
101 |
|
102 |
btn = gr.UploadButton("Upload a PDF", file_types=[".pdf"])
|
103 |
-
output = gr.Textbox(label="Output Box")
|
104 |
chatbot = gr.Chatbot(height=240)
|
105 |
|
106 |
with gr.Row():
|
|
|
100 |
with gr.Blocks() as demo:
|
101 |
|
102 |
btn = gr.UploadButton("Upload a PDF", file_types=[".pdf"])
|
103 |
+
output = gr.Textbox(label="Output Box", style={"height": "100px", "margin-top": "20px"})
|
104 |
chatbot = gr.Chatbot(height=240)
|
105 |
|
106 |
with gr.Row():
|