Delegate complex business tasks, automate entire workflows, and scale your operations. Lena is an AI agent that works tirelessly for you, transforming complex processes into simple, on-demand services.
import { Lena } from '@do/sdk';
// Initialize Lena with your API key
const lena = new Lena('YOUR_API_KEY');
// Delegate a market research task to Lena
const researchReport = await lena.do('market-research', {
topic: 'The future of AI in supply chain management',
scope: ['Market trends', 'Key players', 'Regulatory changes', '5-year forecast'],
format: 'PDF_Report'
});
console.log(`Report generated and available at: ${researchReport.url}`);