Introducing Agentblit
Agentblit Team1 min read
We're excited to introduce Agentblit — an open-source platform for building production-ready AI agents.
Why we built Agentblit
Most teams can prototype an agent in an afternoon. Shipping one that runs reliably in production is a different problem: tool integrations break, context windows overflow, and debugging agent decisions feels like reading tea leaves.
Agentblit gives you the primitives to go from prototype to production:
- Agent Builder — compose agents with tools, memory, and guardrails
- Observability — trace every decision, tool call, and token
- Model agnostic — swap providers without rewriting your agent
Get started
Sign up for the console and deploy your first agent in minutes. Check the documentation for SDK examples and integration guides.
import { Agent } from "@agentblit/sdk";
const agent = Agent.create({
model: "gpt-4o",
tools: [searchTool, codeTool],
});
const result = await agent.run("Summarize today's deployment logs");
We can't wait to see what you build.