visor841 commited on
Commit
bc64b44
1 Parent(s): 86d7476

Update the labels

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,7 +59,7 @@ def compareDocuments (userText1, userText2):
59
 
60
  demo = gr.Interface(
61
  fn=compareDocuments,
62
- inputs=["text", "text"],
63
- outputs=["text"],
64
  )
65
  demo.launch()
 
59
 
60
  demo = gr.Interface(
61
  fn=compareDocuments,
62
+ inputs=[gr.Textbox(label="Text 1"), gr.Textbox(label="Text 2")],
63
+ outputs=[gr.Textbox(label="HEXACO match")],
64
  )
65
  demo.launch()