You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/use_cases/autonomous_agents.md

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)

  • AutoGPT: a notebook implementing AutoGPT in LangChain primitives