From 948b14b52a8fbb7097e440fb77b4aad6d0d18977 Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Tue, 11 Apr 2023 08:08:43 -0700 Subject: [PATCH] agents docs and version bump (#2717) --- docs/use_cases/personal_assistants.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/use_cases/personal_assistants.md b/docs/use_cases/personal_assistants.md index 2914da98482..378a376ed04 100644 --- a/docs/use_cases/personal_assistants.md +++ b/docs/use_cases/personal_assistants.md @@ -20,3 +20,5 @@ Highlighting specific parts: Specific examples of this include: - [Baby AGI](agents/baby_agi.ipynb): a notebook implementing [BabyAGI](https://github.com/yoheinakajima/babyagi) by Yohei Nakajima as LLM Chains +- [Baby AGI with Tools](agents/baby_agi_with_agent.ipynb): building off the above notebook, this example substitutes in an agent with tools as the execution tools, allowing it to actually take actions. +- [CAMEL](agents/camel_role_playing.ipynb): an implementation of the CAMEL (Communicative Agents for “Mind” Exploration of Large Scale Language Model Society) paper, where two agents communicate with eachother. diff --git a/pyproject.toml b/pyproject.toml index c45376a4c42..0e71c1c98a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain" -version = "0.0.136" +version = "0.0.137" description = "Building applications with LLMs through composability" authors = [] license = "MIT"