2023-03-16 07:38:03 +00:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "tabby"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = ""
|
|
|
|
|
authors = ["Meng Zhang <meng@tabbyml.com>"]
|
|
|
|
|
license = "Apache 2.0"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.10"
|
2023-03-16 09:26:43 +00:00
|
|
|
datasets = "^2.10.1"
|
|
|
|
|
transformers = "^4.27.1"
|
2023-03-20 14:12:05 +00:00
|
|
|
fastapi = "^0.95.0"
|
|
|
|
|
uvicorn = "^0.21.1"
|
|
|
|
|
tritonclient = {extras = ["all"], version = "^2.31.0"}
|
2023-03-22 15:18:12 +00:00
|
|
|
streamlit = "^1.20.0"
|
|
|
|
|
loguru = "^0.6.0"
|
2023-03-25 06:44:46 +00:00
|
|
|
gitup = "^0.5.1"
|
|
|
|
|
toml = "^0.10.2"
|
|
|
|
|
gitpython = "^3.1.31"
|
2023-03-28 07:57:13 +00:00
|
|
|
peft = {git = "https://github.com/huggingface/peft.git", rev = "v0.2.0"}
|
2023-03-28 12:12:03 +00:00
|
|
|
duckdb = "^0.7.1"
|
2023-03-29 12:23:11 +00:00
|
|
|
torch = "^2.0.0"
|
2023-03-29 12:47:44 +00:00
|
|
|
bitsandbytes = "^0.37.2"
|
2023-04-13 07:02:12 +00:00
|
|
|
meilisearch = "^0.26.0"
|
2023-03-16 07:38:03 +00:00
|
|
|
|
2023-03-16 09:26:43 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-03-16 09:53:11 +00:00
|
|
|
pre-commit = "^3.1.1"
|
2023-03-16 09:26:43 +00:00
|
|
|
|
2023-03-16 07:38:03 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|