forked from UFO-101/prompt-interp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "prompt-interp"
version = "0.1.0"
description = "SONAR-LLM experiments - sentence-level language modeling"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"torch>=2.8.0",
"sonar-space>=0.5.0",
"nltk>=3.8",
"transformers>=4.40.0",
"safetensors>=0.4.0",
"huggingface-hub>=0.20.0",
"datasets>=4.4.2",
"ipykernel>=7.1.0",
"python-dotenv>=1.2.1",
"openai>=2.14.0",
"ipywidgets>=8.1.8",
"matplotlib>=3.10.8",
]
[build-system]
requires = ["uv_build>=0.9.7,<0.10.0"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126"
explicit = true
[[tool.uv.index]]
name = "fairseq2"
url = "https://fair.pkg.atmeta.com/fairseq2/whl/pt2.8.0/cu126"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu126" }
fairseq2 = { index = "fairseq2" }