Merge pull request #425 from evelynmitchell/master

Fixing dependences
pull/426/head
Eternal Reclaimer 1 year ago committed by GitHub
commit bd7bca8959
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -31,4 +31,4 @@ jobs:
- name: Make Script Executable and Run - name: Make Script Executable and Run
run: | run: |
chmod +x ./swarms/scripts/run_examples.sh chmod +x ./swarms/scripts/run_examples.sh
./swarms/scripts/run_examples.sh ./swarms/scripts/run_examples.sh

@ -30,8 +30,11 @@ transformers = "4.39.0"
asyncio = ">=3.4.3,<4.0" asyncio = ">=3.4.3,<4.0"
einops = "0.7.0" einops = "0.7.0"
google-generativeai = "0.3.1" google-generativeai = "0.3.1"
langchain-experimental = "0.0.10" langchain = "0.1.13"
langchain-core = "0.1.33"
langchain-community = "0.0.29" langchain-community = "0.0.29"
langsmith = "0.1.17"
langchain-openai = "0.0.5"
faiss-cpu = "1.7.4" faiss-cpu = "1.7.4"
backoff = "2.2.1" backoff = "2.2.1"
datasets = "*" datasets = "*"
@ -39,19 +42,18 @@ optimum = "1.15.0"
supervision = "0.19.0" supervision = "0.19.0"
opencv-python = "4.9.0.80" opencv-python = "4.9.0.80"
diffusers = "*" diffusers = "*"
langchain = "0.1.7"
anthropic = "0.2.5" anthropic = "0.2.5"
toml = "*" toml = "*"
pypdf = "4.0.1" pypdf = "4.0.1"
accelerate = "*" accelerate = "*"
sentencepiece = "0.1.98" sentencepiece = "0.1.98"
httpx = "0.24.1" httpx = "0.24.1"
tiktoken = "0.4.0" tiktoken = "0.5.2"
ratelimit = "2.2.1" ratelimit = "2.2.1"
loguru = "0.7.2" loguru = "0.7.2"
huggingface-hub = "*" huggingface-hub = "*"
pydantic = "2.6.4" pydantic = "2.6.4"
tenacity = "8.2.2" tenacity = "8.2.3"
Pillow = "9.4.0" Pillow = "9.4.0"
chromadb = "0.4.24" chromadb = "0.4.24"
termcolor = "2.2.0" termcolor = "2.2.0"
@ -62,6 +64,8 @@ sentence-transformers = "*"
peft = "*" peft = "*"
psutil = "*" psutil = "*"
timm = "*" timm = "*"
supervision = "*"
sentry-sdk = "*"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
black = "23.3.0" black = "23.3.0"

@ -1,8 +1,11 @@
torch==2.1.1 torch==2.1.1
transformers transformers
pandas pandas
langchain==0.1.7 langchain==0.1.13
langchain-experimental langchain-core==0.1.33
langchain-community==0.0.29
langsmith==0.1.17
langchain-openai==0.0.5
httpx==0.24.1 httpx==0.24.1
Pillow==9.4.0 Pillow==9.4.0
datasets==2.14.5 datasets==2.14.5
@ -15,14 +18,13 @@ loguru==0.7.2
optimum optimum
diffusers diffusers
toml toml
tiktoken==0.4.0 tiktoken==0.5.2
colored colored
addict addict
backoff==2.2.1 backoff==2.2.1
ratelimit==2.2.1 ratelimit==2.2.1
termcolor==2.2.0 termcolor==2.2.0
opencv-python==4.9.0.80 opencv-python==4.9.0.80
langchain-community
timm timm
torchvision==0.16.1 torchvision==0.16.1
rich==13.5.2 rich==13.5.2
@ -32,4 +34,7 @@ anthropic==0.2.5
mkdocs-glightbox mkdocs-glightbox
pre-commit==3.6.2 pre-commit==3.6.2
psutil psutil
black black
tenacity
supervision
sentry-sdk
Loading…
Cancel
Save