Create tasks, manage repositories, and automate workflows programmatically.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.tembo.io/task/list
npm install @tembo-io/sdk
import Tembo from '@tembo-io/sdk';
const client = new Tembo({
apiKey: process.env.TEMBO_API_KEY,
});
const task = await client.task.create({
prompt: 'Fix the authentication bug in the login component',
repositories: ['https://github.com/org/repo'],
});
Was this page helpful?