File size: 7,635 Bytes
302b32f 0928dc0 612746c ba49331 10d721b 4a0fc18 612746c 4a0fc18 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c 10d721b 612746c | 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | import os
import random
import time
from typing import List, Dict
from flask import Flask, jsonify, request, render_template
from flask_cors import CORS
import google.generativeai as genai
from transformers import pipeline
# -----------------------
# Flask setup
# -----------------------
app = Flask(__name__, static_folder="static", template_folder="templates")
CORS(app)
# -----------------------
# Config & Environment
# -----------------------
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY") or os.getenv("GEMINI_API_KEY")
if GOOGLE_API_KEY:
genai.configure(api_key=GOOGLE_API_KEY)
# Cap posts
MAX_POSTS = 50
DEFAULT_POSTS = 20
# -----------------------
# Sentiment Analyzer (HF)
# -----------------------
# Pin a specific model for stability (avoid the production warning)
SENTIMENT_MODEL = "distilbert/distilbert-base-uncased-finetuned-sst-2-english"
sentiment_analyzer = pipeline(
"sentiment-analysis",
model=SENTIMENT_MODEL,
device=-1 # CPU
)
# -----------------------
# Helpers
# -----------------------
def normalize_count(n: int) -> int:
try:
n = int(n)
except Exception:
n = DEFAULT_POSTS
n = max(1, min(MAX_POSTS, n))
return n
def parse_sentiment(label: str, score: float) -> Dict[str, str]:
# Standardize to POSITIVE / NEGATIVE / NEUTRAL (distilbert gives POSITIVE/NEGATIVE)
if label.upper() == "POSITIVE":
sentiment = "POSITIVE"
elif label.upper() == "NEGATIVE":
sentiment = "NEGATIVE"
else:
sentiment = "NEUTRAL"
return {"sentiment": sentiment, "score": float(score)}
def compute_aggregate(rows: List[Dict]) -> Dict:
pos = sum(1 for r in rows if r["sentiment"] == "POSITIVE")
neg = sum(1 for r in rows if r["sentiment"] == "NEGATIVE")
neu = sum(1 for r in rows if r["sentiment"] == "NEUTRAL")
total = max(1, len(rows))
pos_pct = round(100 * pos / total, 2)
neg_pct = round(100 * neg / total, 2)
neu_pct = round(100 * neu / total, 2)
# Rolling sentiment (simple EMA-like)
rolling = []
score_map = {"POSITIVE": 1.0, "NEUTRAL": 0.5, "NEGATIVE": 0.0}
alpha = 0.2
ema = 0.5
for r in rows:
ema = alpha * score_map[r["sentiment"]] + (1 - alpha) * ema
rolling.append(round(ema, 3))
return {
"counts": {"positive": pos, "negative": neg, "neutral": neu, "total": total},
"percent": {"positive": pos_pct, "negative": neg_pct, "neutral": neu_pct},
"rolling": rolling,
}
# -----------------------
# Synthetic fallback posts (no external calls)
# -----------------------
FALLBACK_PATTERNS_POS = [
"Absolutely loving {tag} right now! 🔥",
"{tag} campaign is the best thing this season 🎉",
"I love {tag}! It's amazing ❤️",
"People are talking about {tag} everywhere 🌍",
"Super excited about {tag} 🙌",
]
FALLBACK_PATTERNS_NEG = [
"{tag} totally failed expectations 😠",
"I'm disappointed with {tag} 💔",
"{tag} needs serious improvements…",
"Not impressed by {tag} this time 😕",
]
FALLBACK_PATTERNS_NEU = [
"People are discussing {tag} a lot 🤔",
"Not sure how I feel about {tag} yet…",
"{tag} is trending — thoughts?",
"Mixed opinions around {tag}.",
]
def make_fallback_posts(hashtag: str, n: int) -> List[str]:
tag = hashtag if hashtag.startswith("#") else f"#{hashtag}"
posts = []
for _ in range(n):
bucket = random.choices(
[FALLBACK_PATTERNS_POS, FALLBACK_PATTERNS_NEU, FALLBACK_PATTERNS_NEG],
weights=[0.4, 0.35, 0.25],
k=1
)[0]
txt = random.choice(bucket).format(tag=tag)
posts.append(txt)
return posts
# -----------------------
# Gemini generation
# -----------------------
def generate_with_gemini(hashtag: str, n: int) -> List[str]:
"""
Generate up to n short social posts using Gemini 2.0 Flash.
Returns list of strings. If API missing or error occurs, raises Exception.
"""
if not GOOGLE_API_KEY:
raise RuntimeError("GOOGLE_API_KEY not set")
model = genai.GenerativeModel("gemini-2.0-flash")
tag = hashtag if hashtag.startswith("#") else f"#{hashtag}"
prompt = f"""
You are generating short, natural social posts (Twitter/Instagram style) about the topic {tag}.
Rules:
- Return exactly {n} posts.
- One post per line.
- Each post under 120 characters.
- Use a mix of positive, neutral, and critical tones.
- Avoid any hate speech, harassment, or slurs.
- Do NOT include numbering like "1." or "-".
- Do NOT wrap in code blocks.
- Language: English.
Output format:
<post 1>
<post 2>
...
<post {n}>
"""
# Simple retry to avoid transient errors
tries = 2
for i in range(tries):
try:
r = model.generate_content(prompt)
text = (r.text or "").strip()
if not text:
raise RuntimeError("Empty response from Gemini")
lines = [ln.strip() for ln in text.split("\n") if ln.strip()]
# Keep only the first n lines; also handle if Gemini returns more or fewer lines
if len(lines) < n:
# pad with fallback to hit n
lines += make_fallback_posts(hashtag, n - len(lines))
posts = lines[:n]
return posts
except Exception as e:
if i == tries - 1:
raise
time.sleep(0.8) # brief backoff
# -----------------------
# API: analyze
# Request JSON:
# { "hashtag": "gla", "count": 30 }
# -----------------------
@app.route("/api/analyze", methods=["POST"])
def analyze():
data = request.get_json(silent=True) or {}
hashtag = (data.get("hashtag") or "").strip()
count = normalize_count(data.get("count") or DEFAULT_POSTS)
if not hashtag:
return jsonify({"error": "hashtag is required"}), 400
posts: List[Dict] = []
gemini_count = 0
fallback_count = 0
# Try Gemini first; if it fails, fall back fully.
try:
gemini_posts = generate_with_gemini(hashtag, count)
for p in gemini_posts:
posts.append({"text": p, "source": "gemini"})
gemini_count = len(gemini_posts)
except Exception:
fb = make_fallback_posts(hashtag, count)
for p in fb:
posts.append({"text": p, "source": "fallback"})
fallback_count = len(fb)
# Sentiment analysis
rows = []
for p in posts:
res = sentiment_analyzer(p["text"])[0] # {'label': 'POSITIVE', 'score': 0.99}
parsed = parse_sentiment(res["label"], res["score"])
rows.append({
"text": p["text"],
"source": p["source"],
"sentiment": parsed["sentiment"],
"score": parsed["score"],
})
agg = compute_aggregate(rows)
return jsonify({
"meta": {
"hashtag": hashtag if hashtag.startswith("#") else f"#{hashtag}",
"requested": count,
"generated_by": {
"gemini": gemini_count,
"fallback": fallback_count
},
"model": {
"generation": "gemini-2.0-flash" if gemini_count > 0 else "fallback-templates",
"sentiment": SENTIMENT_MODEL
}
},
"rows": rows,
"aggregate": agg
}), 200
# -----------------------
# UI Route
# -----------------------
@app.route("/", methods=["GET"])
def home():
return render_template("index.html")
# -----------------------
# Entrypoint
# -----------------------
if __name__ == "__main__":
port = int(os.getenv("PORT", "7860"))
app.run(host="0.0.0.0", port=port, debug=False)
|