diff --git a/examples/sentiment_analysis.py b/examples/sentiment_analysis.py index 7b855b6..8354046 100644 --- a/examples/sentiment_analysis.py +++ b/examples/sentiment_analysis.py @@ -3,6 +3,7 @@ from typing import Literal from _context import sm from pydantic import BaseModel +# Note: you should probably be using textblob for this. class SentimentAnalysis(BaseModel): sentiment: Literal["positive", "negative", "neutral"]