codeintepretorapi conflict

pull/43/head
Kye 1 year ago
parent a779393220
commit d582ee99d9

@ -3,7 +3,7 @@ from setuptools import setup, find_packages
setup(
name = 'swarms',
packages = find_packages(exclude=[]),
version = '1.2.0',
version = '1.2.1',
license='MIT',
description = 'Swarms - Pytorch',
author = 'Kye Gomez',

@ -5,7 +5,6 @@ import concurrent.futures
import logging
#this needs to change, we need to specify exactly what needs to be imported
from swarms.agents.tools.agent_tools import *
from swarms.swarms.swarms import HierarchicalSwarm
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')

@ -4,7 +4,6 @@ from typing import Dict, List
from langchain.memory.chat_message_histories import FileChatMessageHistory
from swarms.agents.tools.agent_tools import *
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')

@ -1,5 +1,4 @@
import pytest
from swarms.agents.tools.agent_tools import *
from unittest.mock import MagicMock, patch
from swarms.worker.worker_node import WorkerNodeInitializer, WorkerNode # replace your_module with actual module name

Loading…
Cancel
Save