Easy to create
Core Concepts
Easy to Create
Nest simplifies creating AI agents with minimal boilerplate. Define agents, workflows, and tools quickly with intuitive configurations. You can define workflows in just a few lines of TypeScript and expand them as needed.
Example:
import { workflow } from 'nest-ai/workflow';
const analyzeTokenWorkflow = workflow({
task: 'Analyze new tokens on Solana',
team: [tokenScanner, dataAnalyzer, socialMediaMonitor],
});
Last updated