← 返回
AI智能 Key

Sentiment Bot

Analyze sentiment of text or URLs. Supports batch analysis, emotion detection, comparative and trend analysis.
分析文本或URL情感,支持批量分析、情绪检测、对比分析与趋势分析。
unixlamadev-spec
AI智能 clawhub v1.1.0 2 版本 100000 Key: 需要
★ 0
Stars
📥 596
下载
💾 11
安装
2
版本
#latest

概述

Sentiment Bot

Analyze sentiment in text or fetched URLs. Detects emotions, scores intensity, and explains reasoning. Supports batch analysis of up to 10 texts, comparative analysis across multiple inputs, and trend analysis for chronological content. Context-aware framing for social media, news, reviews, and general content.

When to Use

  • Monitoring social media posts for brand sentiment
  • Analyzing news articles for tone and editorial framing
  • Comparing sentiment across multiple texts or sources
  • Tracking sentiment trends over a batch of content
  • Analyzing product or service reviews

Usage Flow

  1. Provide text (raw string) or url (fetched and analyzed), or a texts array for batch mode
  2. Optionally set mode: single (default) or batch
  3. Optionally set context: general (default), social, news, or review — adjusts how sentiment is framed
  4. Use task to drive analysis framing — mention "compare" or "vs" for comparative mode, "trend" for trend analysis
  5. AIProx routes to the sentiment-bot agent
  6. Returns sentiment, score, magnitude, emotions, reasoning, and confidence

Security Manifest

| Permission | Scope | Reason |

|------------|-------|--------|

| Network | aiprox.dev | API calls to orchestration endpoint |

| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |

Make Request — Single

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "text": "Can't believe they shipped this broken update lmao, every single time 🙄",
    "context": "social"
  }'

Response — Single

{
  "sentiment": "negative",
  "score": 0.18,
  "magnitude": 0.82,
  "emotions": ["frustration", "sarcasm", "disappointment"],
  "reasoning": "Strong negative sentiment expressed through sarcasm ('lmao'), eye-roll emoji, and repeated frustration ('every single time'). The casual social register amplifies the critical tone.",
  "confidence": "high",
  "mode": "single",
  "context": "social"
}

Make Request — Batch

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "texts": [
      "Absolutely love the new interface, so much faster!",
      "It is fine I guess, nothing special",
      "Third outage this month. Done with this service."
    ],
    "mode": "batch",
    "context": "review"
  }'

Response — Batch

{
  "results": [
    {"index": 0, "sentiment": "positive", "score": 0.91, "magnitude": 0.85, "emotions": ["joy", "enthusiasm"], "reasoning": "Enthusiastic praise with strong positive language.", "confidence": "high"},
    {"index": 1, "sentiment": "neutral", "score": 0.52, "magnitude": 0.2, "emotions": [], "reasoning": "Lukewarm, non-committal language with no strong emotion.", "confidence": "high"},
    {"index": 2, "sentiment": "negative", "score": 0.08, "magnitude": 0.9, "emotions": ["frustration", "anger"], "reasoning": "Strong negative sentiment, explicit dissatisfaction and churn signal.", "confidence": "high"}
  ],
  "summary": {
    "dominant_sentiment": "negative",
    "average_score": 0.503,
    "distribution": {"positive": 1, "negative": 1, "neutral": 1, "mixed": 0}
  },
  "mode": "batch",
  "context": "review"
}

Trust Statement

Sentiment Bot processes text transiently for analysis only. Content is not stored or logged beyond the transaction. Analysis is performed by Claude via LightningProx. Your spend token is used for payment only.

版本历史

共 2 个版本

  • v1.1.0 当前
    2026-03-29 21:35 安全 安全
  • v1.0.0
    2026-03-26 22:26

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 834 📥 213,006
content-creation

Vision Bot

unixlamadev-spec
描述图片、检测物体、提取文字、分析网页。可直接传入任意图片URL,并用您的语言回复。
★ 0 📥 1,862
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,356 📥 318,069