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