feat(agent): Display agent actions on the UI

This commit is contained in:
Willie Zutz 2025-06-15 10:56:57 -06:00
parent 29146a03dc
commit 09799a880b
9 changed files with 407 additions and 44 deletions

View file

@ -33,7 +33,6 @@ The system works through these main steps:
- `lib/prompts`: Prompt templates for LLMs
- `lib/chains`: LangChain chains for various operations
- `lib/agents`: LangGraph agents for advanced processing
- `lib/tools`: LangGraph tools for use by agents
- `lib/utils`: Utility functions and types including web content retrieval and processing
## Focus Modes
@ -77,7 +76,6 @@ When working on this codebase, you might need to:
- Create new prompt templates in `/src/lib/prompts`
- Build new chains in `/src/lib/chains`
- Implement new LangGraph agents in `/src/lib/agents`
- Create new tools for LangGraph agents in `/src/lib/tools`
## AI Behavior