Update app.py
Browse files
app.py
CHANGED
|
@@ -56,9 +56,9 @@ def generacion_llm(texto_input):
|
|
| 56 |
# Define Gradio app
|
| 57 |
interface = gr.Interface(
|
| 58 |
fn=generacion_llm,
|
| 59 |
-
inputs=gr.Textbox(label="Ingrese su texto para
|
| 60 |
outputs=gr.Textbox(label="Resultado JSON"),
|
| 61 |
-
title="
|
| 62 |
description="Ingrese el texto para analizar y extraer informaci贸n en un formato JSON predefinido."
|
| 63 |
)
|
| 64 |
|
|
|
|
| 56 |
# Define Gradio app
|
| 57 |
interface = gr.Interface(
|
| 58 |
fn=generacion_llm,
|
| 59 |
+
inputs=gr.Textbox(label="Ingrese su texto libre para estructurar."),
|
| 60 |
outputs=gr.Textbox(label="Resultado JSON"),
|
| 61 |
+
title="Estructurador de Autodiagn贸stico",
|
| 62 |
description="Ingrese el texto para analizar y extraer informaci贸n en un formato JSON predefinido."
|
| 63 |
)
|
| 64 |
|