Beyond Code Mode: The Agentica SDK

Build agents that interact with your runtime objects by writing code. State of the art performance, securely sandboxed.

Get Started Now
agents.py
# 3rd party API for fetching market data
from third_party_library import Client
1. Get any runtime object
from agentica import spawn
 
# Pass the client to the agent
data_agent = await spawn(
scope= {'client': Client()}
)
 
# Ask it a question and print the result
print(await data_agent.call(
float, "How much have I spent this month?"
))

Build Code Mode Agents with Any Model

A Python and TypeScript SDK for building code mode agents that have access to your runtime objects. Deploy on the Symbolica Platform.

Get Started
01

ARC-AGI-2 & 3 with the Agentica SDK

Our open-source ARC-AGI-3 implementation solves all 3 publicly available pre-release games and our ARC-AGI-2 implementation achieves a score of 85.28% with Opus 4.6 (120k) High, increasing the scores of GPT 5.2 (XHigh) and Opus 4.5 by 10 and 20 percentage points respectively.

02

Runtime as Context: How Agentica Reasons Over Data

What changes when an agent has access to a persistent Python runtime instead of reconstructing context from prior tool outputs? To make this distinction clear, we built a data analysis demo comparing a traditional tool-calling agent built with LangChain’s Deep Agents, and Agentica, which reasons inside a Python runtime (REPL) where intermediate objects are retained across turns.

03

Watch a multi-agent system, built with Agentica

Query comes in: "Backtest a TSLA strategy." Agents jump into action fetching data, running calculations, generating charts seamlessly. Agentica’s types, composition, and dynamic code execution let tasks flow like one mind, orchestrating workflows in real time.

A NEW PARADIGM

Code is the reasoning layer

BUILT FOR THE FUTURE

Open-source framework, designed for the Symbolica platform

Symbolica

GPT-5.1

Claude Opus 4.5

Gemini 3 Pro

Opus 4.5

Agentica

market_data = TDClient(apikey = os.getenv("TWELVE_DATA_API_KEY"))
data_agent = await spawn(
premise="You are a financial data analyst.",
model="anthropic/claude-opus-4.5",
scope={'market_data': market_data}
)

Open-source framework

Agentica is open-source. Run locally or on the Symbolica platform.

Agentica SDK

Symbolica platform

The Symbolica platform enables enterprise-scale agentic workloads today. Seamlessly integrate and manage multi-agent workloads with production applications.

Security, permissioning, telemetry and observability. Every agent action is observable and traceable in real-time.

Get started with Agentica.
In minutes.

Build multi-agent systems that can execute in your runtime today.

Get started
PRICING

Powerful agents.
Simple pricing.

We charge a 5% fee on top of our underlying inference costs.
See OpenRouter for exact pricing.

5%

of model inference cost

BEYOND CODE MODE

Agentica, a new agent framework by Symbolica, is built on the premise that code is the most expressive interface through which models can interact with their environment.

Agents can interact with your runtime objects in a sandboxed execution environment. This includes the framework itself, allowing them to delegate capabilities, not just tasks, to other agents.