parent
bd1c984430
commit
0a07418b53
@ -0,0 +1,48 @@
|
|||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
|
[tool.poetry]
|
||||||
|
name = "swarms"
|
||||||
|
version = "1.3.8"
|
||||||
|
description = "Swarms - Pytorch"
|
||||||
|
license = "MIT"
|
||||||
|
authors = ["Kye Gomez <kye@apac.ai>"]
|
||||||
|
homepage = "https://github.com/kyegomez/swarms"
|
||||||
|
documentation = "" # Add this if you have documentation.
|
||||||
|
readme = "README.md" # Assuming you have a README.md
|
||||||
|
repository = "https://github.com/kyegomez/swarms"
|
||||||
|
keywords = ["artificial intelligence", "deep learning", "optimizers", "Prompt Engineering"]
|
||||||
|
classifiers = [
|
||||||
|
"Development Status :: 4 - Beta",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||||||
|
"License :: OSI Approved :: MIT License",
|
||||||
|
"Programming Language :: Python :: 3.6"
|
||||||
|
]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.6"
|
||||||
|
transformers = "*"
|
||||||
|
openai = "*"
|
||||||
|
langchain = "0.0.240"
|
||||||
|
asyncio = "*"
|
||||||
|
nest_asyncio = "*"
|
||||||
|
pegasusx = "*"
|
||||||
|
google-generativeai = "*"
|
||||||
|
langchain-experimental = "*"
|
||||||
|
playwright = "*"
|
||||||
|
duckduckgo_search = "*"
|
||||||
|
faiss-cpu = "*"
|
||||||
|
wget = "*"
|
||||||
|
httpx = "*"
|
||||||
|
ggl = "*"
|
||||||
|
beautifulsoup4 = "*"
|
||||||
|
pydantic = "*"
|
||||||
|
tenacity = "*"
|
||||||
|
celery = "*"
|
||||||
|
redis = "*"
|
||||||
|
Pillow = "*"
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
# Add development dependencies here
|
@ -1,11 +1,14 @@
|
|||||||
|
|
||||||
#swarms
|
#swarms
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# worker
|
# worker
|
||||||
|
from swarms.workers.worker_node import WorkerNode
|
||||||
|
|
||||||
#boss
|
#boss
|
||||||
|
from swarms.boss.boss_node import BossNode
|
||||||
|
|
||||||
#models
|
#models
|
||||||
|
from swarms.agents.models.anthropic import Anthropic
|
||||||
|
from swarms.agents.models.huggingface import HuggingFaceLLM
|
||||||
|
from swarms.agents.models.palm import GooglePalm
|
||||||
|
from swarms.agents.models.petals import Petals
|
||||||
|
from swarms.agents.models.openai import OpenAI
|
||||||
|
Loading…
Reference in new issue