Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -694,13 +694,13 @@ iface = gr.Interface(
|
|
694 |
elem_id="boletim_analyzer"
|
695 |
)
|
696 |
|
697 |
-
# Interface Gradio
|
698 |
iface = gr.Interface(
|
699 |
fn=processar_boletim,
|
700 |
inputs=gr.File(
|
701 |
label="Upload do Boletim (PDF)",
|
702 |
-
|
703 |
-
|
704 |
),
|
705 |
outputs=[
|
706 |
gr.File(label="Relatório (PDF)"),
|
@@ -708,13 +708,11 @@ iface = gr.Interface(
|
|
708 |
],
|
709 |
title="Análise de Boletim Escolar",
|
710 |
description="Faça upload do boletim em PDF para gerar um relatório com análises e visualizações.",
|
711 |
-
allow_flagging="never"
|
712 |
-
theme=gr.themes.Base()
|
713 |
)
|
714 |
|
715 |
if __name__ == "__main__":
|
716 |
iface.launch(
|
717 |
server_name="0.0.0.0",
|
718 |
-
share=True
|
719 |
-
enable_queue=True
|
720 |
)
|
|
|
694 |
elem_id="boletim_analyzer"
|
695 |
)
|
696 |
|
697 |
+
# Interface Gradio
|
698 |
iface = gr.Interface(
|
699 |
fn=processar_boletim,
|
700 |
inputs=gr.File(
|
701 |
label="Upload do Boletim (PDF)",
|
702 |
+
type="binary", # Especificar tipo binary
|
703 |
+
file_types=[".pdf"]
|
704 |
),
|
705 |
outputs=[
|
706 |
gr.File(label="Relatório (PDF)"),
|
|
|
708 |
],
|
709 |
title="Análise de Boletim Escolar",
|
710 |
description="Faça upload do boletim em PDF para gerar um relatório com análises e visualizações.",
|
711 |
+
allow_flagging="never"
|
|
|
712 |
)
|
713 |
|
714 |
if __name__ == "__main__":
|
715 |
iface.launch(
|
716 |
server_name="0.0.0.0",
|
717 |
+
share=True
|
|
|
718 |
)
|