Use a powerful AI agent to distill long-form text into concise, actionable insights. Go from information overload to key takeaways in a single API call.
import { dot } from '@do/sdk';
const longText = `
Agentic workflow platforms represent a paradigm shift in automation.
Unlike traditional robotic process automation (RPA) which relies on brittle,
scripted tasks, agentic systems use autonomous AI agents to reason, plan,
and execute complex business processes. They can understand ambiguous
instructions, adapt to changing environments, and even collaborate with
human teams. This enables businesses to automate not just simple tasks,
but entire value streams, delivering services-as-software through
simple, programmable interfaces like APIs and SDKs.
`;
const summary = await dot.summarize({
text: longText,
format: 'bullet-points',
length: 'concise'
});
console.log(summary);