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) 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.",