v0.2.0
What's New
This is a major release with significant new features and a switch to our public API.
Public API
- Switched to the public API: The SDK now uses our public API, simplifying the codebase and improving stability
New SDK Features
- Custom agent parameters: Control agent behavior with
llm,iteration_budget, andinclude_research
parameters instead of justeffort_levelpresets enforce_row_independence: New parameter foragent_mapto run N independent agents with no coordination or
awareness of each otheruse_web_searchfor merge: Control web search behavior with"auto"(default),"yes"(force), or"no"
(skip)get_billing_balance(): New function to check your account balance
Documentation & Tooling
- New documentation site: Comprehensive docs with guides and interactive notebooks
- Cursor MCP setup: One-click configuration button for Cursor IDE
Upgrading
pip install --upgrade everyrowCustom Agent Parameters Example
from everyrow.task import LLM, single_agent
result = await agent_map(
task="...",
effort_level=None, # Set to None when using custom params
llm=LLM.CLAUDE_4_5_HAIKU,
iteration_budget=5,
include_research=True,
)