Data Processor Template
Pre-built data processing agent for transformation, analysis, and reporting.
Usage
import { createDataProcessor, createLLM } from '@ahzan-agentforge/core';
const agent = createDataProcessor({
llm: createLLM({ provider: 'anthropic', model: 'claude-sonnet-4-20250514' }),
});
const result = await agent.run({
task: 'Analyze this CSV and generate a summary report',
});DataProcessorConfig
interface DataProcessorConfig {
llm: LLM;
// Additional template-specific options
}Included Capabilities
- Data parsing and transformation
- Statistical analysis
- Report generation
- Format conversion
Next Steps
- Code Reviewer — code review template
- Templates Overview — all templates