forked from allenai/molmoact2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1020 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (38 loc) · 1020 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
39
40
41
[project]
name = "molmoact2-policy-server"
version = "0.1.1"
description = "MolmoAct2 inference server (FastAPI)"
readme = "README.md"
requires-python = ">=3.11,<3.13"
dependencies = [
"torch==2.11.0",
"torchvision==0.26.0",
"transformers>=4.57,<4.58",
"accelerate>=1.0",
"safetensors>=0.4",
"huggingface-hub[cli]>=0.36",
"hf-transfer>=0.1.8",
"pillow>=10",
"numpy>=1.26,<3",
"einops>=0.7",
"sentencepiece>=0.2",
"protobuf>=4.25",
"fastapi>=0.116",
"uvicorn[standard]>=0.35",
"json-numpy>=2.1.0",
"mani-skill>=3.0.1",
"tyro>=1.0.13",
"imageio>=2.37.3",
"transforms3d>=0.4.2",
"gymnasium>=1.3.0",
]
[tool.uv]
# Resolve CUDA-12.8 PyTorch wheels from the official PyTorch index.
extra-index-url = ["https://download.pytorch.org/whl/cu128"]
[tool.uv.sources]
torch = { index = "pytorch-cu128" }
torchvision = { index = "pytorch-cu128" }
[[tool.uv.index]]
name = "pytorch-cu128"
url = "https://download.pytorch.org/whl/cu128"
explicit = true