Skip to Content

Build intelligent AI agents

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.

quickstart.py
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

Documentation