multi-arch-build (#2571)
Browse files### What problem does this PR solve?
Build multi-arch docker image `infiniflow/ragflow:poetry` on
`linux/amd64` and `linux/arm64`.
### Type of change
- [x] Refactoring
- Dockerfile.scratch +2 -2
- docker/docker-compose-base.yml +2 -1
- poetry.lock +220 -229
- pyproject.toml +4 -4
- requirements.txt +0 -105
- requirements_arm.txt +0 -175
Dockerfile.scratch
CHANGED
@@ -33,7 +33,7 @@ USER root
|
|
33 |
WORKDIR /ragflow
|
34 |
|
35 |
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
36 |
-
apt update && apt install -y nodejs npm && \
|
37 |
rm -rf /var/lib/apt/lists/*
|
38 |
|
39 |
COPY web web
|
@@ -42,7 +42,7 @@ RUN cd web && npm i --force && npm run build
|
|
42 |
# install dependencies from poetry.lock file
|
43 |
COPY pyproject.toml poetry.toml poetry.lock ./
|
44 |
RUN --mount=type=cache,target=/root/.cache/pypoetry,sharing=locked \
|
45 |
-
/root/.local/bin/poetry install --sync --no-
|
46 |
|
47 |
# production stage
|
48 |
FROM base AS production
|
|
|
33 |
WORKDIR /ragflow
|
34 |
|
35 |
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
36 |
+
apt update && apt install -y nodejs npm cargo && \
|
37 |
rm -rf /var/lib/apt/lists/*
|
38 |
|
39 |
COPY web web
|
|
|
42 |
# install dependencies from poetry.lock file
|
43 |
COPY pyproject.toml poetry.toml poetry.lock ./
|
44 |
RUN --mount=type=cache,target=/root/.cache/pypoetry,sharing=locked \
|
45 |
+
/root/.local/bin/poetry install --sync --no-root
|
46 |
|
47 |
# production stage
|
48 |
FROM base AS production
|
docker/docker-compose-base.yml
CHANGED
@@ -30,7 +30,8 @@ services:
|
|
30 |
restart: always
|
31 |
|
32 |
mysql:
|
33 |
-
|
|
|
34 |
container_name: ragflow-mysql
|
35 |
environment:
|
36 |
- MYSQL_ROOT_PASSWORD=${MYSQL_PASSWORD}
|
|
|
30 |
restart: always
|
31 |
|
32 |
mysql:
|
33 |
+
# mysql:5.7 linux/arm64 image is unavailable.
|
34 |
+
image: mysql:8.0.39
|
35 |
container_name: ragflow-mysql
|
36 |
environment:
|
37 |
- MYSQL_ROOT_PASSWORD=${MYSQL_PASSWORD}
|
poetry.lock
CHANGED
@@ -2,34 +2,34 @@
|
|
2 |
|
3 |
[[package]]
|
4 |
name = "accelerate"
|
5 |
-
version = "0.
|
6 |
description = "Accelerate"
|
7 |
optional = false
|
8 |
python-versions = ">=3.8.0"
|
9 |
files = [
|
10 |
-
{file = "accelerate-0.
|
11 |
-
{file = "accelerate-0.
|
12 |
]
|
13 |
|
14 |
[package.dependencies]
|
15 |
-
huggingface-hub = "
|
16 |
-
numpy = ">=1.17,<
|
17 |
packaging = ">=20.0"
|
18 |
psutil = "*"
|
19 |
pyyaml = "*"
|
20 |
-
safetensors = ">=0.3
|
21 |
torch = ">=1.10.0"
|
22 |
|
23 |
[package.extras]
|
24 |
-
deepspeed = ["deepspeed
|
25 |
-
dev = ["bitsandbytes", "black (>=23.1,<24.0)", "datasets", "diffusers", "evaluate", "hf-doc-builder (>=0.3.0)", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "rich", "ruff (>=0.2.1,<0.3.0)", "scikit-learn", "scipy", "timm", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
|
26 |
quality = ["black (>=23.1,<24.0)", "hf-doc-builder (>=0.3.0)", "ruff (>=0.2.1,<0.3.0)"]
|
27 |
rich = ["rich"]
|
28 |
sagemaker = ["sagemaker"]
|
29 |
-
test-dev = ["bitsandbytes", "datasets", "diffusers", "evaluate", "scikit-learn", "scipy", "timm", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
|
30 |
test-prod = ["parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist"]
|
31 |
test-trackers = ["comet-ml", "dvclive", "tensorboard", "wandb"]
|
32 |
-
testing = ["bitsandbytes", "datasets", "diffusers", "evaluate", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "scikit-learn", "scipy", "timm", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
|
33 |
|
34 |
[package.source]
|
35 |
type = "legacy"
|
@@ -221,13 +221,13 @@ reference = "tsinghua"
|
|
221 |
|
222 |
[[package]]
|
223 |
name = "akshare"
|
224 |
-
version = "1.14.
|
225 |
description = "AKShare is an elegant and simple financial data interface library for Python, built for human beings!"
|
226 |
optional = false
|
227 |
python-versions = ">=3.8"
|
228 |
files = [
|
229 |
-
{file = "akshare-1.14.
|
230 |
-
{file = "akshare-1.14.
|
231 |
]
|
232 |
|
233 |
[package.dependencies]
|
@@ -320,13 +320,13 @@ reference = "tsinghua"
|
|
320 |
|
321 |
[[package]]
|
322 |
name = "anyio"
|
323 |
-
version = "4.
|
324 |
description = "High level compatibility layer for multiple asynchronous event loop implementations"
|
325 |
optional = false
|
326 |
-
python-versions = ">=3.
|
327 |
files = [
|
328 |
-
{file = "anyio-4.
|
329 |
-
{file = "anyio-4.
|
330 |
]
|
331 |
|
332 |
[package.dependencies]
|
@@ -334,9 +334,9 @@ idna = ">=2.8"
|
|
334 |
sniffio = ">=1.1"
|
335 |
|
336 |
[package.extras]
|
337 |
-
doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"]
|
338 |
-
test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.
|
339 |
-
trio = ["trio (>=0.
|
340 |
|
341 |
[package.source]
|
342 |
type = "legacy"
|
@@ -491,16 +491,16 @@ reference = "tsinghua"
|
|
491 |
|
492 |
[[package]]
|
493 |
name = "aspose-slides"
|
494 |
-
version = "24.
|
495 |
description = "Aspose.Slides for Python via .NET is a presentation file formats processing library for working with Microsoft PowerPoint files without using Microsoft PowerPoint."
|
496 |
optional = false
|
497 |
python-versions = ">=3.5,<3.13"
|
498 |
files = [
|
499 |
-
{file = "Aspose.Slides-24.
|
500 |
-
{file = "Aspose.Slides-24.
|
501 |
-
{file = "Aspose.Slides-24.
|
502 |
-
{file = "Aspose.Slides-24.
|
503 |
-
{file = "Aspose.Slides-24.
|
504 |
]
|
505 |
|
506 |
[package.source]
|
@@ -1682,47 +1682,45 @@ reference = "tsinghua"
|
|
1682 |
|
1683 |
[[package]]
|
1684 |
name = "datasets"
|
1685 |
-
version = "
|
1686 |
description = "HuggingFace community-driven open-source library of datasets"
|
1687 |
optional = false
|
1688 |
python-versions = ">=3.8.0"
|
1689 |
files = [
|
1690 |
-
{file = "datasets-
|
1691 |
-
{file = "datasets-
|
1692 |
]
|
1693 |
|
1694 |
[package.dependencies]
|
1695 |
aiohttp = "*"
|
1696 |
dill = ">=0.3.0,<0.3.9"
|
1697 |
filelock = "*"
|
1698 |
-
fsspec = {version = ">=2023.1.0,<=2024.
|
1699 |
-
huggingface-hub = ">=0.
|
1700 |
multiprocess = "*"
|
1701 |
numpy = ">=1.17"
|
1702 |
packaging = "*"
|
1703 |
pandas = "*"
|
1704 |
-
pyarrow = ">=
|
1705 |
-
pyarrow-hotfix = "*"
|
1706 |
pyyaml = ">=5.1"
|
1707 |
-
requests = ">=2.
|
1708 |
-
tqdm = ">=4.
|
1709 |
xxhash = "*"
|
1710 |
|
1711 |
[package.extras]
|
1712 |
-
|
1713 |
-
audio = ["librosa", "soundfile (>=0.12.1)"]
|
1714 |
benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"]
|
1715 |
-
dev = ["Pillow (>=
|
1716 |
-
docs = ["s3fs", "tensorflow (>=2.
|
1717 |
jax = ["jax (>=0.3.14)", "jaxlib (>=0.3.14)"]
|
1718 |
-
metrics-tests = ["Werkzeug (>=1.0.1)", "accelerate", "bert-score (>=0.3.6)", "jiwer", "langdetect", "mauve-text", "nltk", "requests-file (>=1.5.1)", "rouge-score", "sacrebleu", "sacremoses", "scikit-learn", "scipy", "sentencepiece", "seqeval", "six (>=1.15.0,<1.16.0)", "spacy (>=3.0.0)", "texttable (>=1.6.3)", "tldextract", "tldextract (>=3.1.0)", "toml (>=0.10.1)", "typer (<0.5.0)"]
|
1719 |
quality = ["ruff (>=0.3.0)"]
|
1720 |
s3 = ["s3fs"]
|
1721 |
-
tensorflow = ["tensorflow (>=2.
|
1722 |
-
tensorflow-gpu = ["tensorflow
|
1723 |
-
tests = ["Pillow (>=
|
|
|
1724 |
torch = ["torch"]
|
1725 |
-
vision = ["Pillow (>=
|
1726 |
|
1727 |
[package.source]
|
1728 |
type = "legacy"
|
@@ -2496,53 +2494,59 @@ reference = "tsinghua"
|
|
2496 |
|
2497 |
[[package]]
|
2498 |
name = "fonttools"
|
2499 |
-
version = "4.
|
2500 |
description = "Tools to manipulate font files"
|
2501 |
optional = false
|
2502 |
python-versions = ">=3.8"
|
2503 |
files = [
|
2504 |
-
{file = "fonttools-4.
|
2505 |
-
{file = "fonttools-4.
|
2506 |
-
{file = "fonttools-4.
|
2507 |
-
{file = "fonttools-4.
|
2508 |
-
{file = "fonttools-4.
|
2509 |
-
{file = "fonttools-4.
|
2510 |
-
{file = "fonttools-4.
|
2511 |
-
{file = "fonttools-4.
|
2512 |
-
{file = "fonttools-4.
|
2513 |
-
{file = "fonttools-4.
|
2514 |
-
{file = "fonttools-4.
|
2515 |
-
{file = "fonttools-4.
|
2516 |
-
{file = "fonttools-4.
|
2517 |
-
{file = "fonttools-4.
|
2518 |
-
{file = "fonttools-4.
|
2519 |
-
{file = "fonttools-4.
|
2520 |
-
{file = "fonttools-4.
|
2521 |
-
{file = "fonttools-4.
|
2522 |
-
{file = "fonttools-4.
|
2523 |
-
{file = "fonttools-4.
|
2524 |
-
{file = "fonttools-4.
|
2525 |
-
{file = "fonttools-4.
|
2526 |
-
{file = "fonttools-4.
|
2527 |
-
{file = "fonttools-4.
|
2528 |
-
{file = "fonttools-4.
|
2529 |
-
{file = "fonttools-4.
|
2530 |
-
{file = "fonttools-4.
|
2531 |
-
{file = "fonttools-4.
|
2532 |
-
{file = "fonttools-4.
|
2533 |
-
{file = "fonttools-4.
|
2534 |
-
{file = "fonttools-4.
|
2535 |
-
{file = "fonttools-4.
|
2536 |
-
{file = "fonttools-4.
|
2537 |
-
{file = "fonttools-4.
|
2538 |
-
{file = "fonttools-4.
|
2539 |
-
{file = "fonttools-4.
|
2540 |
-
{file = "fonttools-4.
|
2541 |
-
{file = "fonttools-4.
|
2542 |
-
{file = "fonttools-4.
|
2543 |
-
{file = "fonttools-4.
|
2544 |
-
{file = "fonttools-4.
|
2545 |
-
{file = "fonttools-4.
|
|
|
|
|
|
|
|
|
|
|
|
|
2546 |
]
|
2547 |
|
2548 |
[package.extras]
|
@@ -2676,13 +2680,13 @@ reference = "tsinghua"
|
|
2676 |
|
2677 |
[[package]]
|
2678 |
name = "fsspec"
|
2679 |
-
version = "2024.
|
2680 |
description = "File-system specification"
|
2681 |
optional = false
|
2682 |
python-versions = ">=3.8"
|
2683 |
files = [
|
2684 |
-
{file = "fsspec-2024.
|
2685 |
-
{file = "fsspec-2024.
|
2686 |
]
|
2687 |
|
2688 |
[package.dependencies]
|
@@ -2693,7 +2697,8 @@ abfs = ["adlfs"]
|
|
2693 |
adl = ["adlfs"]
|
2694 |
arrow = ["pyarrow (>=1)"]
|
2695 |
dask = ["dask", "distributed"]
|
2696 |
-
|
|
|
2697 |
dropbox = ["dropbox", "dropboxdrivefs", "requests"]
|
2698 |
full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"]
|
2699 |
fuse = ["fusepy"]
|
@@ -2710,6 +2715,9 @@ s3 = ["s3fs"]
|
|
2710 |
sftp = ["paramiko"]
|
2711 |
smb = ["smbprotocol"]
|
2712 |
ssh = ["paramiko"]
|
|
|
|
|
|
|
2713 |
tqdm = ["tqdm"]
|
2714 |
|
2715 |
[package.source]
|
@@ -2827,13 +2835,13 @@ reference = "tsinghua"
|
|
2827 |
|
2828 |
[[package]]
|
2829 |
name = "google-api-core"
|
2830 |
-
version = "2.
|
2831 |
description = "Google API client core library"
|
2832 |
optional = false
|
2833 |
python-versions = ">=3.7"
|
2834 |
files = [
|
2835 |
-
{file = "google_api_core-2.
|
2836 |
-
{file = "google_api_core-2.
|
2837 |
]
|
2838 |
|
2839 |
[package.dependencies]
|
@@ -2880,13 +2888,13 @@ reference = "tsinghua"
|
|
2880 |
|
2881 |
[[package]]
|
2882 |
name = "google-auth"
|
2883 |
-
version = "2.
|
2884 |
description = "Google Authentication Library"
|
2885 |
optional = false
|
2886 |
python-versions = ">=3.7"
|
2887 |
files = [
|
2888 |
-
{file = "google_auth-2.
|
2889 |
-
{file = "google_auth-2.
|
2890 |
]
|
2891 |
|
2892 |
[package.dependencies]
|
@@ -3663,13 +3671,13 @@ reference = "tsinghua"
|
|
3663 |
|
3664 |
[[package]]
|
3665 |
name = "huggingface-hub"
|
3666 |
-
version = "0.25.
|
3667 |
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
|
3668 |
optional = false
|
3669 |
python-versions = ">=3.8.0"
|
3670 |
files = [
|
3671 |
-
{file = "huggingface_hub-0.25.
|
3672 |
-
{file = "huggingface_hub-0.25.
|
3673 |
]
|
3674 |
|
3675 |
[package.dependencies]
|
@@ -5768,21 +5776,21 @@ reference = "tsinghua"
|
|
5768 |
|
5769 |
[[package]]
|
5770 |
name = "onnxruntime-gpu"
|
5771 |
-
version = "1.
|
5772 |
description = "ONNX Runtime is a runtime accelerator for Machine Learning models"
|
5773 |
optional = false
|
5774 |
python-versions = "*"
|
5775 |
files = [
|
5776 |
-
{file = "onnxruntime_gpu-1.
|
5777 |
-
{file = "onnxruntime_gpu-1.
|
5778 |
-
{file = "onnxruntime_gpu-1.
|
5779 |
-
{file = "onnxruntime_gpu-1.
|
5780 |
-
{file = "onnxruntime_gpu-1.
|
5781 |
-
{file = "onnxruntime_gpu-1.
|
5782 |
-
{file = "onnxruntime_gpu-1.
|
5783 |
-
{file = "onnxruntime_gpu-1.
|
5784 |
-
{file = "onnxruntime_gpu-1.
|
5785 |
-
{file = "onnxruntime_gpu-1.
|
5786 |
]
|
5787 |
|
5788 |
[package.dependencies]
|
@@ -6759,22 +6767,6 @@ type = "legacy"
|
|
6759 |
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
6760 |
reference = "tsinghua"
|
6761 |
|
6762 |
-
[[package]]
|
6763 |
-
name = "pyarrow-hotfix"
|
6764 |
-
version = "0.6"
|
6765 |
-
description = ""
|
6766 |
-
optional = false
|
6767 |
-
python-versions = ">=3.5"
|
6768 |
-
files = [
|
6769 |
-
{file = "pyarrow_hotfix-0.6-py3-none-any.whl", hash = "sha256:dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178"},
|
6770 |
-
{file = "pyarrow_hotfix-0.6.tar.gz", hash = "sha256:79d3e030f7ff890d408a100ac16d6f00b14d44a502d7897cd9fc3e3a534e9945"},
|
6771 |
-
]
|
6772 |
-
|
6773 |
-
[package.source]
|
6774 |
-
type = "legacy"
|
6775 |
-
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
6776 |
-
reference = "tsinghua"
|
6777 |
-
|
6778 |
[[package]]
|
6779 |
name = "pyasn1"
|
6780 |
version = "0.6.1"
|
@@ -8460,18 +8452,17 @@ reference = "tsinghua"
|
|
8460 |
|
8461 |
[[package]]
|
8462 |
name = "sentence-transformers"
|
8463 |
-
version = "3.1.
|
8464 |
-
description = "
|
8465 |
optional = false
|
8466 |
python-versions = ">=3.8"
|
8467 |
files = [
|
8468 |
-
{file = "sentence_transformers-3.1.
|
8469 |
-
{file = "sentence_transformers-3.1.
|
8470 |
]
|
8471 |
|
8472 |
[package.dependencies]
|
8473 |
huggingface-hub = ">=0.19.3"
|
8474 |
-
numpy = "<2.0.0"
|
8475 |
Pillow = "*"
|
8476 |
scikit-learn = "*"
|
8477 |
scipy = "*"
|
@@ -9604,13 +9595,13 @@ reference = "tsinghua"
|
|
9604 |
|
9605 |
[[package]]
|
9606 |
name = "tzdata"
|
9607 |
-
version = "2024.
|
9608 |
description = "Provider of IANA time zone data"
|
9609 |
optional = false
|
9610 |
python-versions = ">=2"
|
9611 |
files = [
|
9612 |
-
{file = "tzdata-2024.
|
9613 |
-
{file = "tzdata-2024.
|
9614 |
]
|
9615 |
|
9616 |
[package.source]
|
@@ -10325,103 +10316,103 @@ reference = "tsinghua"
|
|
10325 |
|
10326 |
[[package]]
|
10327 |
name = "yarl"
|
10328 |
-
version = "1.
|
10329 |
description = "Yet another URL library"
|
10330 |
optional = false
|
10331 |
python-versions = ">=3.8"
|
10332 |
files = [
|
10333 |
-
{file = "yarl-1.
|
10334 |
-
{file = "yarl-1.
|
10335 |
-
{file = "yarl-1.
|
10336 |
-
{file = "yarl-1.
|
10337 |
-
{file = "yarl-1.
|
10338 |
-
{file = "yarl-1.
|
10339 |
-
{file = "yarl-1.
|
10340 |
-
{file = "yarl-1.
|
10341 |
-
{file = "yarl-1.
|
10342 |
-
{file = "yarl-1.
|
10343 |
-
{file = "yarl-1.
|
10344 |
-
{file = "yarl-1.
|
10345 |
-
{file = "yarl-1.
|
10346 |
-
{file = "yarl-1.
|
10347 |
-
{file = "yarl-1.
|
10348 |
-
{file = "yarl-1.
|
10349 |
-
{file = "yarl-1.
|
10350 |
-
{file = "yarl-1.
|
10351 |
-
{file = "yarl-1.
|
10352 |
-
{file = "yarl-1.
|
10353 |
-
{file = "yarl-1.
|
10354 |
-
{file = "yarl-1.
|
10355 |
-
{file = "yarl-1.
|
10356 |
-
{file = "yarl-1.
|
10357 |
-
{file = "yarl-1.
|
10358 |
-
{file = "yarl-1.
|
10359 |
-
{file = "yarl-1.
|
10360 |
-
{file = "yarl-1.
|
10361 |
-
{file = "yarl-1.
|
10362 |
-
{file = "yarl-1.
|
10363 |
-
{file = "yarl-1.
|
10364 |
-
{file = "yarl-1.
|
10365 |
-
{file = "yarl-1.
|
10366 |
-
{file = "yarl-1.
|
10367 |
-
{file = "yarl-1.
|
10368 |
-
{file = "yarl-1.
|
10369 |
-
{file = "yarl-1.
|
10370 |
-
{file = "yarl-1.
|
10371 |
-
{file = "yarl-1.
|
10372 |
-
{file = "yarl-1.
|
10373 |
-
{file = "yarl-1.
|
10374 |
-
{file = "yarl-1.
|
10375 |
-
{file = "yarl-1.
|
10376 |
-
{file = "yarl-1.
|
10377 |
-
{file = "yarl-1.
|
10378 |
-
{file = "yarl-1.
|
10379 |
-
{file = "yarl-1.
|
10380 |
-
{file = "yarl-1.
|
10381 |
-
{file = "yarl-1.
|
10382 |
-
{file = "yarl-1.
|
10383 |
-
{file = "yarl-1.
|
10384 |
-
{file = "yarl-1.
|
10385 |
-
{file = "yarl-1.
|
10386 |
-
{file = "yarl-1.
|
10387 |
-
{file = "yarl-1.
|
10388 |
-
{file = "yarl-1.
|
10389 |
-
{file = "yarl-1.
|
10390 |
-
{file = "yarl-1.
|
10391 |
-
{file = "yarl-1.
|
10392 |
-
{file = "yarl-1.
|
10393 |
-
{file = "yarl-1.
|
10394 |
-
{file = "yarl-1.
|
10395 |
-
{file = "yarl-1.
|
10396 |
-
{file = "yarl-1.
|
10397 |
-
{file = "yarl-1.
|
10398 |
-
{file = "yarl-1.
|
10399 |
-
{file = "yarl-1.
|
10400 |
-
{file = "yarl-1.
|
10401 |
-
{file = "yarl-1.
|
10402 |
-
{file = "yarl-1.
|
10403 |
-
{file = "yarl-1.
|
10404 |
-
{file = "yarl-1.
|
10405 |
-
{file = "yarl-1.
|
10406 |
-
{file = "yarl-1.
|
10407 |
-
{file = "yarl-1.
|
10408 |
-
{file = "yarl-1.
|
10409 |
-
{file = "yarl-1.
|
10410 |
-
{file = "yarl-1.
|
10411 |
-
{file = "yarl-1.
|
10412 |
-
{file = "yarl-1.
|
10413 |
-
{file = "yarl-1.
|
10414 |
-
{file = "yarl-1.
|
10415 |
-
{file = "yarl-1.
|
10416 |
-
{file = "yarl-1.
|
10417 |
-
{file = "yarl-1.
|
10418 |
-
{file = "yarl-1.
|
10419 |
-
{file = "yarl-1.
|
10420 |
-
{file = "yarl-1.
|
10421 |
-
{file = "yarl-1.
|
10422 |
-
{file = "yarl-1.
|
10423 |
-
{file = "yarl-1.
|
10424 |
-
{file = "yarl-1.
|
10425 |
]
|
10426 |
|
10427 |
[package.dependencies]
|
@@ -10525,4 +10516,4 @@ reference = "tsinghua"
|
|
10525 |
[metadata]
|
10526 |
lock-version = "2.0"
|
10527 |
python-versions = ">=3.12,<3.13"
|
10528 |
-
content-hash = "
|
|
|
2 |
|
3 |
[[package]]
|
4 |
name = "accelerate"
|
5 |
+
version = "0.34.2"
|
6 |
description = "Accelerate"
|
7 |
optional = false
|
8 |
python-versions = ">=3.8.0"
|
9 |
files = [
|
10 |
+
{file = "accelerate-0.34.2-py3-none-any.whl", hash = "sha256:d69159e2c4e4a473d14443b27d2d732929254e826b3ab4813b3785b5ac616c7c"},
|
11 |
+
{file = "accelerate-0.34.2.tar.gz", hash = "sha256:98c1ebe1f5a45c0a3af02dc60b5bb8b7d58d60c3326a326a06ce6d956b18ca5b"},
|
12 |
]
|
13 |
|
14 |
[package.dependencies]
|
15 |
+
huggingface-hub = ">=0.21.0"
|
16 |
+
numpy = ">=1.17,<3.0.0"
|
17 |
packaging = ">=20.0"
|
18 |
psutil = "*"
|
19 |
pyyaml = "*"
|
20 |
+
safetensors = ">=0.4.3"
|
21 |
torch = ">=1.10.0"
|
22 |
|
23 |
[package.extras]
|
24 |
+
deepspeed = ["deepspeed"]
|
25 |
+
dev = ["bitsandbytes", "black (>=23.1,<24.0)", "datasets", "diffusers", "evaluate", "hf-doc-builder (>=0.3.0)", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "rich", "ruff (>=0.2.1,<0.3.0)", "scikit-learn", "scipy", "timm", "torchdata (>=0.8.0)", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
|
26 |
quality = ["black (>=23.1,<24.0)", "hf-doc-builder (>=0.3.0)", "ruff (>=0.2.1,<0.3.0)"]
|
27 |
rich = ["rich"]
|
28 |
sagemaker = ["sagemaker"]
|
29 |
+
test-dev = ["bitsandbytes", "datasets", "diffusers", "evaluate", "scikit-learn", "scipy", "timm", "torchdata (>=0.8.0)", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
|
30 |
test-prod = ["parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist"]
|
31 |
test-trackers = ["comet-ml", "dvclive", "tensorboard", "wandb"]
|
32 |
+
testing = ["bitsandbytes", "datasets", "diffusers", "evaluate", "parameterized", "pytest (>=7.2.0,<=8.0.0)", "pytest-subtests", "pytest-xdist", "scikit-learn", "scipy", "timm", "torchdata (>=0.8.0)", "torchpippy (>=0.2.0)", "tqdm", "transformers"]
|
33 |
|
34 |
[package.source]
|
35 |
type = "legacy"
|
|
|
221 |
|
222 |
[[package]]
|
223 |
name = "akshare"
|
224 |
+
version = "1.14.81"
|
225 |
description = "AKShare is an elegant and simple financial data interface library for Python, built for human beings!"
|
226 |
optional = false
|
227 |
python-versions = ">=3.8"
|
228 |
files = [
|
229 |
+
{file = "akshare-1.14.81-py3-none-any.whl", hash = "sha256:22619c5e7aea7b0d87d241b117d5ccb0be8e3d4a040956d9feeeda78572186ad"},
|
230 |
+
{file = "akshare-1.14.81.tar.gz", hash = "sha256:33ec79f0dd38a4afb80d029ba942d8f065d1ec55917309429cbd8ce7ec9e0fe5"},
|
231 |
]
|
232 |
|
233 |
[package.dependencies]
|
|
|
320 |
|
321 |
[[package]]
|
322 |
name = "anyio"
|
323 |
+
version = "4.6.0"
|
324 |
description = "High level compatibility layer for multiple asynchronous event loop implementations"
|
325 |
optional = false
|
326 |
+
python-versions = ">=3.9"
|
327 |
files = [
|
328 |
+
{file = "anyio-4.6.0-py3-none-any.whl", hash = "sha256:c7d2e9d63e31599eeb636c8c5c03a7e108d73b345f064f1c19fdc87b79036a9a"},
|
329 |
+
{file = "anyio-4.6.0.tar.gz", hash = "sha256:137b4559cbb034c477165047febb6ff83f390fc3b20bf181c1fc0a728cb8beeb"},
|
330 |
]
|
331 |
|
332 |
[package.dependencies]
|
|
|
334 |
sniffio = ">=1.1"
|
335 |
|
336 |
[package.extras]
|
337 |
+
doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"]
|
338 |
+
test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"]
|
339 |
+
trio = ["trio (>=0.26.1)"]
|
340 |
|
341 |
[package.source]
|
342 |
type = "legacy"
|
|
|
491 |
|
492 |
[[package]]
|
493 |
name = "aspose-slides"
|
494 |
+
version = "24.9.0"
|
495 |
description = "Aspose.Slides for Python via .NET is a presentation file formats processing library for working with Microsoft PowerPoint files without using Microsoft PowerPoint."
|
496 |
optional = false
|
497 |
python-versions = ">=3.5,<3.13"
|
498 |
files = [
|
499 |
+
{file = "Aspose.Slides-24.9.0-py3-none-macosx_10_14_x86_64.whl", hash = "sha256:b822b1bcfb76dab02c7fedd997af68782429bf68c3a5a2e643748c429c0d21dd"},
|
500 |
+
{file = "Aspose.Slides-24.9.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:cb6673a6548dc1a60edd9480dab342a408a0568f960dc28d032f515e44846d92"},
|
501 |
+
{file = "Aspose.Slides-24.9.0-py3-none-manylinux1_x86_64.whl", hash = "sha256:4525f39cef37d7a1411f67dfa02b8b08790f3f2ab286463bd88a848a8f062976"},
|
502 |
+
{file = "Aspose.Slides-24.9.0-py3-none-win32.whl", hash = "sha256:e8cad809ec2a5fee6c60e67c87eb13e533d1e9126e9be844db569f6fa97eb9b0"},
|
503 |
+
{file = "Aspose.Slides-24.9.0-py3-none-win_amd64.whl", hash = "sha256:68f29bff70fae24edc0cf19a9aff469982a85c4e808edd9eecd4c08c25b4de80"},
|
504 |
]
|
505 |
|
506 |
[package.source]
|
|
|
1682 |
|
1683 |
[[package]]
|
1684 |
name = "datasets"
|
1685 |
+
version = "3.0.0"
|
1686 |
description = "HuggingFace community-driven open-source library of datasets"
|
1687 |
optional = false
|
1688 |
python-versions = ">=3.8.0"
|
1689 |
files = [
|
1690 |
+
{file = "datasets-3.0.0-py3-none-any.whl", hash = "sha256:c23fefb6c953dcb1cd5f6deb6c502729c733ef98791e0c3f2d80c7ca2d9a01dd"},
|
1691 |
+
{file = "datasets-3.0.0.tar.gz", hash = "sha256:592317eb137f0fc5aac068ff283ba13c3c66d10c9c034d44bc8aa584126cf3e2"},
|
1692 |
]
|
1693 |
|
1694 |
[package.dependencies]
|
1695 |
aiohttp = "*"
|
1696 |
dill = ">=0.3.0,<0.3.9"
|
1697 |
filelock = "*"
|
1698 |
+
fsspec = {version = ">=2023.1.0,<=2024.6.1", extras = ["http"]}
|
1699 |
+
huggingface-hub = ">=0.22.0"
|
1700 |
multiprocess = "*"
|
1701 |
numpy = ">=1.17"
|
1702 |
packaging = "*"
|
1703 |
pandas = "*"
|
1704 |
+
pyarrow = ">=15.0.0"
|
|
|
1705 |
pyyaml = ">=5.1"
|
1706 |
+
requests = ">=2.32.2"
|
1707 |
+
tqdm = ">=4.66.3"
|
1708 |
xxhash = "*"
|
1709 |
|
1710 |
[package.extras]
|
1711 |
+
audio = ["librosa", "soundfile (>=0.12.1)", "soxr (>=0.4.0)"]
|
|
|
1712 |
benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"]
|
1713 |
+
dev = ["Pillow (>=9.4.0)", "absl-py", "decorator", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.8.0.post1)", "jax (>=0.3.14)", "jaxlib (>=0.3.14)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "moto[server]", "polars[timezone] (>=0.20.0)", "protobuf (<4.0.0)", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "ruff (>=0.3.0)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "soxr (>=0.4.0)", "sqlalchemy", "tensorflow (>=2.16.0)", "tensorflow (>=2.6.0)", "tensorflow (>=2.6.0)", "tiktoken", "torch", "torch (>=2.0.0)", "transformers", "transformers (>=4.42.0)", "zstandard"]
|
1714 |
+
docs = ["s3fs", "tensorflow (>=2.6.0)", "torch", "transformers"]
|
1715 |
jax = ["jax (>=0.3.14)", "jaxlib (>=0.3.14)"]
|
|
|
1716 |
quality = ["ruff (>=0.3.0)"]
|
1717 |
s3 = ["s3fs"]
|
1718 |
+
tensorflow = ["tensorflow (>=2.6.0)"]
|
1719 |
+
tensorflow-gpu = ["tensorflow (>=2.6.0)"]
|
1720 |
+
tests = ["Pillow (>=9.4.0)", "absl-py", "decorator", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.8.0.post1)", "jax (>=0.3.14)", "jaxlib (>=0.3.14)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "moto[server]", "polars[timezone] (>=0.20.0)", "protobuf (<4.0.0)", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "soxr (>=0.4.0)", "sqlalchemy", "tensorflow (>=2.16.0)", "tensorflow (>=2.6.0)", "tiktoken", "torch (>=2.0.0)", "transformers (>=4.42.0)", "zstandard"]
|
1721 |
+
tests-numpy2 = ["Pillow (>=9.4.0)", "absl-py", "decorator", "elasticsearch (<8.0.0)", "jax (>=0.3.14)", "jaxlib (>=0.3.14)", "joblib (<1.3.0)", "joblibspark", "lz4", "moto[server]", "polars[timezone] (>=0.20.0)", "protobuf (<4.0.0)", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "soxr (>=0.4.0)", "sqlalchemy", "tiktoken", "torch (>=2.0.0)", "transformers (>=4.42.0)", "zstandard"]
|
1722 |
torch = ["torch"]
|
1723 |
+
vision = ["Pillow (>=9.4.0)"]
|
1724 |
|
1725 |
[package.source]
|
1726 |
type = "legacy"
|
|
|
2494 |
|
2495 |
[[package]]
|
2496 |
name = "fonttools"
|
2497 |
+
version = "4.54.0"
|
2498 |
description = "Tools to manipulate font files"
|
2499 |
optional = false
|
2500 |
python-versions = ">=3.8"
|
2501 |
files = [
|
2502 |
+
{file = "fonttools-4.54.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b2957597455a21fc55849cf5094507028b241035e9bf2d98daa006c152553640"},
|
2503 |
+
{file = "fonttools-4.54.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:18a043a029994c28638bd40cf0d7dbe8edfbacb6b60f6a5ccdfcc4db98eaa4e4"},
|
2504 |
+
{file = "fonttools-4.54.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb1dd36e8612b31f30ae8fa264fdddf1a0c22bab0990c5f97542b86cbf0b77ec"},
|
2505 |
+
{file = "fonttools-4.54.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2703efc48b6e88b58249fb6316373e15e5b2e5835a58114954b290faebbd89da"},
|
2506 |
+
{file = "fonttools-4.54.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:21a209d7ff42ab567e449ba8f86af7bc5e93e2463bd07cbfae7284057d1552ac"},
|
2507 |
+
{file = "fonttools-4.54.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:812d04179b6a99bff3241153c928e1b3db98c76113375ce6b561e93dc749da3f"},
|
2508 |
+
{file = "fonttools-4.54.0-cp310-cp310-win32.whl", hash = "sha256:0d15664cbdc059ca1a32ff2a5cb5428ffd47f2e739430d9d11b0b6e2a97f2b8b"},
|
2509 |
+
{file = "fonttools-4.54.0-cp310-cp310-win_amd64.whl", hash = "sha256:abc5acdfdb01e2af1de55153f3720376edf4df8bcad84bdc54c08abda2089fd4"},
|
2510 |
+
{file = "fonttools-4.54.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:96e7a37190a20063dc6f301665180148ec7671f9b6ef089dba2280a8434adacc"},
|
2511 |
+
{file = "fonttools-4.54.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a42e0500944de3abf8723a439c7c94678d14b702808a593d7bfcece4a3ff4479"},
|
2512 |
+
{file = "fonttools-4.54.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24160f6df15e01d0edfb64729373950c2869871a611924d50c2e676162dcc42d"},
|
2513 |
+
{file = "fonttools-4.54.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3c556e69f66de64b2604d6875d5d1913484f89336d782a4bb89b772648436a3"},
|
2514 |
+
{file = "fonttools-4.54.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2ee6664fe61a932f52c499d2e8d72e6c7c6207449e2ec12928ebf80f2580ea31"},
|
2515 |
+
{file = "fonttools-4.54.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:79bb6834403cbb0f851df7173e8e9adbcfe3bb2e09a472de4c2e8a2667257b47"},
|
2516 |
+
{file = "fonttools-4.54.0-cp311-cp311-win32.whl", hash = "sha256:6679b471655f4f6bcdacb2b05bb059fc8d10983870e1a039d101da50562b90ec"},
|
2517 |
+
{file = "fonttools-4.54.0-cp311-cp311-win_amd64.whl", hash = "sha256:17d328d8d7414d7a70186a0d5c6fe9eea04b8b019ae070964b0555acfa763bba"},
|
2518 |
+
{file = "fonttools-4.54.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:34758e8481a5054e7e203c5e15c41dc3ec67716407bd1f00ebf014fe94f934e3"},
|
2519 |
+
{file = "fonttools-4.54.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:49124ff0efd6ded3e320912409527c9f3dae34acf34dcca141961a0c2dee484e"},
|
2520 |
+
{file = "fonttools-4.54.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:105b4dbf35bd8aad2c79b8b12ca911a00d7e445a251383a523497e0fb06c4242"},
|
2521 |
+
{file = "fonttools-4.54.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b6b613894d8e90093326ab6014c202a7a503e34dfb4a632b2ec78078f406c43"},
|
2522 |
+
{file = "fonttools-4.54.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6587da0a397c9ae36b8c7e3febfca8c4563d287f7339d805cd4a9a356a39f6bf"},
|
2523 |
+
{file = "fonttools-4.54.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:801bdd3496ec6df3920ae5cf43567208246c944288d2a508985491c9126f4dd9"},
|
2524 |
+
{file = "fonttools-4.54.0-cp312-cp312-win32.whl", hash = "sha256:e299ecc34635621b792bf42dcc3be50810dd74c888474e09b47596853a08db56"},
|
2525 |
+
{file = "fonttools-4.54.0-cp312-cp312-win_amd64.whl", hash = "sha256:f7b2e35b912235290b5e8df0cab17e3365be887c88588fdd9589e7635e665460"},
|
2526 |
+
{file = "fonttools-4.54.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:948fafa5035cf22ed35040c07b7a4ebe9c9d3436401d4d4a4fea19a24bee8fd5"},
|
2527 |
+
{file = "fonttools-4.54.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ef61d49d1f724dd8f1bf99328cfbc5e64900f451be0eacfcd15a1e00493779be"},
|
2528 |
+
{file = "fonttools-4.54.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d037c0b7d93408584065f5d30cd3a1c533a195d96669de116df3b594f6753b6"},
|
2529 |
+
{file = "fonttools-4.54.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:dbb7646fd6f6fdf754015cbb50db10cd53770432e56bd6b2e6411fb54a1b83b2"},
|
2530 |
+
{file = "fonttools-4.54.0-cp313-cp313-win32.whl", hash = "sha256:66143c6607d85647ef5097c7d3005118288ef6d7607487c10b04549f830eee01"},
|
2531 |
+
{file = "fonttools-4.54.0-cp313-cp313-win_amd64.whl", hash = "sha256:f66a6e29a201a4e0ff8a1f33dc90781f018e0dd8caa29d33311110952bdf8285"},
|
2532 |
+
{file = "fonttools-4.54.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eb871afe7bd480d233c0c29a694cbc553743e8af9c8daa9c70284862b35c5e80"},
|
2533 |
+
{file = "fonttools-4.54.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4f864d49effec5877c1ea559e2cb01bf6162f066c9013b78e1b31c13c120bee4"},
|
2534 |
+
{file = "fonttools-4.54.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e56abc2aad22298bd62f1314940b22f613eb4e9a50c5d9450d50c4c42e4617bf"},
|
2535 |
+
{file = "fonttools-4.54.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:633bd642239412115a4d203728980bf57993f1bcd22299c71f0c2ea669b75604"},
|
2536 |
+
{file = "fonttools-4.54.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:1170ed2208ace22ebe3bd119cec42fec9d393a133c204d6c7a28f28820c1eced"},
|
2537 |
+
{file = "fonttools-4.54.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:59ed3b6fcdfc29e4ffb75d300710bef50379caa639cd8e1b83415f7f1462d6ec"},
|
2538 |
+
{file = "fonttools-4.54.0-cp38-cp38-win32.whl", hash = "sha256:c6db5c17464f50ccd1b6d362e54d5e5930e551382c79f36f5f73b2bfd20fc340"},
|
2539 |
+
{file = "fonttools-4.54.0-cp38-cp38-win_amd64.whl", hash = "sha256:c4392e878e8e8d14ab7963a5accf25802eb6a9499c40e698c9bf571816026daf"},
|
2540 |
+
{file = "fonttools-4.54.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a05cb4ebb638147a11b15eb2fffbe71bbf2df7ec6d6655430a07d97164dddb0"},
|
2541 |
+
{file = "fonttools-4.54.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7b80c2e5ce6e69291fe73f7a71f26ae767e53e8c2e4b08826d7c9524ef0ebaad"},
|
2542 |
+
{file = "fonttools-4.54.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:627c0e59883fb97be4ec46cb0561f521214f3d8a10ad7f2a4030d3cd38a0a0ab"},
|
2543 |
+
{file = "fonttools-4.54.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc4e10d9c7e9ec55431f49f7425bc5c0472f0b25ff56ad57a66d7e503d36e83e"},
|
2544 |
+
{file = "fonttools-4.54.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:370a2018eeaeba47742103ac4e3877acfa7819ea64725aa7646f16e1cbab6223"},
|
2545 |
+
{file = "fonttools-4.54.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4dc1e6ebff17e2f012d5084058fd89fd66c7fd02ac9960380fab236114a977fb"},
|
2546 |
+
{file = "fonttools-4.54.0-cp39-cp39-win32.whl", hash = "sha256:fff3ff4a7e864b98502a15b04f3b9eedd26f8ff3f60be325cd715b9af8e54d05"},
|
2547 |
+
{file = "fonttools-4.54.0-cp39-cp39-win_amd64.whl", hash = "sha256:e7e1c173b21d00f336ab0d4edf2ea64e7a8530863bae789d97cd52a4363fbd6f"},
|
2548 |
+
{file = "fonttools-4.54.0-py3-none-any.whl", hash = "sha256:351058cd623af4c45490c744e2bbc5671fc78dce95866e92122c9ba6c28ea8b6"},
|
2549 |
+
{file = "fonttools-4.54.0.tar.gz", hash = "sha256:9f3482ff1189668fa9f8eafe8ff8541fb154b6f0170f8477889c028eb893c6ee"},
|
2550 |
]
|
2551 |
|
2552 |
[package.extras]
|
|
|
2680 |
|
2681 |
[[package]]
|
2682 |
name = "fsspec"
|
2683 |
+
version = "2024.6.1"
|
2684 |
description = "File-system specification"
|
2685 |
optional = false
|
2686 |
python-versions = ">=3.8"
|
2687 |
files = [
|
2688 |
+
{file = "fsspec-2024.6.1-py3-none-any.whl", hash = "sha256:3cb443f8bcd2efb31295a5b9fdb02aee81d8452c80d28f97a6d0959e6cee101e"},
|
2689 |
+
{file = "fsspec-2024.6.1.tar.gz", hash = "sha256:fad7d7e209dd4c1208e3bbfda706620e0da5142bebbd9c384afb95b07e798e49"},
|
2690 |
]
|
2691 |
|
2692 |
[package.dependencies]
|
|
|
2697 |
adl = ["adlfs"]
|
2698 |
arrow = ["pyarrow (>=1)"]
|
2699 |
dask = ["dask", "distributed"]
|
2700 |
+
dev = ["pre-commit", "ruff"]
|
2701 |
+
doc = ["numpydoc", "sphinx", "sphinx-design", "sphinx-rtd-theme", "yarl"]
|
2702 |
dropbox = ["dropbox", "dropboxdrivefs", "requests"]
|
2703 |
full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"]
|
2704 |
fuse = ["fusepy"]
|
|
|
2715 |
sftp = ["paramiko"]
|
2716 |
smb = ["smbprotocol"]
|
2717 |
ssh = ["paramiko"]
|
2718 |
+
test = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "numpy", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "requests"]
|
2719 |
+
test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask-expr", "dask[dataframe,test]", "moto[server] (>4,<5)", "pytest-timeout", "xarray"]
|
2720 |
+
test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"]
|
2721 |
tqdm = ["tqdm"]
|
2722 |
|
2723 |
[package.source]
|
|
|
2835 |
|
2836 |
[[package]]
|
2837 |
name = "google-api-core"
|
2838 |
+
version = "2.20.0"
|
2839 |
description = "Google API client core library"
|
2840 |
optional = false
|
2841 |
python-versions = ">=3.7"
|
2842 |
files = [
|
2843 |
+
{file = "google_api_core-2.20.0-py3-none-any.whl", hash = "sha256:ef0591ef03c30bb83f79b3d0575c3f31219001fc9c5cf37024d08310aeffed8a"},
|
2844 |
+
{file = "google_api_core-2.20.0.tar.gz", hash = "sha256:f74dff1889ba291a4b76c5079df0711810e2d9da81abfdc99957bc961c1eb28f"},
|
2845 |
]
|
2846 |
|
2847 |
[package.dependencies]
|
|
|
2888 |
|
2889 |
[[package]]
|
2890 |
name = "google-auth"
|
2891 |
+
version = "2.35.0"
|
2892 |
description = "Google Authentication Library"
|
2893 |
optional = false
|
2894 |
python-versions = ">=3.7"
|
2895 |
files = [
|
2896 |
+
{file = "google_auth-2.35.0-py2.py3-none-any.whl", hash = "sha256:25df55f327ef021de8be50bad0dfd4a916ad0de96da86cd05661c9297723ad3f"},
|
2897 |
+
{file = "google_auth-2.35.0.tar.gz", hash = "sha256:f4c64ed4e01e8e8b646ef34c018f8bf3338df0c8e37d8b3bba40e7f574a3278a"},
|
2898 |
]
|
2899 |
|
2900 |
[package.dependencies]
|
|
|
3671 |
|
3672 |
[[package]]
|
3673 |
name = "huggingface-hub"
|
3674 |
+
version = "0.25.1"
|
3675 |
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
|
3676 |
optional = false
|
3677 |
python-versions = ">=3.8.0"
|
3678 |
files = [
|
3679 |
+
{file = "huggingface_hub-0.25.1-py3-none-any.whl", hash = "sha256:a5158ded931b3188f54ea9028097312cb0acd50bffaaa2612014c3c526b44972"},
|
3680 |
+
{file = "huggingface_hub-0.25.1.tar.gz", hash = "sha256:9ff7cb327343211fbd06e2b149b8f362fd1e389454f3f14c6db75a4999ee20ff"},
|
3681 |
]
|
3682 |
|
3683 |
[package.dependencies]
|
|
|
5776 |
|
5777 |
[[package]]
|
5778 |
name = "onnxruntime-gpu"
|
5779 |
+
version = "1.19.2"
|
5780 |
description = "ONNX Runtime is a runtime accelerator for Machine Learning models"
|
5781 |
optional = false
|
5782 |
python-versions = "*"
|
5783 |
files = [
|
5784 |
+
{file = "onnxruntime_gpu-1.19.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a49740e079e7c5215830d30cde3df792e903df007aa0b0fd7aa797937061b27a"},
|
5785 |
+
{file = "onnxruntime_gpu-1.19.2-cp310-cp310-win_amd64.whl", hash = "sha256:b895920bb5e4241299f68874e0becdc2635ea0142939c11e7ff5ae5b28993613"},
|
5786 |
+
{file = "onnxruntime_gpu-1.19.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:562fc7c755393eaad9751e56149339dd201ffbfdb3ef5f43ff21d0619ba9045f"},
|
5787 |
+
{file = "onnxruntime_gpu-1.19.2-cp311-cp311-win_amd64.whl", hash = "sha256:522f7495918176cb8c1a3c78bde7152d984f7096acc786c73a27643af8af87c9"},
|
5788 |
+
{file = "onnxruntime_gpu-1.19.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:554a02a3fac0119707eb87327908afd21c4e6f0fa5bf9a034398f098adc316c5"},
|
5789 |
+
{file = "onnxruntime_gpu-1.19.2-cp312-cp312-win_amd64.whl", hash = "sha256:e7c6165a405027e3c0f11d189ae7013b5d66919b3381f9bfb3405c0c0cf07968"},
|
5790 |
+
{file = "onnxruntime_gpu-1.19.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b4a8562e1e6f1912870c60bfaf8233c82b86e5b93ae39f211b650ac0f2015430"},
|
5791 |
+
{file = "onnxruntime_gpu-1.19.2-cp38-cp38-win_amd64.whl", hash = "sha256:55505c99e18688a7c68fdc811ed6e7a315aa36f543b33920c77d03a627d2c3f5"},
|
5792 |
+
{file = "onnxruntime_gpu-1.19.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c9e369f01f55ea726ae5d28f18236426e52e97c433f0b7682054e61c478a06c9"},
|
5793 |
+
{file = "onnxruntime_gpu-1.19.2-cp39-cp39-win_amd64.whl", hash = "sha256:c8b8128174b0470537e9f4983aeecc002a435d13914970c2af2f41d244ef2781"},
|
5794 |
]
|
5795 |
|
5796 |
[package.dependencies]
|
|
|
6767 |
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
6768 |
reference = "tsinghua"
|
6769 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6770 |
[[package]]
|
6771 |
name = "pyasn1"
|
6772 |
version = "0.6.1"
|
|
|
8452 |
|
8453 |
[[package]]
|
8454 |
name = "sentence-transformers"
|
8455 |
+
version = "3.1.1"
|
8456 |
+
description = "State-of-the-Art Text Embeddings"
|
8457 |
optional = false
|
8458 |
python-versions = ">=3.8"
|
8459 |
files = [
|
8460 |
+
{file = "sentence_transformers-3.1.1-py3-none-any.whl", hash = "sha256:c73bf6f17e3676bb9372a6133a254ebfb5907586b470f2bac5a840c64c3cf97e"},
|
8461 |
+
{file = "sentence_transformers-3.1.1.tar.gz", hash = "sha256:8f00020ef4ad6b918475c38af545c22f61403b67eb22d994860bab06902db160"},
|
8462 |
]
|
8463 |
|
8464 |
[package.dependencies]
|
8465 |
huggingface-hub = ">=0.19.3"
|
|
|
8466 |
Pillow = "*"
|
8467 |
scikit-learn = "*"
|
8468 |
scipy = "*"
|
|
|
9595 |
|
9596 |
[[package]]
|
9597 |
name = "tzdata"
|
9598 |
+
version = "2024.2"
|
9599 |
description = "Provider of IANA time zone data"
|
9600 |
optional = false
|
9601 |
python-versions = ">=2"
|
9602 |
files = [
|
9603 |
+
{file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"},
|
9604 |
+
{file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"},
|
9605 |
]
|
9606 |
|
9607 |
[package.source]
|
|
|
10316 |
|
10317 |
[[package]]
|
10318 |
name = "yarl"
|
10319 |
+
version = "1.12.1"
|
10320 |
description = "Yet another URL library"
|
10321 |
optional = false
|
10322 |
python-versions = ">=3.8"
|
10323 |
files = [
|
10324 |
+
{file = "yarl-1.12.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:64c5b0f2b937fe40d0967516eee5504b23cb247b8b7ffeba7213a467d9646fdc"},
|
10325 |
+
{file = "yarl-1.12.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2e430ac432f969ef21770645743611c1618362309e3ad7cab45acd1ad1a540ff"},
|
10326 |
+
{file = "yarl-1.12.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3e26e64f42bce5ddf9002092b2c37b13071c2e6413d5c05f9fa9de58ed2f7749"},
|
10327 |
+
{file = "yarl-1.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0103c52f8dfe5d573c856322149ddcd6d28f51b4d4a3ee5c4b3c1b0a05c3d034"},
|
10328 |
+
{file = "yarl-1.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b63465b53baeaf2122a337d4ab57d6bbdd09fcadceb17a974cfa8a0300ad9c67"},
|
10329 |
+
{file = "yarl-1.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17d4dc4ff47893a06737b8788ed2ba2f5ac4e8bb40281c8603920f7d011d5bdd"},
|
10330 |
+
{file = "yarl-1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b54949267bd5704324397efe9fbb6aa306466dee067550964e994d309db5f1"},
|
10331 |
+
{file = "yarl-1.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10b690cd78cbaca2f96a7462f303fdd2b596d3978b49892e4b05a7567c591572"},
|
10332 |
+
{file = "yarl-1.12.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c85ab016e96a975afbdb9d49ca90f3bca9920ef27c64300843fe91c3d59d8d20"},
|
10333 |
+
{file = "yarl-1.12.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c1caa5763d1770216596e0a71b5567f27aac28c95992110212c108ec74589a48"},
|
10334 |
+
{file = "yarl-1.12.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:595bbcdbfc4a9c6989d7489dca8510cba053ff46b16c84ffd95ac8e90711d419"},
|
10335 |
+
{file = "yarl-1.12.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e64f0421892a207d3780903085c1b04efeb53b16803b23d947de5a7261b71355"},
|
10336 |
+
{file = "yarl-1.12.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:319c206e83e46ec2421b25b300c8482b6fe8a018baca246be308c736d9dab267"},
|
10337 |
+
{file = "yarl-1.12.1-cp310-cp310-win32.whl", hash = "sha256:da045bd1147d12bd43fb032296640a7cc17a7f2eaba67495988362e99db24fd2"},
|
10338 |
+
{file = "yarl-1.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:aebbd47df77190ada603157f0b3670d578c110c31746ecc5875c394fdcc59a99"},
|
10339 |
+
{file = "yarl-1.12.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:28389a68981676bf74e2e199fe42f35d1aa27a9c98e3a03e6f58d2d3d054afe1"},
|
10340 |
+
{file = "yarl-1.12.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f736f54565f8dd7e3ab664fef2bc461d7593a389a7f28d4904af8d55a91bd55f"},
|
10341 |
+
{file = "yarl-1.12.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dee0496d5f1a8f57f0f28a16f81a2033fc057a2cf9cd710742d11828f8c80e2"},
|
10342 |
+
{file = "yarl-1.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8981a94a27ac520a398302afb74ae2c0be1c3d2d215c75c582186a006c9e7b0"},
|
10343 |
+
{file = "yarl-1.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ff54340fc1129e8e181827e2234af3ff659b4f17d9bbe77f43bc19e6577fadec"},
|
10344 |
+
{file = "yarl-1.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:54c8cee662b5f8c30ad7eedfc26123f845f007798e4ff1001d9528fe959fd23c"},
|
10345 |
+
{file = "yarl-1.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e97a29b37830ba1262d8dfd48ddb5b28ad4d3ebecc5d93a9c7591d98641ec737"},
|
10346 |
+
{file = "yarl-1.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6c89894cc6f6ddd993813e79244b36b215c14f65f9e4f1660b1f2ba9e5594b95"},
|
10347 |
+
{file = "yarl-1.12.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:712ba8722c0699daf186de089ddc4677651eb9875ed7447b2ad50697522cbdd9"},
|
10348 |
+
{file = "yarl-1.12.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6e9a9f50892153bad5046c2a6df153224aa6f0573a5a8ab44fc54a1e886f6e21"},
|
10349 |
+
{file = "yarl-1.12.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1d4017e78fb22bc797c089b746230ad78ecd3cdb215bc0bd61cb72b5867da57e"},
|
10350 |
+
{file = "yarl-1.12.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f494c01b28645c431239863cb17af8b8d15b93b0d697a0320d5dd34cd9d7c2fa"},
|
10351 |
+
{file = "yarl-1.12.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de4544b1fb29cf14870c4e2b8a897c0242449f5dcebd3e0366aa0aa3cf58a23a"},
|
10352 |
+
{file = "yarl-1.12.1-cp311-cp311-win32.whl", hash = "sha256:7564525a4673fde53dee7d4c307a961c0951918f0b8c7f09b2c9e02067cf6504"},
|
10353 |
+
{file = "yarl-1.12.1-cp311-cp311-win_amd64.whl", hash = "sha256:f23bb1a7a6e8e8b612a164fdd08e683bcc16c76f928d6dbb7bdbee2374fbfee6"},
|
10354 |
+
{file = "yarl-1.12.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a3e2aff8b822ab0e0bdbed9f50494b3a35629c4b9488ae391659973a37a9f53f"},
|
10355 |
+
{file = "yarl-1.12.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:22dda2799c8d39041d731e02bf7690f0ef34f1691d9ac9dfcb98dd1e94c8b058"},
|
10356 |
+
{file = "yarl-1.12.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:18c2a7757561f05439c243f517dbbb174cadfae3a72dee4ae7c693f5b336570f"},
|
10357 |
+
{file = "yarl-1.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:835010cc17d0020e7931d39e487d72c8e01c98e669b6896a8b8c9aa8ca69a949"},
|
10358 |
+
{file = "yarl-1.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2254fe137c4a360b0a13173a56444f756252c9283ba4d267ca8e9081cd140ea"},
|
10359 |
+
{file = "yarl-1.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f6a071d2c3d39b4104f94fc08ab349e9b19b951ad4b8e3b6d7ea92d6ef7ccaf8"},
|
10360 |
+
{file = "yarl-1.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73a183042ae0918c82ce2df38c3db2409b0eeae88e3afdfc80fb67471a95b33b"},
|
10361 |
+
{file = "yarl-1.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:326b8a079a9afcac0575971e56dabdf7abb2ea89a893e6949b77adfeb058b50e"},
|
10362 |
+
{file = "yarl-1.12.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:126309c0f52a2219b3d1048aca00766429a1346596b186d51d9fa5d2070b7b13"},
|
10363 |
+
{file = "yarl-1.12.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:ba1c779b45a399cc25f511c681016626f69e51e45b9d350d7581998722825af9"},
|
10364 |
+
{file = "yarl-1.12.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:af1107299cef049ad00a93df4809517be432283a0847bcae48343ebe5ea340dc"},
|
10365 |
+
{file = "yarl-1.12.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:20d817c0893191b2ab0ba30b45b77761e8dfec30a029b7c7063055ca71157f84"},
|
10366 |
+
{file = "yarl-1.12.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d4f818f6371970d6a5d1e42878389bbfb69dcde631e4bbac5ec1cb11158565ca"},
|
10367 |
+
{file = "yarl-1.12.1-cp312-cp312-win32.whl", hash = "sha256:0ac33d22b2604b020569a82d5f8a03ba637ba42cc1adf31f616af70baf81710b"},
|
10368 |
+
{file = "yarl-1.12.1-cp312-cp312-win_amd64.whl", hash = "sha256:fd24996e12e1ba7c397c44be75ca299da14cde34d74bc5508cce233676cc68d0"},
|
10369 |
+
{file = "yarl-1.12.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dea360778e0668a7ad25d7727d03364de8a45bfd5d808f81253516b9f2217765"},
|
10370 |
+
{file = "yarl-1.12.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1f50a37aeeb5179d293465e522fd686080928c4d89e0ff215e1f963405ec4def"},
|
10371 |
+
{file = "yarl-1.12.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0274b1b7a9c9c32b7bf250583e673ff99fb9fccb389215841e2652d9982de740"},
|
10372 |
+
{file = "yarl-1.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4f3ab9eb8ab2d585ece959c48d234f7b39ac0ca1954a34d8b8e58a52064bdb3"},
|
10373 |
+
{file = "yarl-1.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8d31dd0245d88cf7239e96e8f2a99f815b06e458a5854150f8e6f0e61618d41b"},
|
10374 |
+
{file = "yarl-1.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a96198d5d26f40557d986c1253bfe0e02d18c9d9b93cf389daf1a3c9f7c755fa"},
|
10375 |
+
{file = "yarl-1.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddae504cfb556fe220efae65e35be63cd11e3c314b202723fc2119ce19f0ca2e"},
|
10376 |
+
{file = "yarl-1.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bce00f3b1f7f644faae89677ca68645ed5365f1c7f874fdd5ebf730a69640d38"},
|
10377 |
+
{file = "yarl-1.12.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:eee5ff934b0c9f4537ff9596169d56cab1890918004791a7a06b879b3ba2a7ef"},
|
10378 |
+
{file = "yarl-1.12.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4ea99e64b2ad2635e0f0597b63f5ea6c374791ff2fa81cdd4bad8ed9f047f56f"},
|
10379 |
+
{file = "yarl-1.12.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c667b383529520b8dd6bd496fc318678320cb2a6062fdfe6d3618da6b8790f6"},
|
10380 |
+
{file = "yarl-1.12.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d920401941cb898ef089422e889759dd403309eb370d0e54f1bdf6ca07fef603"},
|
10381 |
+
{file = "yarl-1.12.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:501a1576716032cc6d48c7c47bcdc42d682273415a8f2908e7e72cb4625801f3"},
|
10382 |
+
{file = "yarl-1.12.1-cp313-cp313-win32.whl", hash = "sha256:24416bb5e221e29ddf8aac5b97e94e635ca2c5be44a1617ad6fe32556df44294"},
|
10383 |
+
{file = "yarl-1.12.1-cp313-cp313-win_amd64.whl", hash = "sha256:71af3766bb46738d12cc288d9b8de7ef6f79c31fd62757e2b8a505fe3680b27f"},
|
10384 |
+
{file = "yarl-1.12.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c924deab8105f86980983eced740433fb7554a7f66db73991affa4eda99d5402"},
|
10385 |
+
{file = "yarl-1.12.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5fb475a4cdde582c9528bb412b98f899680492daaba318231e96f1a0a1bb0d53"},
|
10386 |
+
{file = "yarl-1.12.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:36ee0115b9edca904153a66bb74a9ff1ce38caff015de94eadfb9ba8e6ecd317"},
|
10387 |
+
{file = "yarl-1.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2631c9d7386bd2d4ce24ecc6ebf9ae90b3efd713d588d90504eaa77fec4dba01"},
|
10388 |
+
{file = "yarl-1.12.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2376d8cf506dffd0e5f2391025ae8675b09711016656590cb03b55894161fcfa"},
|
10389 |
+
{file = "yarl-1.12.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:24197ba3114cc85ddd4091e19b2ddc62650f2e4a899e51b074dfd52d56cf8c72"},
|
10390 |
+
{file = "yarl-1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfdf419bf5d3644f94cd7052954fc233522f5a1b371fc0b00219ebd9c14d5798"},
|
10391 |
+
{file = "yarl-1.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8112f640a4f7e7bf59f7cabf0d47a29b8977528c521d73a64d5cc9e99e48a174"},
|
10392 |
+
{file = "yarl-1.12.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:607d12f0901f6419a8adceb139847c42c83864b85371f58270e42753f9780fa6"},
|
10393 |
+
{file = "yarl-1.12.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:664380c7ed524a280b6a2d5d9126389c3e96cd6e88986cdb42ca72baa27421d6"},
|
10394 |
+
{file = "yarl-1.12.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:0d0a5e87bc48d76dfcfc16295201e9812d5f33d55b4a0b7cad1025b92bf8b91b"},
|
10395 |
+
{file = "yarl-1.12.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:eff6bac402719c14e17efe845d6b98593c56c843aca6def72080fbede755fd1f"},
|
10396 |
+
{file = "yarl-1.12.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:22839d1d1eab9e4b427828a88a22beb86f67c14d8ff81175505f1cc8493f3500"},
|
10397 |
+
{file = "yarl-1.12.1-cp38-cp38-win32.whl", hash = "sha256:717f185086bb9d817d4537dd18d5df5d657598cd00e6fc22e4d54d84de266c1d"},
|
10398 |
+
{file = "yarl-1.12.1-cp38-cp38-win_amd64.whl", hash = "sha256:71978ba778948760cff528235c951ea0ef7a4f9c84ac5a49975f8540f76c3f73"},
|
10399 |
+
{file = "yarl-1.12.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:30ffc046ebddccb3c4cac72c1a3e1bc343492336f3ca86d24672e90ccc5e788a"},
|
10400 |
+
{file = "yarl-1.12.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f10954b233d4df5cc3137ffa5ced97f8894152df817e5d149bf05a0ef2ab8134"},
|
10401 |
+
{file = "yarl-1.12.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2e912b282466444023610e4498e3795c10e7cfd641744524876239fcf01d538d"},
|
10402 |
+
{file = "yarl-1.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6af871f70cfd5b528bd322c65793b5fd5659858cdfaa35fbe563fb99b667ed1f"},
|
10403 |
+
{file = "yarl-1.12.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3e4e1f7b08d1ec6b685ccd3e2d762219c550164fbf524498532e39f9413436e"},
|
10404 |
+
{file = "yarl-1.12.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9a7ee79183f0b17dcede8b6723e7da2ded529cf159a878214be9a5d3098f5b1e"},
|
10405 |
+
{file = "yarl-1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96c8ff1e1dd680e38af0887927cab407a4e51d84a5f02ae3d6eb87233036c763"},
|
10406 |
+
{file = "yarl-1.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e9905fc2dc1319e4c39837b906a024cf71b1261cc66b0cd89678f779c0c61f5"},
|
10407 |
+
{file = "yarl-1.12.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:01549468858b87d36f967c97d02e6e54106f444aeb947ed76f8f71f85ed07cec"},
|
10408 |
+
{file = "yarl-1.12.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:96b34830bd6825ca0220bf005ea99ac83eb9ce51301ddb882dcf613ae6cd95fb"},
|
10409 |
+
{file = "yarl-1.12.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:2aee7594d2c2221c717a8e394bbed4740029df4c0211ceb0f04815686e99c795"},
|
10410 |
+
{file = "yarl-1.12.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:15871130439ad10abb25a4631120d60391aa762b85fcab971411e556247210a0"},
|
10411 |
+
{file = "yarl-1.12.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:838dde2cb570cfbb4cab8a876a0974e8b90973ea40b3ac27a79b8a74c8a2db15"},
|
10412 |
+
{file = "yarl-1.12.1-cp39-cp39-win32.whl", hash = "sha256:eacbcf30efaca7dc5cb264228ffecdb95fdb1e715b1ec937c0ce6b734161e0c8"},
|
10413 |
+
{file = "yarl-1.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:76a59d1b63de859398bc7764c860a769499511463c1232155061fe0147f13e01"},
|
10414 |
+
{file = "yarl-1.12.1-py3-none-any.whl", hash = "sha256:dc3192a81ecd5ff954cecd690327badd5a84d00b877e1573f7c9097ce13e5bfb"},
|
10415 |
+
{file = "yarl-1.12.1.tar.gz", hash = "sha256:5b860055199aec8d6fe4dcee3c5196ce506ca198a50aab0059ffd26e8e815828"},
|
10416 |
]
|
10417 |
|
10418 |
[package.dependencies]
|
|
|
10516 |
[metadata]
|
10517 |
lock-version = "2.0"
|
10518 |
python-versions = ">=3.12,<3.13"
|
10519 |
+
content-hash = "4839cfab1c9f05e86f9ae54ed00980e46957e992199d3fee46e026563cdf7606"
|
pyproject.toml
CHANGED
@@ -10,13 +10,13 @@ package-mode = false
|
|
10 |
[tool.poetry.dependencies]
|
11 |
python = ">=3.12,<3.13"
|
12 |
datrie = "0.8.2"
|
13 |
-
akshare = "1.14.
|
14 |
azure-storage-blob = "12.22.0"
|
15 |
azure-identity = "1.17.1"
|
16 |
azure-storage-file-datalake = "12.16.0"
|
17 |
anthropic = "=0.34.1"
|
18 |
arxiv = "2.1.3"
|
19 |
-
aspose-slides = "24.
|
20 |
bcembedding = "0.1.3"
|
21 |
bio = "1.7.1"
|
22 |
boto3 = "1.34.140"
|
@@ -58,7 +58,7 @@ nltk = "3.9.1"
|
|
58 |
numpy = "1.26.4"
|
59 |
ollama = "0.2.1"
|
60 |
onnxruntime = "1.17.3"
|
61 |
-
onnxruntime-gpu = "1.17.1"
|
62 |
openai = "1.12.0"
|
63 |
opencv-python = "4.9.0.80"
|
64 |
opencv-python-headless = "4.9.0.80"
|
@@ -117,7 +117,7 @@ python-docx = "^1.1.2"
|
|
117 |
pypdf2 = "^3.0.1"
|
118 |
graspologic = "^3.4.1"
|
119 |
pymysql = "^1.1.1"
|
120 |
-
|
121 |
|
122 |
[[tool.poetry.source]]
|
123 |
name = "tsinghua"
|
|
|
10 |
[tool.poetry.dependencies]
|
11 |
python = ">=3.12,<3.13"
|
12 |
datrie = "0.8.2"
|
13 |
+
akshare = "^1.14.81"
|
14 |
azure-storage-blob = "12.22.0"
|
15 |
azure-identity = "1.17.1"
|
16 |
azure-storage-file-datalake = "12.16.0"
|
17 |
anthropic = "=0.34.1"
|
18 |
arxiv = "2.1.3"
|
19 |
+
aspose-slides = { version = "^24.9.0", markers = "platform_machine == 'x86_64'" }
|
20 |
bcembedding = "0.1.3"
|
21 |
bio = "1.7.1"
|
22 |
boto3 = "1.34.140"
|
|
|
58 |
numpy = "1.26.4"
|
59 |
ollama = "0.2.1"
|
60 |
onnxruntime = "1.17.3"
|
61 |
+
onnxruntime-gpu = { version = "^1.17.1", markers = "platform_machine == 'x86_64'" }
|
62 |
openai = "1.12.0"
|
63 |
opencv-python = "4.9.0.80"
|
64 |
opencv-python-headless = "4.9.0.80"
|
|
|
117 |
pypdf2 = "^3.0.1"
|
118 |
graspologic = "^3.4.1"
|
119 |
pymysql = "^1.1.1"
|
120 |
+
mini-racer = "^0.12.4"
|
121 |
|
122 |
[[tool.poetry.source]]
|
123 |
name = "tsinghua"
|
requirements.txt
DELETED
@@ -1,105 +0,0 @@
|
|
1 |
-
akshare==1.14.72
|
2 |
-
azure-storage-blob==12.22.0
|
3 |
-
azure-identity==1.17.1
|
4 |
-
azure-storage-file-datalake==12.16.0
|
5 |
-
anthropic===0.34.1
|
6 |
-
arxiv==2.1.3
|
7 |
-
Aspose.Slides==24.8.0
|
8 |
-
BCEmbedding==0.1.3
|
9 |
-
Bio==1.7.1
|
10 |
-
boto3==1.34.140
|
11 |
-
botocore==1.34.140
|
12 |
-
cachetools==5.3.3
|
13 |
-
chardet==5.2.0
|
14 |
-
cn2an==0.5.22
|
15 |
-
cohere==5.6.2
|
16 |
-
dashscope==1.14.1
|
17 |
-
datrie==0.8.2
|
18 |
-
deepl==1.18.0
|
19 |
-
demjson3==3.0.6
|
20 |
-
discord.py==2.3.2
|
21 |
-
duckduckgo_search==6.1.9
|
22 |
-
editdistance==0.8.1
|
23 |
-
elastic_transport==8.12.0
|
24 |
-
elasticsearch==8.12.1
|
25 |
-
elasticsearch_dsl==8.12.0
|
26 |
-
fastembed==0.2.6
|
27 |
-
fasttext==0.9.3
|
28 |
-
filelock==3.15.4
|
29 |
-
FlagEmbedding==1.2.10
|
30 |
-
Flask==3.0.3
|
31 |
-
Flask_Cors==5.0.0
|
32 |
-
Flask_Login==0.6.3
|
33 |
-
flask_session==0.8.0
|
34 |
-
google_search_results==2.4.2
|
35 |
-
groq==0.9.0
|
36 |
-
hanziconv==0.3.2
|
37 |
-
html_text==0.6.2
|
38 |
-
httpx==0.27.0
|
39 |
-
huggingface_hub==0.20.3
|
40 |
-
infinity_emb==0.0.51
|
41 |
-
itsdangerous==2.1.2
|
42 |
-
Markdown==3.6
|
43 |
-
markdown_to_json==2.1.1
|
44 |
-
minio==7.2.4
|
45 |
-
mistralai==0.4.2
|
46 |
-
nltk==3.9.1
|
47 |
-
numpy==1.26.4
|
48 |
-
ollama==0.2.1
|
49 |
-
onnxruntime==1.17.3
|
50 |
-
onnxruntime_gpu==1.17.1
|
51 |
-
openai==1.12.0
|
52 |
-
opencv_python==4.9.0.80
|
53 |
-
opencv_python_headless==4.9.0.80
|
54 |
-
openpyxl==3.1.2
|
55 |
-
ormsgpack==1.5.0
|
56 |
-
pandas==2.2.2
|
57 |
-
pdfplumber==0.10.4
|
58 |
-
peewee==3.17.1
|
59 |
-
Pillow==10.3.0
|
60 |
-
protobuf==5.27.2
|
61 |
-
psycopg2-binary==2.9.9
|
62 |
-
pyclipper==1.3.0.post5
|
63 |
-
pycryptodomex==3.20.0
|
64 |
-
pypdf==4.3.0
|
65 |
-
PyPDF2==3.0.1
|
66 |
-
pytest==8.2.2
|
67 |
-
python-dotenv==1.0.1
|
68 |
-
python_dateutil==2.8.2
|
69 |
-
python_pptx==0.6.23
|
70 |
-
pywencai==0.12.2
|
71 |
-
qianfan==0.4.6
|
72 |
-
ranx==0.3.20
|
73 |
-
readability_lxml==0.8.1
|
74 |
-
redis==5.0.3
|
75 |
-
Requests==2.32.2
|
76 |
-
replicate==0.31.0
|
77 |
-
roman_numbers==1.0.2
|
78 |
-
ruamel.base==1.0.0
|
79 |
-
scholarly==1.7.11
|
80 |
-
scikit_learn==1.5.0
|
81 |
-
selenium==4.22.0
|
82 |
-
setuptools==70.0.0
|
83 |
-
Shapely==2.0.5
|
84 |
-
six==1.16.0
|
85 |
-
StrEnum==0.4.15
|
86 |
-
tabulate==0.9.0
|
87 |
-
tencentcloud-sdk-python==3.0.1215
|
88 |
-
tika==2.6.0
|
89 |
-
tiktoken==0.6.0
|
90 |
-
torch==2.3.0
|
91 |
-
transformers==4.38.1
|
92 |
-
umap==0.1.1
|
93 |
-
vertexai==1.64.0
|
94 |
-
volcengine==1.0.146
|
95 |
-
voyageai==0.2.3
|
96 |
-
webdriver_manager==4.0.1
|
97 |
-
websocket==0.2.1
|
98 |
-
websocket-client==1.8.0
|
99 |
-
Werkzeug==3.0.3
|
100 |
-
wikipedia==1.4.0
|
101 |
-
word2number==1.1
|
102 |
-
xgboost==2.1.0
|
103 |
-
xpinyin==0.7.6
|
104 |
-
yfinance==0.1.96
|
105 |
-
zhipuai==2.0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements_arm.txt
DELETED
@@ -1,175 +0,0 @@
|
|
1 |
-
accelerate==0.27.2
|
2 |
-
aiohttp==3.10.2
|
3 |
-
aiosignal==1.3.1
|
4 |
-
annotated-types==0.6.0
|
5 |
-
anthropic===0.34.1
|
6 |
-
anyio==4.3.0
|
7 |
-
argon2-cffi==23.1.0
|
8 |
-
argon2-cffi-bindings==21.2.0
|
9 |
-
#Aspose.Slides==24.2.0
|
10 |
-
attrs==23.2.0
|
11 |
-
blinker==1.7.0
|
12 |
-
cachelib==0.12.0
|
13 |
-
cachetools==5.3.3
|
14 |
-
certifi==2024.7.4
|
15 |
-
cffi==1.16.0
|
16 |
-
charset-normalizer==3.3.2
|
17 |
-
click==8.1.7
|
18 |
-
cohere==5.6.2
|
19 |
-
coloredlogs==15.0.1
|
20 |
-
cryptography==43.0.1
|
21 |
-
dashscope==1.14.1
|
22 |
-
datasets==2.17.1
|
23 |
-
datrie==0.8.2
|
24 |
-
demjson3==3.0.6
|
25 |
-
dill==0.3.8
|
26 |
-
distro==1.9.0
|
27 |
-
elastic-transport==8.12.0
|
28 |
-
elasticsearch==8.12.1
|
29 |
-
elasticsearch-dsl==8.12.0
|
30 |
-
et-xmlfile==1.1.0
|
31 |
-
filelock==3.13.1
|
32 |
-
fastembed==0.2.6
|
33 |
-
FlagEmbedding==1.2.5
|
34 |
-
Flask==3.0.2
|
35 |
-
Flask-Cors==5.0.0
|
36 |
-
Flask-Login==0.6.3
|
37 |
-
Flask-Session==0.6.0
|
38 |
-
flatbuffers==23.5.26
|
39 |
-
frozenlist==1.4.1
|
40 |
-
fsspec==2023.10.0
|
41 |
-
h11==0.14.0
|
42 |
-
hanziconv==0.3.2
|
43 |
-
httpcore==1.0.4
|
44 |
-
httpx==0.27.0
|
45 |
-
huggingface-hub==0.20.3
|
46 |
-
humanfriendly==10.0
|
47 |
-
idna==3.7
|
48 |
-
itsdangerous==2.1.2
|
49 |
-
Jinja2==3.1.4
|
50 |
-
joblib==1.3.2
|
51 |
-
lxml==5.1.0
|
52 |
-
MarkupSafe==2.1.5
|
53 |
-
minio==7.2.4
|
54 |
-
mpmath==1.3.0
|
55 |
-
multidict==6.0.5
|
56 |
-
multiprocess==0.70.16
|
57 |
-
networkx==3.2.1
|
58 |
-
nltk==3.9
|
59 |
-
numpy==1.26.4
|
60 |
-
# nvidia-cublas-cu12==12.1.3.1
|
61 |
-
# nvidia-cuda-cupti-cu12==12.1.105
|
62 |
-
# nvidia-cuda-nvrtc-cu12==12.1.105
|
63 |
-
# nvidia-cuda-runtime-cu12==12.1.105
|
64 |
-
# nvidia-cudnn-cu12==8.9.2.26
|
65 |
-
# nvidia-cufft-cu12==11.0.2.54
|
66 |
-
# nvidia-curand-cu12==10.3.2.106
|
67 |
-
# nvidia-cusolver-cu12==11.4.5.107
|
68 |
-
# nvidia-cusparse-cu12==12.1.0.106
|
69 |
-
# nvidia-nccl-cu12==2.19.3
|
70 |
-
# nvidia-nvjitlink-cu12==12.3.101
|
71 |
-
# nvidia-nvtx-cu12==12.1.105
|
72 |
-
ollama==0.1.9
|
73 |
-
# onnxruntime-gpu==1.17.1
|
74 |
-
openai==1.12.0
|
75 |
-
opencv-python==4.9.0.80
|
76 |
-
openpyxl==3.1.2
|
77 |
-
ormsgpack==1.5.0
|
78 |
-
packaging==23.2
|
79 |
-
pandas==2.2.1
|
80 |
-
pdfminer.six==20221105
|
81 |
-
pdfplumber==0.10.4
|
82 |
-
peewee==3.17.1
|
83 |
-
pillow==10.3.0
|
84 |
-
protobuf==4.25.3
|
85 |
-
psutil==5.9.8
|
86 |
-
psycopg2-binary==2.9.9
|
87 |
-
pyarrow==15.0.0
|
88 |
-
pyarrow-hotfix==0.6
|
89 |
-
pyclipper==1.3.0.post5
|
90 |
-
pycparser==2.21
|
91 |
-
pycryptodome
|
92 |
-
pycryptodome-test-vectors
|
93 |
-
pycryptodomex
|
94 |
-
pydantic==2.6.2
|
95 |
-
pydantic_core==2.16.3
|
96 |
-
PyJWT==2.8.0
|
97 |
-
PyMySQL==1.1.1
|
98 |
-
PyPDF2==3.0.1
|
99 |
-
pypdfium2==4.27.0
|
100 |
-
python-dateutil==2.8.2
|
101 |
-
python-docx==1.1.0
|
102 |
-
python-dotenv==1.0.1
|
103 |
-
python-pptx==0.6.23
|
104 |
-
PyYAML==6.0.1
|
105 |
-
qianfan==0.4.6
|
106 |
-
redis==5.0.3
|
107 |
-
regex==2023.12.25
|
108 |
-
replicate==0.31.0
|
109 |
-
requests==2.32.2
|
110 |
-
ruamel.yaml==0.18.6
|
111 |
-
ruamel.yaml.clib==0.2.8
|
112 |
-
safetensors==0.4.2
|
113 |
-
scikit-learn==1.5.0
|
114 |
-
scipy==1.12.0
|
115 |
-
sentence-transformers==2.4.0
|
116 |
-
shapely==2.0.3
|
117 |
-
six==1.16.0
|
118 |
-
sniffio==1.3.1
|
119 |
-
StrEnum==0.4.15
|
120 |
-
sympy==1.12
|
121 |
-
tencentcloud-sdk-python==3.0.1215
|
122 |
-
threadpoolctl==3.3.0
|
123 |
-
tika==2.6.0
|
124 |
-
tiktoken==0.6.0
|
125 |
-
tokenizers==0.15.2
|
126 |
-
torch==2.2.1
|
127 |
-
tqdm==4.66.3
|
128 |
-
transformers==4.38.1
|
129 |
-
# triton==2.2.0
|
130 |
-
typing_extensions==4.10.0
|
131 |
-
tzdata==2024.1
|
132 |
-
urllib3==2.2.2
|
133 |
-
Werkzeug==3.0.3
|
134 |
-
xgboost==2.0.3
|
135 |
-
XlsxWriter==3.2.0
|
136 |
-
xpinyin==0.7.6
|
137 |
-
xxhash==3.4.1
|
138 |
-
yarl==1.9.4
|
139 |
-
zhipuai==2.0.1
|
140 |
-
BCEmbedding
|
141 |
-
loguru==0.7.2
|
142 |
-
umap-learn
|
143 |
-
fasttext==0.9.2
|
144 |
-
volcengine==1.0.141
|
145 |
-
voyageai==0.2.3
|
146 |
-
opencv-python-headless==4.9.0.80
|
147 |
-
readability-lxml==0.8.1
|
148 |
-
html_text==0.6.2
|
149 |
-
selenium==4.21.0
|
150 |
-
webdriver-manager==4.0.1
|
151 |
-
cn2an==0.5.22
|
152 |
-
roman-numbers==1.0.2
|
153 |
-
word2number==1.1
|
154 |
-
markdown==3.6
|
155 |
-
mistralai==0.4.2
|
156 |
-
boto3==1.34.140
|
157 |
-
duckduckgo_search==6.1.9
|
158 |
-
google-generativeai==0.7.2
|
159 |
-
groq==0.9.0
|
160 |
-
wikipedia==1.4.0
|
161 |
-
Bio==1.7.1
|
162 |
-
arxiv==2.1.3
|
163 |
-
pypdf==4.3.0
|
164 |
-
google_search_results==2.4.2
|
165 |
-
editdistance==0.8.1
|
166 |
-
markdown_to_json==2.1.1
|
167 |
-
scholarly==1.7.11
|
168 |
-
deepl==1.18.0
|
169 |
-
psycopg2-binary==2.9.9
|
170 |
-
tabulate==0.9.0
|
171 |
-
vertexai==1.64.0
|
172 |
-
yfinance==0.1.96
|
173 |
-
pywencai==0.12.2
|
174 |
-
akshare==1.14.72
|
175 |
-
ranx==0.3.20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|