From f15eaa7d6f0c3fca5e5510affc7545b1accdf9fd Mon Sep 17 00:00:00 2001 From: cybercoder Date: Thu, 22 Feb 2024 21:45:12 +0000 Subject: [PATCH 1/2] Update flow.py --- intelli/flow/flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intelli/flow/flow.py b/intelli/flow/flow.py index 268cdd7..8e5d082 100644 --- a/intelli/flow/flow.py +++ b/intelli/flow/flow.py @@ -92,7 +92,7 @@ async def start(self, max_workers=10): def generate_graph_img(self, name='graph_img', save_path='.', ): if not MATPLOTLIB_AVAILABLE: - raise Exception("Install matplotlib to use the visual functionality")c + raise Exception("Install matplotlib to use the visual functionality") plt.figure(figsize=(10, 10)) pos = nx.spring_layout(self.graph) From 1b37befe4ada11135c1125d4fd423259833600ee Mon Sep 17 00:00:00 2001 From: cybercoder Date: Thu, 22 Feb 2024 21:46:28 +0000 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index de5a6d7..bca2e02 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="intelli", - version="0.1.3", + version="0.1.4", author="Intellinode", author_email="admin@intellinode.ai", description="Create chatbots and AI agent workflows. Intelli provide unified layer to connect your data with multiple AI models like OpenAI, Gemini, and Mistral.",