Update app.py
Browse files
app.py
CHANGED
@@ -72,9 +72,9 @@ with gr.Blocks() as demo:
|
|
72 |
gr.Markdown(title)
|
73 |
gr.Markdown(description)
|
74 |
|
75 |
-
with gr.Row():
|
76 |
with gr.Column(scale=3):
|
77 |
-
inp = gr.Image(label='Upload invoice here:').style(
|
78 |
with gr.Column():
|
79 |
out = gr.JSON(label='Extracted information:')
|
80 |
btn = gr.Button("Extract")
|
|
|
72 |
gr.Markdown(title)
|
73 |
gr.Markdown(description)
|
74 |
|
75 |
+
with gr.Row().style(height=800):
|
76 |
with gr.Column(scale=3):
|
77 |
+
inp = gr.Image(label='Upload invoice here:').style()
|
78 |
with gr.Column():
|
79 |
out = gr.JSON(label='Extracted information:')
|
80 |
btn = gr.Button("Extract")
|