forked from Archives/langchain
f329196cf4
Creating an experimental agents folder, containing BabyAGI, AutoGPT, and later, other examples --------- Co-authored-by: Rahul Behal <rahulbehal01@hotmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
1.1 KiB
1.1 KiB
Autonomous Agents
Autonomous Agents are agents that designed to be more long running. You give them one or multiple long term goals, and they independently execute towards those goals. The applications combine tool usage and long term memory.
At the moment, Autonomous Agents are fairly experimental and based off of other open-source projects. By implementing these open source projects in LangChain primitives we can get the benefits of LangChain - easy switching an experimenting with multiple LLMs, usage of different vectorstores as memory, usage of LangChain's collection of tools.
Baby AGI (Original Repo)
- Baby AGI: a notebook implementing BabyAGI as LLM Chains
- Baby AGI with Tools: building off the above notebook, this example substitutes in an agent with tools as the execution tools, allowing it to actually take actions.
AutoGPT ([Original Repo] (https://github.com/Significant-Gravitas/Auto-GPT))
- AutoGPT: a notebook implementing AutoGPT in LangChain primitives