Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ def predecir_similitud(texto):
|
|
53 |
iface = gr.Interface(
|
54 |
fn=predecir_similitud,
|
55 |
inputs=gr.inputs.Textbox(default="Ingrese su texto aquí"),
|
56 |
-
outputs=gr.outputs.Textbox(),
|
57 |
live=False,
|
58 |
title="Detector de Coincidencias",
|
59 |
description="Ingrese un texto y haga clic en 'Predecir' para detectar coincidencias con los vectores."
|
|
|
53 |
iface = gr.Interface(
|
54 |
fn=predecir_similitud,
|
55 |
inputs=gr.inputs.Textbox(default="Ingrese su texto aquí"),
|
56 |
+
outputs=gr.outputs.Textbox(type="str", label="Resultados", multiple=True), # Usar multiple=True
|
57 |
live=False,
|
58 |
title="Detector de Coincidencias",
|
59 |
description="Ingrese un texto y haga clic en 'Predecir' para detectar coincidencias con los vectores."
|