Python SDK for building autonomous AI teammates
Published: (February 23, 2026 at 05:55 PM EST)
1 min read
Source: Dev.to
Source: Dev.to
Overview
- Supports actions and knowledge in 150+ of the most popular SaaS apps
- Scheduled runs for automation
- Send emails to agents to delegate tasks
- Trigger tasks with webhook events
- Agent has memory of previous runs
- Human‑in‑the‑loop with permissions, planning and asking questions
- File handling for sharing outputs
Deploy an agent in a couple of lines
# 1. Create a task
task = client.tasks.create(
teammate_id=bot.id,
instructions="Send weekly ticket summary to team@acme.com"
)
# 2. Attach a schedule — every Monday at 9 am Eastern
trigger = client.tasks.triggers.create(
task.id,
type="schedule",
cron="0 9 * * 1",
timezone="America/New_York"
)
Let me know what you think—open for any feedback or ideas!