diff --git a/polymind/core_tools/llm_tool.py b/polymind/core_tools/llm_tool.py index 54f5440..377eb7a 100644 --- a/polymind/core_tools/llm_tool.py +++ b/polymind/core_tools/llm_tool.py @@ -7,11 +7,8 @@ import os from typing import List -try: - import anthropic - from openai import AsyncOpenAI -except ImportError: - print("Please install the OpenAI and anthropic package with command:", "poetry install -E openai -E anthropic") +import anthropic +from openai import AsyncOpenAI from pydantic import Field from polymind.core.codegen import CodeGenerationTool diff --git a/pyproject.toml b/pyproject.toml index 2955ddf..f7a2797 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "polymind" -version = "0.0.48" # Update this version before publishing to PyPI +version = "0.0.49" # Update this version before publishing to PyPI description = "PolyMind is a customizable collaborative multi-agent framework for collective intelligence and distributed problem solving." authors = ["TechTao"] license = "MIT License"