siddop commited on
Commit
523dcb2
1 Parent(s): ab9ade3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -199,6 +199,8 @@ def clear():
199
  print('worked')
200
 
201
  with gr.Blocks() as iface:
 
 
202
  input = gr.Textbox(label='User input', placeholder='Enter the ingredients you have')
203
  output = [gr.Textbox(label='Dish'), gr.Textbox(label='All ingredients'), gr.Textbox(label='Instructions')]
204
  predict_btn = gr.Button("Predict")
 
199
  print('worked')
200
 
201
  with gr.Blocks() as iface:
202
+ title = "Recipe Generator"
203
+ description = "This app lets you input the ingredients you have at home. Based on the ingredients it then generates a recipe. Use this app and remove dinner cooking stress from your life"
204
  input = gr.Textbox(label='User input', placeholder='Enter the ingredients you have')
205
  output = [gr.Textbox(label='Dish'), gr.Textbox(label='All ingredients'), gr.Textbox(label='Instructions')]
206
  predict_btn = gr.Button("Predict")