-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (73 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
78 lines (73 loc) · 1.56 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "ML4G2.0"
version = "0.0.1"
requires-python = "~=3.12.0" # Version on colab
dependencies = [
"torch",
"torchvision",
"anthropic",
"black[jupyter]",
"einops",
"gymnasium",
"inspect-ai==0.3.25",
"ipykernel",
"ipywidgets",
"jaxtyping",
"jupyter",
"matplotlib",
"notebook",
"openai",
"pandas",
"plotly",
"pre-commit",
"pygame",
"pytest",
"rich",
"scikit-learn",
"toml",
"tqdm",
"transformer-lens",
"transformer-utils",
"transformers",
"typeguard",
"typer",
"circuitsvis",
"opencv-python",
"inquirerpy",
"google-api-python-client",
"google-auth",
"google-auth-oauthlib",
"google-auth-httplib2",
"streamlit>=1.42.2",
"python-dotenv>=1.0.1",
"streamlit-pills>=0.3.0",
"streamlit-local-storage>=0.0.25",
"litellm>=1.67.0",
"pyyaml>=6.0.2",
"requests>=2.32.0",
"pydantic>=2.10.0",
"joblib>=1.4.2",
"streamlit-product-card>=1.0.0",
"slack-sdk>=3.36.0",
]
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
]
[tool.pytest.ini_options]
pythonpath = ["meta"]
[tool.uv]
package = false
# Use only pytorch-cpu as we don't do GPU intensive things in this project
# It saves a lot of disk space and download time. For GPU it's good practice to test on colab, as it's where most people will run it.
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu" },
]
torchvision = [
{ index = "pytorch-cpu" },
]