Lexi is an AI-powered agent that understands complex requests, breaks them down into tasks, and executes them for you. Delegate anything, from data analysis to customer support, with a simple API call.
import { lexi } from '@do/sdk';
// Give Lexi a complex, multi-step task
const marketAnalysisReport = await lexi.do({
task: "Perform a comprehensive market analysis for a new AI-powered email client.",
objectives: [
"Identify top 5 competitors and their market share.",
"Analyze current market trends and user sentiment.",
"Suggest a target audience and key messaging points."
],
format: "markdown"
});
console.log(marketAnalysisReport);