Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vec-inf"
version = "0.8.0"
version = "0.8.1"
description = "Efficient LLM inference on Slurm clusters using vLLM."
readme = "README.md"
authors = [{name = "Marshall Wang", email = "marshall.wang@vectorinstitute.ai"}]
Expand Down Expand Up @@ -42,6 +42,9 @@ inference = [
"torch>=2.7.0",
"cupy-cuda12x>=12.3.0",
"flashinfer-python>=0.4.0",
"ax-platform>=1.1.0",
"py3nvml",
"wandb>=0.17.0",
]

[project.optional-dependencies]
Expand All @@ -50,6 +53,9 @@ inference = [
vllm = [
"vllm>=0.11.2",
"ray[default]>=2.51.0",
"vllm[audio]",
"vllm[bench]",
"torchcodec>=0.9.0,<0.10.0",
]
# SGLang inference backend (conflicts with vllm due to dependency version conflicts)
# Install with: uv sync --extra sglang --group inference
Expand Down
2 changes: 1 addition & 1 deletion sglang.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \
wget build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev libffi-dev libncursesw5-dev \
xz-utils tk-dev libxml2-dev libxmlsec1-dev liblzma-dev libnuma1 \
git vim \
git vim ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libswresample-dev \
&& rm -rf /var/lib/apt/lists/*

# Install Python
Expand Down
Loading