Update app.py
Browse files
app.py
CHANGED
@@ -90,10 +90,7 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
90 |
# Set up the Gradio Interface
|
91 |
iface = gr.Interface(
|
92 |
fn=verify, # Function to process input
|
93 |
-
inputs=[gr.inputs.Textbox(label= "Text 1"),
|
94 |
-
gr.inputs.Textbox(label= "Text 2"),
|
95 |
-
gr.inputs.Textbox(label= "Text 3"),
|
96 |
-
gr.inputs.Textbox(label= "Text 4")] # Input type (Textbox for text)
|
97 |
outputs=gr.outputs.Textbox(), # Output type (Textbox for generated text)
|
98 |
live=True # Optional: To update the result as you type
|
99 |
)
|
|
|
90 |
# Set up the Gradio Interface
|
91 |
iface = gr.Interface(
|
92 |
fn=verify, # Function to process input
|
93 |
+
inputs=[gr.inputs.Textbox(label= "Text 1"), gr.inputs.Textbox(label= "Text 2"), gr.inputs.Textbox(label= "Text"), gr.inputs.Textbox(label= "Text 4")], # Input type (Textbox for text)
|
|
|
|
|
|
|
94 |
outputs=gr.outputs.Textbox(), # Output type (Textbox for generated text)
|
95 |
live=True # Optional: To update the result as you type
|
96 |
)
|