feat(agent): Add task manager. Agent feels pretty useful now?

This commit is contained in:
Willie Zutz 2025-06-21 16:12:19 -06:00
parent 60d36ab8f4
commit 7b127e5635
14 changed files with 634 additions and 55 deletions

View file

@ -1,12 +1,14 @@
import { webSearchResponsePrompt, webSearchRetrieverPrompt } from './webSearch';
import { localResearchPrompt } from './localResearch';
import { chatPrompt } from './chat';
import { taskBreakdownPrompt } from './taskBreakdown';
const prompts = {
webSearchResponsePrompt,
webSearchRetrieverPrompt,
localResearchPrompt,
chatPrompt,
taskBreakdownPrompt,
};
export default prompts;