KhaledAB2023 commited on
Commit
bdd4f95
·
verified ·
1 Parent(s): 5eea64e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -8,7 +8,10 @@ def get_sentiment(input):
8
 
9
  demo = gr.Interface(fn=get_sentiment,
10
  inputs="text",
11
- outputs=["text"])
 
 
 
12
  demo.launch()
13
 
14
 
 
8
 
9
  demo = gr.Interface(fn=get_sentiment,
10
  inputs="text",
11
+ outputs=["text"],
12
+ title="AI workshop",
13
+ description="input a text to get postive or negative "
14
+ )
15
  demo.launch()
16
 
17