Sachi Wagaarachchi
commited on
Commit
·
7dcaaa7
1
Parent(s):
b592caa
updated reqs
Browse files- pyproject.toml +2 -1
- requirements.txt +110 -236
pyproject.toml
CHANGED
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
6 |
name = "gradio-qwen-app"
|
7 |
version = "0.1.0"
|
8 |
description = "Gradio app with Qwen models"
|
9 |
-
requires-python = "==3.12"
|
10 |
dependencies = [
|
11 |
"gradio",
|
12 |
"transformers",
|
@@ -14,6 +14,7 @@ dependencies = [
|
|
14 |
"accelerate",
|
15 |
"huggingface_hub",
|
16 |
"gradio==5.29.0",
|
|
|
17 |
]
|
18 |
|
19 |
[tool.setuptools]
|
|
|
6 |
name = "gradio-qwen-app"
|
7 |
version = "0.1.0"
|
8 |
description = "Gradio app with Qwen models"
|
9 |
+
requires-python = "==3.12.*"
|
10 |
dependencies = [
|
11 |
"gradio",
|
12 |
"transformers",
|
|
|
14 |
"accelerate",
|
15 |
"huggingface_hub",
|
16 |
"gradio==5.29.0",
|
17 |
+
"poetry>=2.1.3",
|
18 |
]
|
19 |
|
20 |
[tool.setuptools]
|
requirements.txt
CHANGED
@@ -1,236 +1,110 @@
|
|
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 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
# via torch
|
112 |
-
nvidia-curand-cu12==10.3.2.106 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
113 |
-
# via torch
|
114 |
-
nvidia-cusolver-cu12==11.4.5.107 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
115 |
-
# via torch
|
116 |
-
nvidia-cusparse-cu12==12.1.0.106 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
117 |
-
# via
|
118 |
-
# nvidia-cusolver-cu12
|
119 |
-
# torch
|
120 |
-
nvidia-nccl-cu12==2.19.3 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
121 |
-
# via torch
|
122 |
-
nvidia-nvjitlink-cu12==12.6.85 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
123 |
-
# via
|
124 |
-
# nvidia-cusolver-cu12
|
125 |
-
# nvidia-cusparse-cu12
|
126 |
-
nvidia-nvtx-cu12==12.1.105 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
127 |
-
# via torch
|
128 |
-
orjson==3.10.18
|
129 |
-
# via gradio
|
130 |
-
packaging==25.0
|
131 |
-
# via
|
132 |
-
# accelerate
|
133 |
-
# gradio
|
134 |
-
# gradio-client
|
135 |
-
# huggingface-hub
|
136 |
-
# transformers
|
137 |
-
pandas==2.2.3
|
138 |
-
# via gradio
|
139 |
-
pillow==11.2.1
|
140 |
-
# via gradio
|
141 |
-
psutil==7.0.0
|
142 |
-
# via accelerate
|
143 |
-
pydantic==2.11.4
|
144 |
-
# via
|
145 |
-
# fastapi
|
146 |
-
# gradio
|
147 |
-
pydantic-core==2.33.2
|
148 |
-
# via pydantic
|
149 |
-
pydub==0.25.1
|
150 |
-
# via gradio
|
151 |
-
pygments==2.19.1 ; sys_platform != 'emscripten'
|
152 |
-
# via rich
|
153 |
-
python-dateutil==2.9.0.post0
|
154 |
-
# via pandas
|
155 |
-
python-multipart==0.0.20
|
156 |
-
# via gradio
|
157 |
-
pytz==2025.2
|
158 |
-
# via pandas
|
159 |
-
pyyaml==6.0.2
|
160 |
-
# via
|
161 |
-
# accelerate
|
162 |
-
# gradio
|
163 |
-
# huggingface-hub
|
164 |
-
# transformers
|
165 |
-
regex==2024.11.6
|
166 |
-
# via transformers
|
167 |
-
requests==2.32.3
|
168 |
-
# via
|
169 |
-
# huggingface-hub
|
170 |
-
# transformers
|
171 |
-
rich==14.0.0 ; sys_platform != 'emscripten'
|
172 |
-
# via typer
|
173 |
-
ruff==0.11.8 ; sys_platform != 'emscripten'
|
174 |
-
# via gradio
|
175 |
-
safehttpx==0.1.6
|
176 |
-
# via gradio
|
177 |
-
safetensors==0.5.3
|
178 |
-
# via
|
179 |
-
# accelerate
|
180 |
-
# transformers
|
181 |
-
semantic-version==2.10.0
|
182 |
-
# via gradio
|
183 |
-
shellingham==1.5.4 ; sys_platform != 'emscripten'
|
184 |
-
# via typer
|
185 |
-
six==1.17.0
|
186 |
-
# via python-dateutil
|
187 |
-
sniffio==1.3.1
|
188 |
-
# via anyio
|
189 |
-
starlette==0.46.2
|
190 |
-
# via
|
191 |
-
# fastapi
|
192 |
-
# gradio
|
193 |
-
sympy==1.14.0
|
194 |
-
# via torch
|
195 |
-
tokenizers==0.21.1
|
196 |
-
# via transformers
|
197 |
-
tomlkit==0.13.2
|
198 |
-
# via gradio
|
199 |
-
torch==2.2.0
|
200 |
-
# via
|
201 |
-
# accelerate
|
202 |
-
# gradio-qwen-app
|
203 |
-
tqdm==4.67.1
|
204 |
-
# via
|
205 |
-
# huggingface-hub
|
206 |
-
# transformers
|
207 |
-
transformers==4.48.3
|
208 |
-
# via gradio-qwen-app
|
209 |
-
triton==2.2.0 ; platform_machine == 'x86_64' and sys_platform == 'linux'
|
210 |
-
# via torch
|
211 |
-
typer==0.15.3 ; sys_platform != 'emscripten'
|
212 |
-
# via gradio
|
213 |
-
typing-extensions==4.13.2
|
214 |
-
# via
|
215 |
-
# anyio
|
216 |
-
# fastapi
|
217 |
-
# gradio
|
218 |
-
# gradio-client
|
219 |
-
# huggingface-hub
|
220 |
-
# pydantic
|
221 |
-
# pydantic-core
|
222 |
-
# torch
|
223 |
-
# typer
|
224 |
-
# typing-inspection
|
225 |
-
typing-inspection==0.4.0
|
226 |
-
# via pydantic
|
227 |
-
tzdata==2025.2
|
228 |
-
# via pandas
|
229 |
-
urllib3==2.4.0
|
230 |
-
# via
|
231 |
-
# gradio
|
232 |
-
# requests
|
233 |
-
uvicorn==0.34.2 ; sys_platform != 'emscripten'
|
234 |
-
# via gradio
|
235 |
-
websockets==14.2
|
236 |
-
# via gradio-client
|
|
|
1 |
+
accelerate==1.6.0 ; python_version == "3.12"
|
2 |
+
aiofiles==24.1.0 ; python_version == "3.12"
|
3 |
+
annotated-types==0.7.0 ; python_version == "3.12"
|
4 |
+
anyio==4.9.0 ; python_version == "3.12"
|
5 |
+
build==1.2.2.post1 ; python_version == "3.12"
|
6 |
+
cachecontrol==0.14.3 ; python_version == "3.12"
|
7 |
+
certifi==2025.4.26 ; python_version == "3.12"
|
8 |
+
cffi==1.17.1 ; (sys_platform == "linux" or sys_platform == "darwin" or platform_python_implementation == "PyPy") and python_version == "3.12"
|
9 |
+
charset-normalizer==3.4.2 ; python_version == "3.12"
|
10 |
+
cleo==2.1.0 ; python_version == "3.12"
|
11 |
+
click==8.1.8 ; python_version == "3.12" and sys_platform != "emscripten"
|
12 |
+
colorama==0.4.6 ; (platform_system == "Windows" or os_name == "nt") and python_version == "3.12"
|
13 |
+
crashtest==0.4.1 ; python_version == "3.12"
|
14 |
+
cryptography==44.0.3 ; python_version == "3.12" and sys_platform == "linux"
|
15 |
+
distlib==0.3.9 ; python_version == "3.12"
|
16 |
+
dulwich==0.22.8 ; python_version == "3.12"
|
17 |
+
fastapi==0.115.12 ; python_version == "3.12"
|
18 |
+
fastjsonschema==2.21.1 ; python_version == "3.12"
|
19 |
+
ffmpy==0.3.2 ; python_version == "3.12"
|
20 |
+
filelock==3.18.0 ; python_version == "3.12"
|
21 |
+
findpython==0.6.3 ; python_version == "3.12"
|
22 |
+
fsspec==2025.3.2 ; python_version == "3.12"
|
23 |
+
gradio-client==1.10.0 ; python_version == "3.12"
|
24 |
+
gradio==5.29.0 ; python_version == "3.12"
|
25 |
+
groovy==0.1.2 ; python_version == "3.12"
|
26 |
+
h11==0.16.0 ; python_version == "3.12"
|
27 |
+
httpcore==1.0.9 ; python_version == "3.12"
|
28 |
+
httpx==0.28.1 ; python_version == "3.12"
|
29 |
+
huggingface-hub==0.30.2 ; python_version == "3.12"
|
30 |
+
idna==3.10 ; python_version == "3.12"
|
31 |
+
installer==0.7.0 ; python_version == "3.12"
|
32 |
+
jaraco-classes==3.4.0 ; python_version == "3.12"
|
33 |
+
jaraco-context==6.0.1 ; python_version == "3.12"
|
34 |
+
jaraco-functools==4.1.0 ; python_version == "3.12"
|
35 |
+
jeepney==0.9.0 ; python_version == "3.12" and sys_platform == "linux"
|
36 |
+
jinja2==3.1.6 ; python_version == "3.12"
|
37 |
+
keyring==25.6.0 ; python_version == "3.12"
|
38 |
+
markdown-it-py==3.0.0 ; python_version == "3.12" and sys_platform != "emscripten"
|
39 |
+
markupsafe==3.0.2 ; python_version == "3.12"
|
40 |
+
mdurl==0.1.2 ; python_version == "3.12" and sys_platform != "emscripten"
|
41 |
+
more-itertools==10.7.0 ; python_version == "3.12"
|
42 |
+
mpmath==1.3.0 ; python_version == "3.12"
|
43 |
+
msgpack==1.1.0 ; python_version == "3.12"
|
44 |
+
networkx==3.4.2 ; python_version == "3.12"
|
45 |
+
numpy==2.2.5 ; python_version == "3.12"
|
46 |
+
nvidia-cublas-cu12==12.1.3.1 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
47 |
+
nvidia-cuda-cupti-cu12==12.1.105 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
48 |
+
nvidia-cuda-nvrtc-cu12==12.1.105 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
49 |
+
nvidia-cuda-runtime-cu12==12.1.105 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
50 |
+
nvidia-cudnn-cu12==8.9.2.26 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
51 |
+
nvidia-cufft-cu12==11.0.2.54 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
52 |
+
nvidia-curand-cu12==10.3.2.106 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
53 |
+
nvidia-cusolver-cu12==11.4.5.107 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
54 |
+
nvidia-cusparse-cu12==12.1.0.106 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
55 |
+
nvidia-nccl-cu12==2.19.3 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
56 |
+
nvidia-nvjitlink-cu12==12.9.41 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
57 |
+
nvidia-nvtx-cu12==12.1.105 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
58 |
+
orjson==3.10.18 ; python_version == "3.12"
|
59 |
+
packaging==25.0 ; python_version == "3.12"
|
60 |
+
pandas==2.2.3 ; python_version == "3.12"
|
61 |
+
pbs-installer==2025.4.9 ; python_version == "3.12"
|
62 |
+
pillow==11.2.1 ; python_version == "3.12"
|
63 |
+
pkginfo==1.12.1.2 ; python_version == "3.12"
|
64 |
+
platformdirs==4.3.7 ; python_version == "3.12"
|
65 |
+
poetry-core==2.1.3 ; python_version == "3.12"
|
66 |
+
poetry==2.1.3 ; python_version == "3.12"
|
67 |
+
psutil==7.0.0 ; python_version == "3.12"
|
68 |
+
pycparser==2.22 ; (sys_platform == "linux" or sys_platform == "darwin" or platform_python_implementation == "PyPy") and python_version == "3.12"
|
69 |
+
pydantic-core==2.33.2 ; python_version == "3.12"
|
70 |
+
pydantic==2.11.4 ; python_version == "3.12"
|
71 |
+
pydub==0.25.1 ; python_version == "3.12"
|
72 |
+
pygments==2.19.1 ; python_version == "3.12" and sys_platform != "emscripten"
|
73 |
+
pyproject-hooks==1.2.0 ; python_version == "3.12"
|
74 |
+
python-dateutil==2.9.0.post0 ; python_version == "3.12"
|
75 |
+
python-multipart==0.0.20 ; python_version == "3.12"
|
76 |
+
pytz==2025.2 ; python_version == "3.12"
|
77 |
+
pywin32-ctypes==0.2.3 ; python_version == "3.12" and sys_platform == "win32"
|
78 |
+
pyyaml==6.0.2 ; python_version == "3.12"
|
79 |
+
rapidfuzz==3.13.0 ; python_version == "3.12"
|
80 |
+
regex==2024.11.6 ; python_version == "3.12"
|
81 |
+
requests-toolbelt==1.0.0 ; python_version == "3.12"
|
82 |
+
requests==2.32.3 ; python_version == "3.12"
|
83 |
+
rich==14.0.0 ; python_version == "3.12" and sys_platform != "emscripten"
|
84 |
+
ruff==0.11.8 ; python_version == "3.12" and sys_platform != "emscripten"
|
85 |
+
safehttpx==0.1.6 ; python_version == "3.12"
|
86 |
+
safetensors==0.5.3 ; python_version == "3.12"
|
87 |
+
secretstorage==3.3.3 ; python_version == "3.12" and sys_platform == "linux"
|
88 |
+
semantic-version==2.10.0 ; python_version == "3.12"
|
89 |
+
shellingham==1.5.4 ; python_version == "3.12"
|
90 |
+
six==1.17.0 ; python_version == "3.12"
|
91 |
+
sniffio==1.3.1 ; python_version == "3.12"
|
92 |
+
starlette==0.46.2 ; python_version == "3.12"
|
93 |
+
sympy==1.14.0 ; python_version == "3.12"
|
94 |
+
tokenizers==0.21.1 ; python_version == "3.12"
|
95 |
+
tomlkit==0.13.2 ; python_version == "3.12"
|
96 |
+
torch==2.2.0 ; python_version == "3.12"
|
97 |
+
tqdm==4.67.1 ; python_version == "3.12"
|
98 |
+
transformers==4.51.3 ; python_version == "3.12"
|
99 |
+
triton==2.2.0 ; platform_system == "Linux" and platform_machine == "x86_64" and python_version == "3.12"
|
100 |
+
trove-classifiers==2025.5.1.12 ; python_version == "3.12"
|
101 |
+
typer==0.15.3 ; python_version == "3.12" and sys_platform != "emscripten"
|
102 |
+
typing-extensions==4.13.2 ; python_version == "3.12"
|
103 |
+
typing-inspection==0.4.0 ; python_version == "3.12"
|
104 |
+
tzdata==2025.2 ; python_version == "3.12"
|
105 |
+
urllib3==2.4.0 ; python_version == "3.12"
|
106 |
+
uvicorn==0.34.2 ; python_version == "3.12" and sys_platform != "emscripten"
|
107 |
+
virtualenv==20.30.0 ; python_version == "3.12"
|
108 |
+
websockets==15.0.1 ; python_version == "3.12"
|
109 |
+
xattr==1.1.4 ; python_version == "3.12" and sys_platform == "darwin"
|
110 |
+
zstandard==0.23.0 ; python_version == "3.12"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|