Engel Nyst 80fe13f4be rename our completion as a drop-in replacement of litellm completion (#2509) hai 1 ano
..
_instructions a9a2f10170 Revamp AgentRejectAction and allow ManagerAgent to handle rejection (#1735) hai 1 ano
coder 9b371b1b5f Refactor agent delegation and tweak micro agents (#1910) hai 1 ano
commit_writer a9a2f10170 Revamp AgentRejectAction and allow ManagerAgent to handle rejection (#1735) hai 1 ano
manager a9a2f10170 Revamp AgentRejectAction and allow ManagerAgent to handle rejection (#1735) hai 1 ano
math_agent 9b371b1b5f Refactor agent delegation and tweak micro agents (#1910) hai 1 ano
postgres_agent 9b371b1b5f Refactor agent delegation and tweak micro agents (#1910) hai 1 ano
repo_explorer 76abca361c feat: simplify state.history with to_memory call in micro-agent. Or the call to LLM may exceed the token limit. (#1806) hai 1 ano
study_repo_for_task 3b0e1361a4 fix typos (#2267) hai 1 ano
typo_fixer_agent 9b371b1b5f Refactor agent delegation and tweak micro agents (#1910) hai 1 ano
verifier 9b371b1b5f Refactor agent delegation and tweak micro agents (#1910) hai 1 ano
README.md a9a2f10170 Revamp AgentRejectAction and allow ManagerAgent to handle rejection (#1735) hai 1 ano
agent.py 80fe13f4be rename our completion as a drop-in replacement of litellm completion (#2509) hai 1 ano
instructions.py f8d4b1ab0d Use generic types (#1680) hai 1 ano
registry.py 9b371b1b5f Refactor agent delegation and tweak micro agents (#1910) hai 1 ano

README.md

Introduction

This package contains definitions of micro-agents. A micro-agent is defined in the following structure:

[AgentName]
├── agent.yaml
└── prompt.md

Note that prompt.md could use jinja2 template syntax. During runtime, prompt.md is loaded and rendered, and used together with agent.yaml to initialize a micro-agent.

Micro-agents can be used independently. You can also use ManagerAgent which knows how to coordinate the agents and collaboratively finish a task.