Helder Rodrigues commited on
Commit
91cece3
1 Parent(s): 766f295

Add application file

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -5,9 +5,10 @@ title = "Identify ingredients to add and remove"
5
  examples = [["lobster is good and fish isn't"],["I want a tomatoes pizza with banana and no ham"]]
6
 
7
  interface = gr.Interface.load("huggingface/harr/distilbert-base-uncased-finetuned-ingredients",
8
- description=description,
9
- examples=examples,
10
- title=title
 
11
  )
12
 
13
  interface.launch()
 
5
  examples = [["lobster is good and fish isn't"],["I want a tomatoes pizza with banana and no ham"]]
6
 
7
  interface = gr.Interface.load("huggingface/harr/distilbert-base-uncased-finetuned-ingredients",
8
+ inputs=gr.Textbox(label="Food Request"),
9
+ description=description,
10
+ examples=examples,
11
+ title=title
12
  )
13
 
14
  interface.launch()