Spaces:
Running
Running
eberhenriquez94
commited on
Commit
•
f7587f2
1
Parent(s):
e03cc71
app.py
CHANGED
@@ -76,8 +76,10 @@ async def predict(borrador):
|
|
76 |
result = await combine_responses(borrador)
|
77 |
return result
|
78 |
|
79 |
-
# Interfaz Gradio
|
80 |
with gr.Blocks() as demo:
|
|
|
|
|
81 |
borrador = gr.Textbox(
|
82 |
label="Borrador judicial",
|
83 |
placeholder="Escribe o pega el texto aquí...",
|
@@ -88,7 +90,9 @@ with gr.Blocks() as demo:
|
|
88 |
placeholder="El resultado aparecerá aquí...",
|
89 |
lines=10
|
90 |
)
|
91 |
-
|
|
|
|
|
92 |
fn=lambda texto: asyncio.run(predict(texto)),
|
93 |
inputs=borrador,
|
94 |
outputs=output
|
|
|
76 |
result = await combine_responses(borrador)
|
77 |
return result
|
78 |
|
79 |
+
# Interfaz Gradio con botón funcional
|
80 |
with gr.Blocks() as demo:
|
81 |
+
gr.Markdown("### Mejorador de resoluciones judiciales - Derecho de Familia en Chile")
|
82 |
+
|
83 |
borrador = gr.Textbox(
|
84 |
label="Borrador judicial",
|
85 |
placeholder="Escribe o pega el texto aquí...",
|
|
|
90 |
placeholder="El resultado aparecerá aquí...",
|
91 |
lines=10
|
92 |
)
|
93 |
+
submit_btn = gr.Button("Enviar") # Botón funcional para enviar el texto
|
94 |
+
|
95 |
+
submit_btn.click(
|
96 |
fn=lambda texto: asyncio.run(predict(texto)),
|
97 |
inputs=borrador,
|
98 |
outputs=output
|