-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP ] New planner and plan following for Gaia #99
Conversation
ollmer
commented
Nov 14, 2024
•
edited
Loading
edited
- New node for plain text answers
- New node for formalization of plain text into expected class
- Planner agent for detailed plans.
- Survey facts first, then plan, like magentic
- Explicit links to previous plan steps, plan as DAG.
- ... to be continued
examples/gaia_agent/v2.py
Outdated
return super().create(llm, nodes=nodes, subagents=subagents, max_iterations=2) | ||
|
||
|
||
class GaiaExecutor(Agent): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so that's like a jack-of-all-trades that has all the tools worker, I suppose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, executor without specialization, just like our previous Gaia agent.
Log LLM costs and info
@rizar I'm going to close this as we not intend to merge it in a main in its current form. Some code from this branch will be moved to the new standard node separately. |