Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies = [
# Document Q&A (llmstack ask)
ask = ["numpy>=1.24", "pymupdf>=1.27.2.3", "python-docx>=1.2.0"]
# API gateway server
gateway = ["fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=5.0", "httpx[http2]>=0.27"]
gateway = ["fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=8.0.0", "httpx[http2]>=0.27"]
# Fine-tuning pipeline (llmstack finetune)
finetune = [
"transformers>=4.45",
Expand All @@ -57,7 +57,7 @@ dev = [
"ruff>=0.15.15",
"fastapi>=0.136.3",
"starlette>=1.2.1",
"redis>=5.0",
"redis>=8.0.0",
"httpx[http2]>=0.27",
"fakeredis>=2.21",
"pre-commit>=4.6.0",
Expand All @@ -71,7 +71,7 @@ watch = ["httpx>=0.27"]
# Everything except finetune (which needs a GPU)
all = [
"numpy>=1.24", "pymupdf>=1.27.2.3", "python-docx>=1.2.0",
"fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=5.0",
"fastapi>=0.136.3", "uvicorn[standard]>=0.49.0", "starlette>=1.2.1", "redis>=8.0.0",
"httpx[http2]>=0.27",
"transformers>=4.45", "peft>=0.13", "trl>=0.12",
"datasets>=3.0", "bitsandbytes>=0.44", "accelerate>=1.13.0",
Expand Down
Loading