2024-03-26 14:38:10 +00:00
|
|
|
"""**Autonomous agents** in the Langchain experimental package include
|
|
|
|
[AutoGPT](https://github.com/Significant-Gravitas/AutoGPT),
|
|
|
|
[BabyAGI](https://github.com/yoheinakajima/babyagi),
|
|
|
|
and [HuggingGPT](https://arxiv.org/abs/2303.17580) agents that
|
|
|
|
interact with language models autonomously.
|
|
|
|
|
|
|
|
These agents have specific functionalities like memory management,
|
|
|
|
task creation, execution chains, and response generation.
|
|
|
|
|
|
|
|
They differ from ordinary agents by their autonomous decision-making capabilities,
|
|
|
|
memory handling, and specialized functionalities for tasks and response.
|
|
|
|
"""
|
2023-07-22 01:44:32 +00:00
|
|
|
from langchain_experimental.autonomous_agents.autogpt.agent import AutoGPT
|
|
|
|
from langchain_experimental.autonomous_agents.baby_agi.baby_agi import BabyAGI
|
2023-07-24 14:36:24 +00:00
|
|
|
from langchain_experimental.autonomous_agents.hugginggpt.hugginggpt import HuggingGPT
|
2023-07-22 01:44:32 +00:00
|
|
|
|
2023-07-24 14:36:24 +00:00
|
|
|
__all__ = ["BabyAGI", "AutoGPT", "HuggingGPT"]
|