SDK·GitHub·Other

CrewAI Prediction Market Tools

CrewAI tools so your crew can reason about the world

Install

pip install crewai-prediction-markets

Five @tool-decorated functions you can hand any CrewAI agent. Your crew picks up real-time prediction-market context with a one-line import.

Quickstart

from crewai import Agent, Task, Crew
from crewai_prediction_markets import world_state, uncertainty_index, edges

analyst = Agent(
  role="Macro Analyst",
  goal="Produce a weekly macro note grounded in what markets are pricing",
  tools=[world_state, uncertainty_index, edges],
)

Crew(agents=[analyst], tasks=[Task(...)]).kickoff()

Tags

crewaisdkagentpythontool

Related