File size: 969 Bytes
ccf2a2a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import gradio as gr
import json
from textblob import TextBlob

def sentiment_analysis(text: str) -> str:
    """
    Analyze the sentiment for the given text

    Args: text (str): The text to analyze

    Returns: 
    str: A Json string containing polarity, subjectivity, and sentiment

    """
    blob=TextBlob(text)
    sentiment=blob.sentiment

    result = {
        "polarity" : round(sentiment.polarity, 2),
        "subjectivity" : round(sentiment.subjectivity, 2),
        "sentiment" : "positive" if sentiment.polarity > 0 else "negative" if sentiment.polarity <0 else "neutral"
    }
    return json.dumps(result)


#Create the Gradio interface
demo=gr.Interface(
    fn=sentiment_analysis,
    inputs=gr.Textbox(lines=10, placeholder="Enter your text here..."),
    outputs=gr.Textbox(),
    title="Sentiment Analysis",
    description="Anlayzes the sentiment of the text using TextBlob"
)

if __name__ == "__main__":
    demo.launch(mcp_server=True)