Update app.py
Browse files
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.
|
21 |
-
outputs=
|
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 |
|