1 Star 0 Fork 0

uniailist/ell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
William Guss 提交于 2024-10-12 16:58 . v0.0.14
[tool.poetry]
name = "ell-ai"
version = "0.0.14"
description = "ell - the language model programming library"
authors = ["William Guss <will@lrsys.xyz>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/MadcowD/ell"
packages = [
{ include = "ell", from = "src" }
]
homepage = "https://docs.ell.so"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
include = [
{ path = "src/ell/studio/static", format = ["sdist", "wheel"] },
{ path = "src/ell/studio/static/**/*", format = ["sdist", "wheel"] },
{ path = "src/ell/util/char_bitmaps.npy", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = ">=3.9"
fastapi = "^0.111.1"
numpy = ">=1.26.0"
dill = "^0.3.8"
colorama = "^0.4.6"
cattrs = "^23.2.3"
openai = "^1.51.0"
anthropic = { version = "^0.34.2", optional = true }
groq = { version = "^0.11.0", optional = true }
sqlmodel = "^0.0.21"
uvicorn = "^0.30.3"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
black = "^24.8.0"
pillow = "^10.4.0"
psutil = "^5.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
sphinx = "<8.0.0"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.extras]
# N.B. The `openai` dep is always required, but explicitly providing it via an e.g. "openai" extra
# causes poetry to mark it as optional = true (even if explicitly specified optional = false).
anthropic = ["anthropic"]
groq = ["groq"]
all = ["anthropic", "groq"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ell-studio = "ell.studio.__main__:main"
# [tool.poetry.build]
# # script = "build.py"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/ailist/ell.git
git@gitee.com:ailist/ell.git
ailist
ell
ell
main

搜索帮助