Beyond Code Mode: Agentica

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

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?"
))
TRY IT OUT

Try a multi-agent system built with Agentica

Loading...

A NEW PARADIGM

Code is the reasoning layer

Objects in. Capabilities out.

A paradigm that goes beyond tool calls. Pass objects by reference in, specify a return type and get a runtime object back, types intact.

An agent with a persistent working memory that can think outside of the context window.

agent.py
from agentica import spawn
from sdk import Database, UserId

agent = await spawn(
"Answer questions...",
model='openrouter:...',
scope={"database": Database(...)}
)

await agent.call(
dict[UserId, str],
"For each user..."
)
Tap for code

If you can import it, they can use it

Agents that delegate capabilities

Observability built for code execution

Get started with Agentica.
In minutes.

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

Start with a $50 credit
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.

View on GitHub

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.

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

$50

free credit to get started

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.