The isA platform provides everything you need to build, deploy, and manage AI agents. From simple chatbots to complex autonomous systems with tool use, human oversight, and durable execution.
from isa_agent_sdk import query
async for msg in query("Analyze this codebase"):
if msg.is_text:
print(msg.content, end="")
elif msg.is_tool_use:
print(f"Using {msg.tool_name}...")Install with pip install isa-agent-sdk
Build custom agents with Python. Streaming responses, tool execution, skills, and durable workflows.
Access tools via Model Context Protocol. Web search, file operations, databases, and custom integrations.
Request approvals, collect input, and review outputs. Durable execution survives restarts.
Real-time responses with progress updates, tool visibility, and checkpoint handling.
Specialized behaviors via prompt injection. Code review, debugging, refactoring, and custom skills.
Deploy agents to isolated VMs with auto-scaling, credential injection, and session management.