Documentation Index
Fetch the complete documentation index at: https://docs.tembo.io/llms.txt
Use this file to discover all available pages before exploring further.
Create sessions, manage repositories, and automate workflows programmatically.
Documentation Index
Fetch the complete documentation index at: https://docs.tembo.io/llms.txt
Use this file to discover all available pages before exploring further.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.tembo.io/session/list
npm install @tembo-io/sdk
import Tembo from '@tembo-io/sdk';
const client = new Tembo({
apiKey: process.env.TEMBO_API_KEY,
});
const session = await client.session.create({
prompt: 'Fix the authentication bug in the login component',
repositories: ['https://github.com/org/repo'],
});
Was this page helpful?