-
Couldn't load subscription status.
- Fork 24
Initial implementation of a react agent #187
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
base: main
Are you sure you want to change the base?
Conversation
| class IntrospectiveAgentWorker(Workflow): | ||
| pass | ||
|
|
||
|
|
||
| class ToolInteractiveReflectionAgentWorker(Workflow): | ||
| pass | ||
|
|
||
|
|
||
| class LATSAgentWorker(Workflow): | ||
| pass | ||
|
|
||
|
|
||
| class CoAAgentPack(Workflow): | ||
| pass |
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.
I propose that we just get rid of these 'legacy' agents. I don't think it's worth re-implementing them in the new framework.
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.
should I delete them now before ugrading? I will do that as a PR first
| class ReActAgent(Workflow): | ||
| """Implement of RAG using a ReAcT 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.
https://developers.llamaindex.ai/python/examples/agent/react_agent/#run-some-queries
Add a comment to the docstring about how this is different from the builtin react agent
| # Backwards compatibility which used chat | ||
| loop = asyncio.get_event_loop() | ||
| if loop.is_running(): | ||
| raise RuntimeError() |
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.
Add a message to the error
No description provided.