From 9876eff589755a3f7e619d7efafe193abc1790c8 Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 21 Jul 2023 19:21:20 -0400 Subject: [PATCH] clean up --- setup.py | 2 +- swarms/agents/utils/ConversationalChatAgent.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e0fd2cd9..67de7abc 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name = 'swarms', packages = find_packages(exclude=[]), - version = '0.9.1', + version = '0.9.2', license='MIT', description = 'Swarms - Pytorch', author = 'Kye Gomez', diff --git a/swarms/agents/utils/ConversationalChatAgent.py b/swarms/agents/utils/ConversationalChatAgent.py index b0a2ebef..ed9fc3a4 100644 --- a/swarms/agents/utils/ConversationalChatAgent.py +++ b/swarms/agents/utils/ConversationalChatAgent.py @@ -26,7 +26,7 @@ from langchain.agents.agent import AgentOutputParser from langchain.schema import AgentAction -from .prompts import EVAL_TOOL_RESPONSE +from swarms.agents.utils.prompts import EVAL_TOOL_RESPONSE