Open lightaime opened 1 year ago
These are the most useful ones I have found other than Camel:
These are all kinda similar, AutoGPT and BabyAGI were first but honestly I have never been able to get them to produce anything, Cursor.so is probably ahead of everyone tbh.
Further investigation required on the below:
These are the most useful ones I have found other than Camel:
- Cursor.so (agent builtin to vscodium)
- Smol-developer
- GPTEngineer
These are all kinda similar, AutoGPT and BabyAGI were first but honestly I have never been able to get them to produce anything, Cursor.so is probably ahead of everyone tbh.
Further investigation required on the below:
- SmartGPT
- Ecoute (very basic but could be a super powerful assistant)
- Agent-LLM
- Agent-Mimir
- IX
- SuperAGI
- AgentForge
Thanks @markf278. That is very useful! We will look into it.
This might be more appropriate, list of known Agent Architectures: ReACT (AutoGPT) Reflexion ReWOO SwiftSage ADEPT (SmartGPT)
For the individual agent apps, after looking at 20+ ...we have come to the conclusion that the best thing to do is to read the prompts, if some new agent comes out just check its prompts.
Some other very interesting agents/prompts you should check out:
This might be more appropriate, list of known Agent Architectures: ReACT (AutoGPT) Reflexion ReWOO SwiftSage ADEPT (SmartGPT)
For the individual agent apps, after looking at 20+ ...we have come to the conclusion that the best thing to do is to read the prompts, if some new agent comes out just check its prompts.
Some other very interesting agents/prompts you should check out:
Thanks @markf278! We will look into it.
Here is a huge list of agents that is being kept up to date:
What I would really like Camel to do is to take an existing project and improve it, it could also have options for Refactor or Debug.
For example: If you had the initial loop save the code snippets from the chat history into appropriate files, the above could be options at the end of each run, continue/improve, refactor, generate_tests/debug.
I briefly go through these papers and notice they share a lot in common, for example: BabyAGI: chat agent + task agent (for creating and prioritizing tasks) NegotiationAgent: chat agent + critic agent (for improving chat agents) RepeatedGamesAgent: chat agent + predict agent (for predicting other player’s actions before making a choice) I believe we have discussed in zoom before, just want to confirm the idea: we may fulfill each single functionality in task agent, critic agent and more, then build Babyagi or NegotiationAgent through composition. If you think it's good, I will go ahead and implement in this way. @lightaime @Benjamin-eecs
Hi, @hychen-naza this is exactly what we want to do. A good first step will be to decompose the BabyAGIAgent
. Some of the task-related task agents like the task_creation_agent
and task_prioritization_agent
can be implemented as separate task agents like TaskSpecifyAgent
. https://github.com/camel-ai/camel/blob/7a09b36761866196339a6abb1c473c67b6ccc960/camel/agents/task_agent.py#L23
Required prerequisites
Motivation
CAMEL
is a framework to implement and organize different agents. We would like to use it to implement more SOTA LLM agents for people to easier use, build and compare. Here is a list of agents that we are interested in implementing. Please add your favorite ones:Solution
No response
Alternatives
No response
Additional context
No response