TASK: CLASSIFICATION
FORMAT: JSON_ONLY
SCHEMA:
{
"sentiment": "POSITIVE" | "NEGATIVE" | "NEUTRAL",
"confidence": <float 0.0-1.0>
}
INPUT: "This new update is fantastic!"
OUTPUT: { "sentiment": "POSITIVE", "confidence": 0.99
INPUT: "I hate this update, it broke my workflow."
OUTPUT: { "sentiment": "NEGATIVE", "confidence": 0.99 }
INPUT: "The weather is okay today."
OUTPUT: { "sentiment": "NEUTRAL", "confidence": 0.85 }