Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -263,14 +263,8 @@ with gr.Blocks(title="Automatic Reimbursement Tool Demo") as page:
|
|
263 |
interactive=False,
|
264 |
height=240,
|
265 |
)
|
266 |
-
information = gr.Dataframe(
|
267 |
-
|
268 |
-
"Waiting for input...": ''
|
269 |
-
}),
|
270 |
-
label="Extracted information",
|
271 |
-
interactive=False,
|
272 |
-
row_count = (1, "fixed"), # 1 till multiple inputs/outputs is implemented
|
273 |
-
)
|
274 |
with gr.Row():
|
275 |
flag_incorrect_button = gr.Button(
|
276 |
"Flag as incorrect", variant="stop", interactive=True
|
|
|
263 |
interactive=False,
|
264 |
height=240,
|
265 |
)
|
266 |
+
information = gr.Dataframe(pd.DataFrame({"Extracted information": ["Waiting for input..."]}))
|
267 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
with gr.Row():
|
269 |
flag_incorrect_button = gr.Button(
|
270 |
"Flag as incorrect", variant="stop", interactive=True
|