Skip to content
Draft
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 .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.12
19 changes: 13 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name = "openpipe-art"
version = "0.4.7"
description = "The OpenPipe Agent Reinforcement Training (ART) library"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.12,<3.13"
dependencies = [
"openai>=1.65.5,<=1.99.1",
"openai==1.99.5",
"typer>=0.15.2",
"litellm>=1.63.0",
"weave>=0.51.51",
Expand All @@ -18,9 +18,9 @@ backend = [
"peft>=0.14.0",
"hf-xet>=1.1.0",
"bitsandbytes>=0.45.2",
"unsloth==2025.8.1",
"unsloth-zoo==2025.8.1",
"vllm==0.10.0",
# "unsloth==2025.8.1",
"unsloth-zoo",
"vllm==0.10.1+gptoss",
"torchtune",
"trl>=0.19.0",
"torch>=2.7.0",
Expand Down Expand Up @@ -86,11 +86,18 @@ dev-dependencies = [
"black>=25.1.0",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"openpipe>=4.49.0",
# "openpipe>=4.49.0",
"hatch>=1.14.1",
"ruff>=0.12.1",
"pyright>=1.1.403",
]
extra-index-url = [
"https://wheels.vllm.ai/gpt-oss/",
"https://download.pytorch.org/whl/nightly/cu128",
]
index-strategy = "unsafe-best-match"
prerelease = "allow"


[tool.uv.sources]
panza = { git = "https://github.com/corbt/panza.git" }
Expand Down
6 changes: 6 additions & 0 deletions scripts/install-gpt-oss-vllm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

uv pip install --python .venv --pre vllm==0.10.1+gptoss \
--extra-index-url https://wheels.vllm.ai/gpt-oss/ \
--extra-index-url https://download.pytorch.org/whl/nightly/cu128 \
--index-strategy unsafe-best-match
Loading
Loading