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: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ export PATH="/home/$USER/.elan/bin:$PATH"
# Standard vLLM models (Llama, Mistral, DeepSeek, etc.)
pip install copra-theorem-prover[os_models]

# GPT-OSS-20b (custom vLLM build with reasoning token support)
pip install copra-theorem-prover[gpt_oss]
pip install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cu128
# Adjust CUDA version (cu118, cu121, cu128) based on your GPU
```
Expand Down
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]

dependencies = [
"itp-interface>=1.10.0",
"itp-interface>=1.11.0",
"openai>=1.99.1",
"tiktoken>=0.12.0", # Updated: 0.4.0 incompatible with Python 3.14t, needs PyO3 0.23+ for free-threading
"sentencepiece>=0.2.0", # Updated: 0.1.99 lacks Python 3.14t wheels, 0.2.1 has cp314t support
Expand All @@ -41,10 +41,7 @@ dependencies = [

[project.optional-dependencies]
os_models = [
"vllm>=0.19.0; python_version < '3.13'", # Optional: Open-source model support with vLLM (requires Python ≤ 3.12)
]
gpt_oss = [
"vllm==0.10.2"
"vllm>=0.22.0; python_version < '3.13'", # Optional: Open-source model support with vLLM (requires Python ≤ 3.12)
]
ui = [
"gradio>=4.0.0,<5.50", # Optional: UI features, requires huggingface-hub which pulls hf-xet (no Python 3.14t support yet)
Expand Down
36 changes: 0 additions & 36 deletions requirements.txt

This file was deleted.

Loading