From 8965a2f0afa14a13b94b34a4d6f4ea5cf669b1bd Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Tue, 14 Mar 2023 11:12:53 -0700 Subject: [PATCH] bump and hotfix (#1665) --- langchain/agents/conversational_chat/base.py | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/langchain/agents/conversational_chat/base.py b/langchain/agents/conversational_chat/base.py index 509fe870..94afc855 100644 --- a/langchain/agents/conversational_chat/base.py +++ b/langchain/agents/conversational_chat/base.py @@ -55,6 +55,10 @@ class ConversationalChatAgent(Agent): output_parser: BaseOutputParser + @property + def _agent_type(self) -> str: + raise NotImplementedError + @property def observation_prefix(self) -> str: """Prefix to append the observation with.""" diff --git a/pyproject.toml b/pyproject.toml index f6dbde14..68f6e1be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain" -version = "0.0.110" +version = "0.0.111" description = "Building applications with LLMs through composability" authors = [] license = "MIT"