danielritchie commited on
Commit
8b4f6bf
1 Parent(s): 655980e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,3 +1,5 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("models/flax-community/t5-recipe-generation").launch()
 
 
 
1
  import gradio as gr
2
 
3
+ gr.Interface.load("models/flax-community/t5-recipe-generation",
4
+ inputs=gr.Textbox(lines=5, label="Input Text") # customizes the input component
5
+ ).launch()