isA Agent SDK - Build AI agents with human-in-the-loop capabilities, MCP integration, and advanced features
Project description
isA Agent SDK
A complete AI Agent SDK for building intelligent agents with advanced features. Compatible with Claude Agent SDK patterns, with additional capabilities.
Features
- Claude Agent SDK Compatible - Familiar API patterns
- Streaming Messages - Real-time response streaming
- Built-in Tools - Read, Write, Edit, Bash, WebSearch, etc.
- MCP Integration - Model Context Protocol support
- Human-in-the-Loop - Durable execution with checkpoints
- Skills System - Prompt injection and customization
- Event Triggers - Proactive agent activation
- Multiple Execution Modes - Reactive, Collaborative, Proactive
Installation
pip install isa-agent-sdk
# With FastAPI server support
pip install isa-agent-sdk[server]
Quick Start
Basic Query
from isa_agent_sdk import query, ISAAgentOptions
# Simple usage
async for msg in query("Hello, world!"):
print(msg.content)
# With options
async for msg in query(
"Fix the bug in auth.py",
options=ISAAgentOptions(
allowed_tools=["Read", "Edit", "Bash"],
execution_mode="collaborative"
)
):
if msg.is_text:
print(msg.content, end="")
elif msg.is_tool_use:
print(f"[Tool: {msg.tool_name}]")
Human-in-the-Loop
from isa_agent_sdk import request_tool_permission, checkpoint
# Request permission before dangerous operations
authorized = await request_tool_permission(
"delete_file",
{"path": "important_data.txt"}
)
if authorized:
# proceed with deletion
pass
# Create checkpoints for durable execution
await checkpoint("about_to_deploy", {
"version": "1.0.0",
"environment": "production"
})
HTTP Client (for deployed apps)
from isa_agent_sdk import ISAAgent
client = ISAAgent(base_url="http://localhost:8000")
# Non-streaming
response = client.chat.create(
message="Explain quantum computing",
user_id="user123"
)
print(response.content)
# Streaming
for event in client.chat.stream(
message="Write a Python function",
user_id="user123"
):
if event.is_content:
print(event.content, end="")
Building a FastAPI Agent Service
from fastapi import FastAPI
from isa_agent_sdk import query, ISAAgentOptions
app = FastAPI()
@app.post("/query")
async def agent_query(prompt: str):
responses = []
async for msg in query(prompt):
if msg.is_text:
responses.append(msg.content)
return {"response": "".join(responses)}
Execution Modes
- Reactive - Responds to explicit requests
- Collaborative - Checkpoints for human approval
- Proactive - Anticipates needs, suggests actions
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
isa_agent_sdk-0.1.0-py3-none-any.whl
(513.0 kB
view details)
File details
Details for the file isa_agent_sdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: isa_agent_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 513.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
561b50d7022296a40c1d2057f493bad00bc59b53ebfe12a33978d68bb5f3dd14
|
|
| MD5 |
1dc174ba7511a4a97dc4f217ea6df6d7
|
|
| BLAKE2b-256 |
88ba8fa58d4d2ec19f68bbb5c6dec32f0624e62bf1f79f7cf868a9fc90ed0a06
|