khaled06 commited on
Commit
dc37a26
·
verified ·
1 Parent(s): e9311c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def sentiment_analysis(text: str) -> str:
26
  demo = gr.Interface(
27
  fn = sentiment_analysis,
28
  inputs = gr.Textbox(placeholder="Enter text to analyze..."),
29
- output = gr.Textbox(),
30
  title = 'Text Sentiment Analysis',
31
  description="Analyze the sentiment of text using TextBlob"
32
  )
 
26
  demo = gr.Interface(
27
  fn = sentiment_analysis,
28
  inputs = gr.Textbox(placeholder="Enter text to analyze..."),
29
+ outputs = gr.Textbox(),
30
  title = 'Text Sentiment Analysis',
31
  description="Analyze the sentiment of text using TextBlob"
32
  )