mreidy3 commited on
Commit
a1e7f94
·
verified ·
1 Parent(s): 72f5fca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
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
  )