DEV Community

Jacob
Jacob

Posted on

Python SDK for building autonomous AI teammates

I made an SDK to quickly deploy agents in a hosted sandbox runtime:

  • 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 9am Eastern
trigger = client.tasks.triggers.create(
    task.id,
    type="schedule",
    cron="0 9 * * 1",
    timezone="America/New_York"
)
Enter fullscreen mode Exit fullscreen mode

Let me know what you think. Open for any feedback or ideas!

See more here https://www.m8tes.ai/developers

Top comments (0)