saidsef commited on
Commit
dd70b4a
·
verified ·
0 Parent(s):

Initial commit

Browse files
Files changed (3) hide show
  1. README.md +0 -0
  2. app.py +39 -0
  3. requirements.txt +3 -0
README.md ADDED
File without changes
app.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import gradio as gr
3
+ from textblob import TextBlob
4
+
5
+ def sentiment_analysis(text: str) -> str:
6
+ """
7
+ Analyze the sentiment of the given text.
8
+
9
+ Args:
10
+ text (str): The text to analyze
11
+
12
+ Returns:
13
+ str: A JSON string containing polarity, subjectivity, and assessment
14
+ """
15
+ blob = TextBlob(text)
16
+ sentiment = blob.sentiment
17
+
18
+ result = {
19
+ # -1 (negative) to 1 (positive)
20
+ "polarity": round(sentiment.polarity, 2),
21
+ # 0 (objective) to 1 (subjective)
22
+ "subjectivity": round(sentiment.subjectivity, 2),
23
+ "assessment": "positive" if sentiment.polarity > 0 else "negative" if sentiment.polarity < 0 else "neutral"
24
+ }
25
+
26
+ return json.dumps(result)
27
+
28
+ # Create the Gradio interface
29
+ demo = gr.Interface(
30
+ fn=sentiment_analysis,
31
+ inputs=gr.Textbox(placeholder="Enter text to analyze..."),
32
+ outputs=gr.Textbox(), # Changed from gr.JSON() to gr.Textbox()
33
+ title="Text Sentiment Analysis",
34
+ description="Analyze the sentiment of text using TextBlob"
35
+ )
36
+
37
+ # Launch the interface and MCP server
38
+ if __name__ == "__main__":
39
+ demo.launch(mcp_server=True)
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ -i https://pypi.org/simple
2
+ gradio[mcp]
3
+ textblob