From 80e6305d5d4a9a34349f4ededb17c8323069807b Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 30 Jun 2023 14:02:48 -0400 Subject: [PATCH] set up py requirements.txt --- setup.py | 53 +++++++++++++++++++++++++++++++++++++++-- swarms/agents/swarms.py | 3 --- 2 files changed, 51 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 88cc1007..d67e6f39 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name = 'swarms', packages = find_packages(exclude=[]), - version = '0.0.3', + version = '0.0.4', license='MIT', description = 'Swarms - Pytorch', author = 'Kye Gomez', @@ -17,7 +17,56 @@ setup( "Prompt Engineering" ], install_requires=[ - 'guidance', + "transformers", + "openai", + "langchain==0.0.101", + "torch==1.13.1", + "torchvision==0.14.1", + "asyncio", + "nest_asyncio", + "bs4", + "playwright", + "duckduckgo_search", + "faiss-cpu", + "wget==3.2", + "accelerate", + "addict", + "albumentations", + "basicsr", + "controlnet-aux", + "diffusers", + "einops", + "gradio", + "imageio", + "imageio-ffmpeg", + "invisible-watermark", + "kornia", + "numpy", + "omegaconf", + "open_clip_torch", + "opencv-python", + "prettytable", + "safetensors", + "streamlit", + "test-tube", + "timm", + "torchmetrics", + "webdataset", + "yapf", + "wolframalpha", + "wikipedia", + "httpx", + "ggl", + "gradio_tools", + "arxiv", + "google-api-python-client", + "google-auth-oauthlib", + "google-auth-httplib2", + "beautifulsoup4", + "O365", + "pytube", + "pydub", + "whisperx @ git+https://github.com/m-bain/whisperx.git@v3", ], classifiers=[ 'Development Status :: 4 - Beta', diff --git a/swarms/agents/swarms.py b/swarms/agents/swarms.py index f9cf420b..f4361a06 100644 --- a/swarms/agents/swarms.py +++ b/swarms/agents/swarms.py @@ -89,9 +89,6 @@ llm = ChatOpenAI(model_name="gpt-4", temperature=1.0, openai_api_key="") ####################################################################### => Worker Node -####################################################################### => Worker Node -####################################################################### => Worker Node - class WorkerNode: def __init__(self, llm, tools, vectorstore):