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 dataset/dottxt_ai_outlines_task/task1706/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV LLAMA_CPP_FORCE_CPU=1
ENV PYTORCH_ENABLE_MPS_FALLBACK=1
RUN uv pip install --system -e . && \
uv pip install --system pytest pytest-xdist pytest_mock pytest-asyncio pytest-benchmark pytest-cov && \
uv pip install --system torch transformers sentencepiece xgrammar llama-cpp-python==0.3.16 psutil
uv pip install --system torch "transformers<5" "tokenizers<0.21" sentencepiece xgrammar llama-cpp-python==0.3.16 psutil

# Copy the runner script
COPY runner.sh /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion dataset/dottxt_ai_outlines_task/task1706/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ echo "Installing dependencies..."
uv sync 2>/dev/null || true
uv pip install --system -e .
uv pip install --system pytest pytest-xdist pytest_mock pytest-asyncio pytest-benchmark pytest-cov
uv pip install --system torch transformers sentencepiece xgrammar llama-cpp-python==0.3.16 psutil
uv pip install --system torch "transformers<5" "tokenizers<0.21" sentencepiece xgrammar llama-cpp-python==0.3.16 psutil

# Run tests with timeout
echo "Running tests..."
Expand Down
Loading