Overview
Permissions
Capabilities
Network Operations
An AI Agent that uses deepsearch and twitter APIs to fetch predictions.
The Prediction Finder is a core component of the Prediction Swarm Agents ecosystem that discovers and identifies explicit and implicit predictions across social media, with a primary focus on X/Twitter platform. It uses advanced Natural Language Processing (NLP) to distinguish genuine predictions from general commentary.
The Prediction Finder identifies predictions by:
# Find predictions on a specific topic
bun run find-predictions --topic "<topic>" [--limit <number>] [--output <file>]
# Find Tesla stock predictions with default limit
bun run find-predictions --topic "Tesla stock price" --limit 20 --output predictions.json
# Find cryptocurrency predictions
bun run find-predictions --topic "Bitcoin price" --limit 50
# Find political predictions
bun run find-predictions --topic "2024 election results" --output election-predictions.json
--topic
(required): The topic to search for predictions about--limit
(optional): Maximum number of predictions to find (default varies)--output
(optional): File path to save results in JSON formatThe Prediction Finder returns predictions in the following JSON structure:
{
"prediction_text": "Tesla stock will reach $300 by end of 2023",
"confidence_score": 0.87,
"implicit": false,
"topic_relevance": 0.95,
"timeframe": "months",
"has_condition": false,
"post_id": "1234567890",
"post_url": "https://x.com/username/status/1234567890",
"author_username": "elonmusk",
"author_name": "Elon Musk",
"post_date": "2023-01-15T14:30:00.000Z",
"topic": "Tesla stock price"
}