alexue4 commited on
Commit
e7f75fd
·
verified ·
1 Parent(s): f50110a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,8 +17,8 @@ def normalize_text(input_text):
17
  # Create the Gradio interface
18
  interface = gr.Interface(
19
  fn=normalize_text, # The function to call
20
- inputs=gr.inputs.Textbox(lines=2, placeholder="Enter text here..."), # Input type
21
- outputs="text", # Output type
22
  examples=examples # Examples to display
23
  )
24
 
 
17
  # Create the Gradio interface
18
  interface = gr.Interface(
19
  fn=normalize_text, # The function to call
20
+ inputs=gr.Textbox(lines=2, placeholder="Enter text here..."), # Input type
21
+ outputs=gr.Textbox(), # Output type
22
  examples=examples # Examples to display
23
  )
24