(相关资料图)

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 and experimenting with multiple LLMs, usage of different vectorstores as memory, usage of LangChain’s collection of tools.
目前,Autonomous Agents是相当实验性的,并且基于其他开源项目。通过在 LangChain 原语中实现这些开源项目,我们可以获得 LangChain 的好处 - 轻松切换和试验多个 LLM,使用不同的向量存储作为内存,使用 LangChain 的工具集合。

Baby AGI (Original Repo)婴儿AGI

Baby AGI: a notebook implementing BabyAGI as LLM Chains
Baby AGI:将BabyAGI实现为LLM链的笔记本
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.
带有工具的婴儿AGI:在上述笔记本的基础上,此示例将代理替换为工具作为执行工具,使其能够实际执行操作。

AutoGPT (Original Repo) AutoGPT

AutoGPT: a notebook implementing AutoGPT in LangChain primitives
AutoGPT:在 LangChain 原语中实现 AutoGPT 的笔记本
WebSearch Research Assistant: a notebook showing how to use AutoGPT plus specific tools to act as research assistant that can use the web.
WebSearch Research Assistant:一个笔记本,显示如何使用 AutoGPT 以及特定工具充当可以使用网络的研究助手。

MetaPrompt (Original Repo) 元提示符

Meta-Prompt: a notebook implementing Meta-Prompt in LangChain primitives
Meta-Prompt:在LangChain原语中实现Meta-Prompt的笔记本

推荐内容