Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- .gitignore +1 -0
- pyproject.toml +35 -48
- requirements.txt +154 -10
.gitignore
CHANGED
@@ -172,3 +172,4 @@ logs/
|
|
172 |
temp/
|
173 |
|
174 |
.gradio/
|
|
|
|
172 |
temp/
|
173 |
|
174 |
.gradio/
|
175 |
+
.aider*
|
pyproject.toml
CHANGED
@@ -12,53 +12,40 @@ authors = [
|
|
12 |
license = {file = "LICENSE"}
|
13 |
requires-python = ">=3.10"
|
14 |
dependencies = [
|
15 |
-
"requests
|
16 |
-
"numpy
|
17 |
-
"langchain-core
|
18 |
-
"langchain-
|
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 |
-
"torchvision>=0.10.0",
|
50 |
-
"scikit-image>=0.18.0",
|
51 |
-
"pygraphviz>=1.8",
|
52 |
-
"gradio>=5.0.0",
|
53 |
-
"opencv-python>=4.8.0",
|
54 |
-
"matplotlib>=3.8.0",
|
55 |
-
"diffusers>=0.20.0",
|
56 |
-
"pydicom>=2.3.0",
|
57 |
-
"gdcm>=1.0.0",
|
58 |
-
"pylibjpeg>=1.0.0",
|
59 |
-
"jupyter>=1.0.0",
|
60 |
-
"albumentations>=1.0.0",
|
61 |
-
"pyarrow>=10.0.0",
|
62 |
]
|
63 |
|
64 |
[project.optional-dependencies]
|
@@ -88,4 +75,4 @@ ignore_missing_imports = true
|
|
88 |
strict_optional = true
|
89 |
|
90 |
[tool.pytest.ini_options]
|
91 |
-
testpaths = ["tests"]
|
|
|
12 |
license = {file = "LICENSE"}
|
13 |
requires-python = ">=3.10"
|
14 |
dependencies = [
|
15 |
+
"requests==2.31.0",
|
16 |
+
"numpy==1.26.4",
|
17 |
+
"langchain-core==0.3.35",
|
18 |
+
"langchain-openai==0.3.5",
|
19 |
+
"langgraph==0.2.71",
|
20 |
+
"python-dotenv==1.0.0",
|
21 |
+
"pandas==2.2.3",
|
22 |
+
"pydantic==2.5.2",
|
23 |
+
"Pillow==10.1.0",
|
24 |
+
"torchxrayvision==1.3.2",
|
25 |
+
"transformers==4.34.0",
|
26 |
+
"tokenizers==0.15.3",
|
27 |
+
"sentencepiece==0.1.99",
|
28 |
+
"accelerate==0.8.0",
|
29 |
+
"markdown2[all]>=2.4.8",
|
30 |
+
"protobuf==4.25.3",
|
31 |
+
"gradio==5.16.0",
|
32 |
+
"gradio_client==1.7.0",
|
33 |
+
"httpx==0.28.1",
|
34 |
+
"uvicorn==0.34.0",
|
35 |
+
"fastapi==0.115.8",
|
36 |
+
"einops==0.8.1",
|
37 |
+
"tiktoken==0.8.0",
|
38 |
+
"openai==1.62.0",
|
39 |
+
"backoff==2.2.1",
|
40 |
+
"torch==2.6.0.dev20241112",
|
41 |
+
"torchvision==0.20.0.dev20241113",
|
42 |
+
"scikit-image==0.22.0",
|
43 |
+
"opencv-python==4.11.0.86",
|
44 |
+
"matplotlib==3.10.0",
|
45 |
+
"diffusers==0.31.1",
|
46 |
+
"pydicom==3.0.1",
|
47 |
+
"albumentations==2.0.4",
|
48 |
+
"pyarrow==13.0.0",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
]
|
50 |
|
51 |
[project.optional-dependencies]
|
|
|
75 |
strict_optional = true
|
76 |
|
77 |
[tool.pytest.ini_options]
|
78 |
+
testpaths = ["tests"]
|
requirements.txt
CHANGED
@@ -1,10 +1,154 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
accelerate @ file:///croot/huggingface_accelerate_1729686033238/work
|
2 |
+
aiofiles==23.2.1
|
3 |
+
albucore==0.0.23
|
4 |
+
albumentations==2.0.4
|
5 |
+
anaconda-anon-usage @ file:///croot/anaconda-anon-usage_1732732445543/work
|
6 |
+
annotated-types @ file:///croot/annotated-types_1709542908624/work
|
7 |
+
anyio==4.8.0
|
8 |
+
archspec @ file:///croot/archspec_1709217642129/work
|
9 |
+
arrow==1.3.0
|
10 |
+
boltons @ file:///croot/boltons_1737061692168/work
|
11 |
+
Brotli @ file:///croot/brotli-split_1736182456865/work
|
12 |
+
certifi @ file:///croot/certifi_1738623731865/work/certifi
|
13 |
+
cffi @ file:///croot/cffi_1736182485317/work
|
14 |
+
charset-normalizer @ file:///croot/charset-normalizer_1721748349566/work
|
15 |
+
click @ file:///work/perseverance-python-buildout/croot/click_1698845879718/work
|
16 |
+
conda @ file:///croot/conda_1738168370816/work
|
17 |
+
conda-anaconda-telemetry @ file:///croot/conda-anaconda-telemetry_1736524596117/work
|
18 |
+
conda-anaconda-tos @ file:///croot/conda-anaconda-tos_1739298990519/work
|
19 |
+
conda-content-trust @ file:///croot/conda-content-trust_1714483159009/work
|
20 |
+
conda-libmamba-solver @ file:///croot/conda-libmamba-solver_1737733694612/work/src
|
21 |
+
conda-package-handling @ file:///croot/conda-package-handling_1731369017509/work
|
22 |
+
conda_package_streaming @ file:///croot/conda-package-streaming_1731366181659/work
|
23 |
+
contourpy @ file:///croot/contourpy_1732540045555/work
|
24 |
+
cryptography @ file:///croot/cryptography_1732129644106/work
|
25 |
+
cycler @ file:///tmp/build/80754af9/cycler_1637851556182/work
|
26 |
+
diffusers @ file:///work/perseverance-python-buildout/croot/diffusers-suite_1698864257651/work
|
27 |
+
distro @ file:///croot/distro_1714488253808/work
|
28 |
+
einops==0.8.1
|
29 |
+
fastapi==0.115.8
|
30 |
+
ffmpy==0.5.0
|
31 |
+
filelock @ file:///work/perseverance-python-buildout/croot/filelock_1701733993137/work
|
32 |
+
fonttools @ file:///croot/fonttools_1737039080035/work
|
33 |
+
fqdn==1.5.1
|
34 |
+
frozendict @ file:///croot/frozendict_1713194832637/work
|
35 |
+
fsspec @ file:///croot/fsspec_1736274672181/work
|
36 |
+
gmpy2 @ file:///croot/gmpy2_1738085463648/work
|
37 |
+
gradio==5.16.0
|
38 |
+
gradio_client==1.7.0
|
39 |
+
h11==0.14.0
|
40 |
+
httpcore==1.0.7
|
41 |
+
httpx==0.28.1
|
42 |
+
huggingface-hub==0.28.1
|
43 |
+
idna @ file:///croot/idna_1714398848350/work
|
44 |
+
imageio @ file:///croot/imageio_1738159938990/work
|
45 |
+
importlib_metadata @ file:///croot/importlib_metadata-suite_1732633488278/work
|
46 |
+
isoduration==20.11.0
|
47 |
+
Jinja2 @ file:///croot/jinja2_1737760107953/work
|
48 |
+
jiter==0.8.2
|
49 |
+
jsonpatch @ file:///croot/jsonpatch_1714483231291/work
|
50 |
+
jsonpointer==2.1
|
51 |
+
kiwisolver @ file:///croot/kiwisolver_1737039087198/work
|
52 |
+
langchain-core==0.3.35
|
53 |
+
langchain-openai==0.3.5
|
54 |
+
langgraph==0.2.71
|
55 |
+
langgraph-checkpoint==2.0.13
|
56 |
+
langgraph-sdk==0.1.51
|
57 |
+
langsmith==0.3.8
|
58 |
+
latex2mathml==3.77.0
|
59 |
+
lazy_loader @ file:///croot/lazy_loader_1718176737906/work
|
60 |
+
libmambapy @ file:///croot/mamba-split_1734469461757/work/libmambapy
|
61 |
+
markdown-it-py @ file:///work/perseverance-python-buildout/croot/markdown-it-py_1698846045803/work
|
62 |
+
MarkupSafe==2.1.5
|
63 |
+
matplotlib==3.10.0
|
64 |
+
mdurl @ file:///work/perseverance-python-buildout/croot/mdurl_1698845653285/work
|
65 |
+
menuinst @ file:///croot/menuinst_1738943416351/work
|
66 |
+
mkl-service==2.4.0
|
67 |
+
mkl_fft @ file:///io/mkl313/mkl_fft_1730824109137/work
|
68 |
+
mkl_random @ file:///io/mkl313/mkl_random_1730823916628/work
|
69 |
+
mpmath @ file:///work/perseverance-python-buildout/croot/mpmath_1698864994882/work
|
70 |
+
msgpack==1.1.0
|
71 |
+
networkx @ file:///croot/networkx_1737039604450/work
|
72 |
+
numpy @ file:///croot/numpy_and_numpy_base_1708638617955/work/dist/numpy-1.26.4-cp312-cp312-linux_x86_64.whl#sha256=1d700f51d8b4fa684d858c9e3b56b1656bc5c82b6b79ff08d4e3b491c430059f
|
73 |
+
openai==1.62.0
|
74 |
+
opencv-python==4.11.0.86
|
75 |
+
opencv-python-headless==4.11.0.86
|
76 |
+
orjson==3.10.15
|
77 |
+
packaging @ file:///croot/packaging_1734472117206/work
|
78 |
+
pandas==2.2.3
|
79 |
+
pillow @ file:///croot/pillow_1738010226202/work
|
80 |
+
platformdirs @ file:///work/perseverance-python-buildout/croot/platformdirs_1701732573265/work
|
81 |
+
pluggy @ file:///croot/pluggy_1733169602837/work
|
82 |
+
ply @ file:///work/perseverance-python-buildout/croot/ply_1698846188635/work
|
83 |
+
protobuf==4.25.3
|
84 |
+
psutil @ file:///croot/psutil_1736367091698/work
|
85 |
+
pyarrow @ file:///croot/pyarrow_1738229418212/work/python
|
86 |
+
pycosat @ file:///croot/pycosat_1736868416091/work
|
87 |
+
pycparser==2.22
|
88 |
+
pydantic @ file:///croot/pydantic_1734736067156/work
|
89 |
+
pydantic_core @ file:///croot/pydantic-core_1734726052986/work
|
90 |
+
pydicom==3.0.1
|
91 |
+
pydub==0.25.1
|
92 |
+
Pygments @ file:///work/perseverance-python-buildout/croot/pygments_1698846270603/work
|
93 |
+
pyparsing @ file:///croot/pyparsing_1731445506121/work
|
94 |
+
PyQt5==5.15.10
|
95 |
+
PyQt5_sip @ file:///croot/pyqt-split_1736540531116/work/pyqt_sip
|
96 |
+
PySocks @ file:///work/perseverance-python-buildout/croot/pysocks_1698845478203/work
|
97 |
+
python-dateutil @ file:///croot/python-dateutil_1716495738603/work
|
98 |
+
python-dotenv @ file:///work/perseverance-python-buildout/croot/python-dotenv_1698846722824/work
|
99 |
+
python-multipart==0.0.20
|
100 |
+
pytz==2025.1
|
101 |
+
PyYAML @ file:///croot/pyyaml_1728657952215/work
|
102 |
+
regex @ file:///croot/regex_1736540786412/work
|
103 |
+
requests @ file:///croot/requests_1730999120400/work
|
104 |
+
requests-toolbelt==1.0.0
|
105 |
+
rich @ file:///croot/rich_1732638981168/work
|
106 |
+
ruamel.yaml @ file:///croot/ruamel.yaml_1727980156079/work
|
107 |
+
ruamel.yaml.clib @ file:///croot/ruamel.yaml.clib_1727769819935/work
|
108 |
+
ruff==0.9.6
|
109 |
+
safehttpx==0.1.6
|
110 |
+
safetensors @ file:///croot/safetensors_1732227615904/work
|
111 |
+
scikit-image @ file:///croot/scikit-image_1737476515437/work
|
112 |
+
scipy @ file:///croot/scipy_1737122901252/work/dist/scipy-1.15.1-cp312-cp312-linux_x86_64.whl#sha256=7b1b0001c943e119509d010e5cbb4950dd6e325a83ca2510a25f139dac6d66a8
|
113 |
+
semantic-version==2.10.0
|
114 |
+
sentencepiece @ file:///croot/sentencepiece-split_1722874460693/work/python
|
115 |
+
setuptools==75.8.0
|
116 |
+
shellingham==1.5.4
|
117 |
+
simsimd==6.2.1
|
118 |
+
sip @ file:///croot/sip_1736541134699/work
|
119 |
+
six==1.17.0
|
120 |
+
sniffio==1.3.1
|
121 |
+
starlette==0.45.3
|
122 |
+
stringzilla==3.11.3
|
123 |
+
svgwrite==1.4.3
|
124 |
+
sympy==1.13.1
|
125 |
+
tenacity==9.0.0
|
126 |
+
tifffile @ file:///croot/tifffile_1734340907867/work
|
127 |
+
tiktoken==0.8.0
|
128 |
+
tinycss2==1.4.0
|
129 |
+
tokenizers @ file:///work/perseverance-python-buildout/croot/tokenizers_1712349809528/work
|
130 |
+
tomlkit==0.13.2
|
131 |
+
torch==2.6.0.dev20241112
|
132 |
+
torchaudio==2.5.0.dev20241113
|
133 |
+
torchvision==0.20.0.dev20241113
|
134 |
+
torchxrayvision==1.3.2
|
135 |
+
tornado @ file:///croot/tornado_1733960490606/work
|
136 |
+
tqdm @ file:///croot/tqdm_1738943501192/work
|
137 |
+
transformers @ file:///croot/transformers_1733859171559/work
|
138 |
+
triton==3.1.0
|
139 |
+
truststore @ file:///croot/truststore_1736550121485/work
|
140 |
+
typer==0.15.1
|
141 |
+
types-python-dateutil==2.9.0.20241206
|
142 |
+
typing_extensions @ file:///croot/typing_extensions_1734714854207/work
|
143 |
+
tzdata==2025.1
|
144 |
+
unicodedata2 @ file:///croot/unicodedata2_1736541023050/work
|
145 |
+
uri-template==1.3.0
|
146 |
+
urllib3 @ file:///croot/urllib3_1737133630106/work
|
147 |
+
uvicorn==0.34.0
|
148 |
+
wavedrom==2.0.3.post3
|
149 |
+
webcolors==24.11.1
|
150 |
+
webencodings==0.5.1
|
151 |
+
websockets==14.2
|
152 |
+
wheel==0.45.1
|
153 |
+
zipp @ file:///croot/zipp_1732630741423/work
|
154 |
+
zstandard @ file:///croot/zstandard_1731356346222/work
|