feat(agent): Split agents into maintainable chunks

This commit is contained in:
Willie Zutz 2025-06-15 11:53:00 -06:00
parent 09799a880b
commit df1a8b6cd2
6 changed files with 678 additions and 586 deletions

4
src/lib/agents/index.ts Normal file
View file

@ -0,0 +1,4 @@
export { AgentState } from './agentState';
export { WebSearchAgent } from './webSearchAgent';
export { AnalyzerAgent } from './analyzerAgent';
export { SynthesizerAgent } from './synthesizerAgent';