jcmachicao commited on
Commit
09ae383
verified
1 Parent(s): 85e62af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -53,9 +53,7 @@ def generacion_llm(texto_input):
53
  interface = gr.Interface(
54
  fn=generacion_llm,
55
  inputs=gr.Textbox(label="Ingrese su texto para analizar"),
56
- outputs=[
57
- gr.Textbox(label="Resultado JSON"), # Show the generated JSON
58
- ],
59
  title="Extractor de Texto a JSON",
60
  description="Ingrese el texto para analizar y extraer informaci贸n en un formato JSON predefinido."
61
  )
 
53
  interface = gr.Interface(
54
  fn=generacion_llm,
55
  inputs=gr.Textbox(label="Ingrese su texto para analizar"),
56
+ outputs=gr.Textbox(label="Resultado JSON"),
 
 
57
  title="Extractor de Texto a JSON",
58
  description="Ingrese el texto para analizar y extraer informaci贸n en un formato JSON predefinido."
59
  )