Example Projects
Basic Examples
Text Analysis
import { WhisperMind } from '@molewhisperer/agents';
const agent = new WhisperMind();
const result = await agent.analyze({
text: 'Sample text for analysis',
type: 'sentiment'
});
Data Processing
import { DataHarvester } from '@molewhisperer/agents';
const harvester = new DataHarvester();
const processed = await harvester.process({
data: rawData,
transformations: ['clean', 'normalize']
});
Advanced Examples
Multi-Agent System
import { WhisperMind, DataHarvester } from '@molewhisperer/agents';
const system = new AgentSystem({
agents: {
analyzer: new WhisperMind(),
collector: new DataHarvester()
}
});
const result = await system.process(input);