Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: prefix-dev/setup-pixi@v0
with:
pixi-version: "latest"
cache: true
cache: false

- name: Lint
run: pixi run lint
Expand Down
5 changes: 3 additions & 2 deletions docker/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ ENV DEBIAN_FRONTEND=noninteractive \
HF_HOME=/workspace/hf \
HF_DATASETS_CACHE=/workspace/hf/datasets \
HF_HUB_ENABLE_HF_TRANSFER=1 \
PYTHONUNBUFFERED=1
PYTHONUNBUFFERED=1 \
TOKENIZERS_PARALLELISM=false

# System packages (if needed, keep minimal)
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && \
Expand All @@ -30,7 +31,7 @@ RUN pip install "vllm>=0.11.0"

RUN pip install "transformers>=4.52.0"

RUN pip install "llmcompressor"
RUN pip install "llmcompressor>=0.8.0"

# Install llama.cpp for GGUF quantization support
ARG LLAMA_CPP_VERSION=b6945
Expand Down
Loading