Update the labels
Browse files
app.py
CHANGED
@@ -59,7 +59,7 @@ def compareDocuments (userText1, userText2):
|
|
59 |
|
60 |
demo = gr.Interface(
|
61 |
fn=compareDocuments,
|
62 |
-
inputs=["
|
63 |
-
outputs=["
|
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()
|