Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
text-generation-inference
Commits
9b56d3fb
Unverified
Commit
9b56d3fb
authored
Dec 15, 2023
by
OlivierDehaene
Committed by
GitHub
Dec 15, 2023
Browse files
feat: relax mistral requirements (#1351)
Close #1253 Close #1279
parent
f3aea78f
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
671 additions
and
621 deletions
+671
-621
.github/workflows/build.yaml
.github/workflows/build.yaml
+40
-38
server/poetry.lock
server/poetry.lock
+587
-508
server/pyproject.toml
server/pyproject.toml
+4
-4
server/requirements_cuda.txt
server/requirements_cuda.txt
+10
-10
server/requirements_rocm.txt
server/requirements_rocm.txt
+9
-9
server/text_generation_server/models/__init__.py
server/text_generation_server/models/__init__.py
+15
-29
server/text_generation_server/models/custom_modeling/flash_mistral_modeling.py
...n_server/models/custom_modeling/flash_mistral_modeling.py
+0
-9
server/text_generation_server/models/custom_modeling/flash_mixtral_modeling.py
...n_server/models/custom_modeling/flash_mixtral_modeling.py
+6
-14
No files found.
.github/workflows/build.yaml
View file @
9b56d3fb
...
@@ -146,11 +146,50 @@ jobs:
...
@@ -146,11 +146,50 @@ jobs:
cache-from
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache,mode=min
cache-from
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache,mode=min
cache-to
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache,mode=min
cache-to
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache,mode=min
integration-tests
:
concurrency
:
group
:
${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.run_id }}
cancel-in-progress
:
true
needs
:
-
start-runner
-
build-and-push-image
# Wait for the docker image to be built
runs-on
:
${{ needs.start-runner.outputs.label }}
# run the job on the newly created runner
env
:
DOCKER_VOLUME
:
/cache
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Inject slug/short variables
uses
:
rlespinasse/github-slug-action@v4.4.1
-
name
:
Set up Python
uses
:
actions/setup-python@v4
with
:
python-version
:
3.9
-
name
:
Tailscale
uses
:
tailscale/github-action@7bd8039bf25c23c4ab1b8d6e2cc2da2280601966
with
:
authkey
:
${{ secrets.TAILSCALE_AUTHKEY }}
-
name
:
Prepare disks
run
:
|
sudo mkfs -t ext4 /dev/nvme1n1
sudo mkdir ${{ env.DOCKER_VOLUME }}
sudo mount /dev/nvme1n1 ${{ env.DOCKER_VOLUME }}
-
name
:
Install
run
:
|
make install-integration-tests
-
name
:
Run tests
run
:
|
export DOCKER_IMAGE=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:sha-${{ env.GITHUB_SHA_SHORT }}
export HUGGING_FACE_HUB_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }}
pytest -s -vv integration-tests
build-and-push-image-rocm
:
build-and-push-image-rocm
:
concurrency
:
concurrency
:
group
:
${{ github.workflow }}-build-and-push-image-rocm-${{ github.head_ref || github.run_id }}
group
:
${{ github.workflow }}-build-and-push-image-rocm-${{ github.head_ref || github.run_id }}
cancel-in-progress
:
true
cancel-in-progress
:
true
needs
:
start-runner
# required to start the main job when the runner is ready
needs
:
-
start-runner
-
build-and-push-image
# Wait for the main docker image to be built
-
integration-tests
# Wait for the main integration-tests
runs-on
:
${{ needs.start-runner.outputs.label }}
# run the job on the newly created runner
runs-on
:
${{ needs.start-runner.outputs.label }}
# run the job on the newly created runner
permissions
:
permissions
:
contents
:
write
contents
:
write
...
@@ -235,43 +274,6 @@ jobs:
...
@@ -235,43 +274,6 @@ jobs:
cache-from
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache-rocm,mode=min
cache-from
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache-rocm,mode=min
cache-to
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache-rocm,mode=min
cache-to
:
type=registry,ref=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:cache-rocm,mode=min
integration-tests
:
concurrency
:
group
:
${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.run_id }}
cancel-in-progress
:
true
needs
:
-
start-runner
-
build-and-push-image
# Wait for the docker image to be built
-
build-and-push-image-rocm
runs-on
:
${{ needs.start-runner.outputs.label }}
# run the job on the newly created runner
env
:
DOCKER_VOLUME
:
/cache
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Inject slug/short variables
uses
:
rlespinasse/github-slug-action@v4.4.1
-
name
:
Set up Python
uses
:
actions/setup-python@v4
with
:
python-version
:
3.9
-
name
:
Tailscale
uses
:
tailscale/github-action@7bd8039bf25c23c4ab1b8d6e2cc2da2280601966
with
:
authkey
:
${{ secrets.TAILSCALE_AUTHKEY }}
-
name
:
Prepare disks
run
:
|
sudo mkfs -t ext4 /dev/nvme1n1
sudo mkdir ${{ env.DOCKER_VOLUME }}
sudo mount /dev/nvme1n1 ${{ env.DOCKER_VOLUME }}
-
name
:
Install
run
:
|
make install-integration-tests
-
name
:
Run tests
run
:
|
export DOCKER_IMAGE=registry.internal.huggingface.tech/api-inference/community/text-generation-inference:sha-${{ env.GITHUB_SHA_SHORT }}
export HUGGING_FACE_HUB_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }}
pytest -s -vv integration-tests
stop-runner
:
stop-runner
:
name
:
Stop self-hosted EC2 runner
name
:
Stop self-hosted EC2 runner
needs
:
needs
:
...
...
server/poetry.lock
View file @
9b56d3fb
...
@@ -2,115 +2,117 @@
...
@@ -2,115 +2,117 @@
[[package]]
[[package]]
name = "accelerate"
name = "accelerate"
version = "0.2
0.3
"
version = "0.2
5.0
"
description = "Accelerate"
description = "Accelerate"
optional = true
optional = true
python-versions = ">=3.
7
.0"
python-versions = ">=3.
8
.0"
files = [
files = [
{file = "accelerate-0.2
0.3
-py3-none-any.whl", hash = "sha256:
147183e7a2215f7bd45a7af3b986a963daa8a61fa58b0912b9473049e011ad15
"},
{file = "accelerate-0.2
5.0
-py3-none-any.whl", hash = "sha256:
c7bb817eb974bba0ff3ea1ba0f24d55afb86d50e3d4fe98d6922dc69cf2ccff1
"},
{file = "accelerate-0.2
0.3
.tar.gz", hash = "sha256:
79a896978c20dac270083d42bf033f4c9a80dcdd6b946f1ca92d8d6d0f0f5ba9
"},
{file = "accelerate-0.2
5.0
.tar.gz", hash = "sha256:
ecf55b0ab278a1dac8539dde0d276977aff04683f07ede73eaf02478538576a1
"},
]
]
[package.dependencies]
[package.dependencies]
huggingface-hub = "*"
numpy = ">=1.17"
numpy = ">=1.17"
packaging = ">=20.0"
packaging = ">=20.0"
psutil = "*"
psutil = "*"
pyyaml = "*"
pyyaml = "*"
torch = ">=1.6.0"
safetensors = ">=0.3.1"
torch = ">=1.10.0"
[package.extras]
[package.extras]
dev = ["black (>=23.1,<24.0)", "datasets", "deepspeed", "evaluate", "hf-doc-builder (>=0.3.0)", "parameterized", "pytest", "pytest-subtests", "pytest-xdist", "rich", "ruff (>=0.0.241)", "scikit-learn", "scipy", "tqdm", "transformers", "urllib3 (<2.0.0)"]
dev = [
"bitsandbytes",
"black (>=23.1,<24.0)", "datasets", "deepspeed", "evaluate", "hf-doc-builder (>=0.3.0)", "parameterized", "pytest", "pytest-subtests", "pytest-xdist", "rich", "ruff (>=0.0.241)", "scikit-learn", "scipy",
"timm",
"tqdm", "transformers", "urllib3 (<2.0.0)"]
quality = ["black (>=23.1,<24.0)", "hf-doc-builder (>=0.3.0)", "ruff (>=0.0.241)", "urllib3 (<2.0.0)"]
quality = ["black (>=23.1,<24.0)", "hf-doc-builder (>=0.3.0)", "ruff (>=0.0.241)", "urllib3 (<2.0.0)"]
rich = ["rich"]
rich = ["rich"]
sagemaker = ["sagemaker"]
sagemaker = ["sagemaker"]
test-dev = ["datasets", "deepspeed", "evaluate", "scikit-learn", "scipy", "tqdm", "transformers"]
test-dev = [
"bitsandbytes",
"datasets", "deepspeed", "evaluate", "scikit-learn", "scipy",
"timm",
"tqdm", "transformers"]
test-prod = ["parameterized", "pytest", "pytest-subtests", "pytest-xdist"]
test-prod = ["parameterized", "pytest", "pytest-subtests", "pytest-xdist"]
test-trackers = ["comet-ml", "tensorboard", "wandb"]
test-trackers = ["comet-ml",
"dvclive",
"tensorboard", "wandb"]
testing = ["datasets", "deepspeed", "evaluate", "parameterized", "pytest", "pytest-subtests", "pytest-xdist", "scikit-learn", "scipy", "tqdm", "transformers"]
testing = [
"bitsandbytes",
"datasets", "deepspeed", "evaluate", "parameterized", "pytest", "pytest-subtests", "pytest-xdist", "scikit-learn", "scipy",
"timm",
"tqdm", "transformers"]
[[package]]
[[package]]
name = "aiohttp"
name = "aiohttp"
version = "3.9.
0
"
version = "3.9.
1
"
description = "Async http client/server framework (asyncio)"
description = "Async http client/server framework (asyncio)"
optional = true
optional = true
python-versions = ">=3.8"
python-versions = ">=3.8"
files = [
files = [
{file = "aiohttp-3.9.
0
-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:
6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:
e1f80197f8b0b846a8d5cf7b7ec6084493950d0882cc5537fb7b96a69e3c8590
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
c72444d17777865734aa1a4d167794c34b63e5883abb90356a0364a28904e6c0
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
9b05d5cbe9dafcdc733262c3a99ccf63d2f7ce02543620d2bd8db4d4f7a22f83
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
5c4fa235d534b3547184831c624c0b7c1e262cd1de847d95085ec94c16fddcd5
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
289ba9ae8e88d0ba16062ecf02dd730b34186ea3b1e7489046fc338bdc3361c4
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
bff7e2811814fa2271be95ab6e84c9436d027a0e59665de60edf44e529a42c1f
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
4
b77
7c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
81
b77
f868814346662c96ab36b875d7814ebf82340d3284a31681085c051320f
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
3b9c7426923bb7bd66d409da46c41e3fb40f5caf679da624439b9eba92043fa6
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:
deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:
8d44e7bf06b0c0a70a20f9100af9fcfd7f6d9d3913e37754c12d424179b4e48f
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:
4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:
22698f01ff5653fe66d16ffb7658f582a0ac084d7da1323e39fd9eab326a1f26
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:
3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:
ca7ca5abfbfe8d39e653870fbe8d7710be7a857f8a8386fc9de1aae2e02ce7e4
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:
65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:
8d7f98fde213f74561be1d6d3fa353656197f75d4edfbb3d94c9eb9b0fc47f5d
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5
a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5
216b6082c624b55cfe79af5d538e499cd5f5b976820eac31951fb4325974501
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-win32.whl", hash = "sha256:
2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-win32.whl", hash = "sha256:
0e7ba7ff228c0d9a2cd66194e90f2bca6e0abca810b786901a569c0de082f489
"},
{file = "aiohttp-3.9.
0
-cp310-cp310-win_amd64.whl", hash = "sha256:
ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd
"},
{file = "aiohttp-3.9.
1
-cp310-cp310-win_amd64.whl", hash = "sha256:
c7e939f1ae428a86e4abbb9a7c4732bf4706048818dfd979e5e2839ce0159f23
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:
f8e05f5163528962ce1d1806fce763ab893b1c5
b7
a
ce
0a3538cd81a90622f844
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:
df9cf74b9bc03d586fc53ba470828d7
b7
7
ce
51b0582d1d0b5b2fb673c0baa32d
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
ecca113f19d5e74048c001934045a2b9368d77b0b17691d905af18bd1c21275e
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:
f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:
8cef8710fb849d97c533f259103f09bac167a008d7131d7b2b0e3a33269185c0
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
bea94403a21eb94c93386d559bce297381609153e418a3ffc7d6bf772f59cc35
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2
f"},
{file = "aiohttp-3.9.
1
-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
91c742ca59045dce7ba76cab6e223e41d2c70d79e82c284a96411f8645e2aff
f"},
{file = "aiohttp-3.9.
0
-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
6c93b7c2e52061f0925c3382d5cb8980e40f91c989563d3d32ca280069fd6a87
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
c5b7bf8fe4d39886adc34311a233a2e01bc1
0e
b
4e
842220235ed1de57541a896
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
ee2527134f95e106cc1653e9ac78846f3a2ec1004cf2
0e
f
4e
02038035a74544d
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
11ff168d752cb41e8492817e10fb4f85828f6a0142b9726a30c27c35a1835f01
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:
694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e5829111
3"},
{file = "aiohttp-3.9.
1
-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:
b8c3a67eb87394386847d188996920f33b01b32155f0a94f36ca0e0c635bf3e
3"},
{file = "aiohttp-3.9.
0
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
c7b5d5d64e2a14e35a9240b33b89389e0035e6de8dbb7ffa50d10d8b65c57449
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:
eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:
69985d50a2b6f709412d944ffb2e97d0be154ea90600b7a921f95a87d6f108a2
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:
d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:
c9110c06eaaac7e1f5562caf481f18ccf8f6fdf4c3323feab28a93d34cc646bd
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
d737e69d193dac7296365a6dcb73bbbf53bb760ab25a3727716bbd42022e8d7a
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-win32.whl", hash = "sha256:
3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-win32.whl", hash = "sha256:
4ee8caa925aebc1e64e98432d78ea8de67b2272252b0a931d2ac3bd876ad5544
"},
{file = "aiohttp-3.9.
0
-cp311-cp311-win_amd64.whl", hash = "sha256:
e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b
"},
{file = "aiohttp-3.9.
1
-cp311-cp311-win_amd64.whl", hash = "sha256:
a34086c5cc285be878622e0a6ab897a986a6e8bf5b67ecb377015f06ed316587
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:
99ae01fb13a618b99
42
3
76
df77a1f50c20a281390dad3c56a6ec2942e266220d
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:
f80016
4276
eec54e0af5c99feb9494c295118fc10a11b997bbb1348ba1a52065
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:
05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:
500f1c59906cd142d452074f3811614be04819a38ae2b3239a48b82649c08821
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:
317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:
0b0a6a36ed7e164c6df1e18ee47afbd1990ce47cb428739d6c99aaabfaf1b3af
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
69da0f3ed3496808e8cbc5123a866c41c12c15baaaead96d256477edf168eb57
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
176df045597e674fa950bf5ae536be85699e04cea68fa3a616cf75e413737eb5
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
b796b44111f0cab6bbf66214186e44734b5baab949cb5fb56154142a92989aeb
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
f27fdaadce22f2ef950fc10dcdf8048407c3b42b73779e48a4e76b3c35bca26c
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
bcb6532b9814ea7c5a6a3299747c49de30e84472fa72821b07f5a9818bce0f66
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:
7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:
54631fb69a6e44b2ba522f7c22a6fb2667a02fd97d636048478db2fd8c4e98fe
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
6777a390e41e78e7c45dab43a4a
019
6
c5
5c3b8c30eebe017b152939372a8325
3"},
{file = "aiohttp-3.9.
1
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
4b4c452d
019
0
c5
a820d3f5c0f3cd8a28ace48c54053e24da9d6041bf8111318
3"},
{file = "aiohttp-3.9.
0
-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:
7
ae
5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:
c
ae
4c0c2ca800c793cae07ef3d40794625471040a87e1ba392039639ad61ab5b
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:
f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:
565760d6812b8d78d416c3c7cfdf5362fbe0d0d25b82fed75d0d29e18d7fc30f
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
54311eb54f3a0c45efb9ed0d0a8f43d1bc6060d773f6973efd90037a51cd0a3f
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-win32.whl", hash = "sha256:
de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-win32.whl", hash = "sha256:
85c3e3c9cb1d480e0b9a64c658cd66b3cfb8e721636ab8b0e746e2d79a7a9eed
"},
{file = "aiohttp-3.9.
0
-cp312-cp312-win_amd64.whl", hash = "sha256:
ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202
"},
{file = "aiohttp-3.9.
1
-cp312-cp312-win_amd64.whl", hash = "sha256:
11cb254e397a82efb1805d12561e80124928e04e9c4483587ce7390b3866d213
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:
f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:
8a22a34bc594d9d24621091d1b91511001a7eea91d6652ea495ce06e27381f70
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:
8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:
598db66eaf2e04aa0c8900a63b0101fdc5e6b8a7ddd805c56d86efb54eb66672
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:
4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a
36eb
7f2cae9814
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:
2c9376e2b09895c8ca8b95362283
36
5
eb
5c03bdc8428ade80a864160605715f1
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
41473de252e1797c2d2293804e389a6d6986ef37cbb4a25208de537ae32141dd
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9
4697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9
c5857612c9813796960c00767645cb5da815af16dafb32d70c72a8390bbf690
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
ffcd828e37dc219a72c9012ec44ad2e7e3066bec6ff3aaa19e7d435dbf4032ca
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
219a16763dc0294842188ac8a12262b5671817042b35d45e44fd0a697d8c8361
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f
32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f
694dc8a6a3112059258a725a4ebe9acac5fe62f11c77ac4dcf896edfa78ca28
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:
f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb
4"},
{file = "aiohttp-3.9.
1
-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:
bcc0ea8d5b74a41b621ad4a13d96c36079c81628ccc0b30cfb1603e3dfa3a01
4"},
{file = "aiohttp-3.9.
0
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
90ec72d231169b4b8d6085be13023ece8fa9b1bb495e4398d847e25218e0f431
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:
42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:
cf2a0ac0615842b849f40c4d7f304986a242f1e68286dbf3bd7a835e4f83acfd
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:
76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:
0e49b08eafa4f5707ecfb321ab9592717a319e37938e301d462f79b4e860c32a
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
2c59e0076ea31c08553e868cec02d22191c086f00b44610f8ab7363a11a5d9d8
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-win32.whl", hash = "sha256:
a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-win32.whl", hash = "sha256:
4831df72b053b1eed31eb00a2e1aff6896fb4485301d4ccb208cac264b648db4
"},
{file = "aiohttp-3.9.
0
-cp38-cp38-win_amd64.whl", hash = "sha256:
d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40
"},
{file = "aiohttp-3.9.
1
-cp38-cp38-win_amd64.whl", hash = "sha256:
3135713c5562731ee18f58d3ad1bf41e1d8883eb68b363f2ffde5b2ea4b84cc7
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:
98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:
cfeadf42840c1e870dc2042a232a8748e75a36b52d78968cda6736de55582766
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
70907533db712f7aa791effb38efa96f044ce3d4e850e2d7691abd759f4f0ae0
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
cdefe289681507187e375a5064c7599f52c40343a8701761c802c1853a504558
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d
b04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d
7481f581251bb5558ba9f635db70908819caa221fc79ee52a7f58392778c636
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
49f0c1b3c2842556e5de35f122fc0f0b721334ceb6e78c3719693364d4af8499
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
0d406b01a9f5a7e232d1b0d161b40c05275ffbcbd772dc18c1d5a570961a1ca4
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
8d8e4450e7fe24d86e86b23cc209e0023177b6d59502e33807b732d2deb6975f
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
3c0266cd6f005e99f3f51e583012de2778e65af6b73860038b968a0a8888487a
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:
b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:
ab221850108a4a063c5b8a70f00dd7a1975e5a1713f87f4ab26a46e5feac5a0e
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
c88a15f272a0ad3d7773cf3a37cc7b7d077cbfc8e331675cf1346e849d97a4e5
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2
d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2
37533179d9747080bcaad4d02083ce295c0d2eab3e9e8ce103411a4312991a0
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:
2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:
02ab6006ec3c3463b528374c4cdce86434e7b89ad355e7bf29e2f16b46c7dd6f
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
04fa38875e53eb7e354ece1607b1d2fdee2d175ea4e4d745f6ec9f751fe20c7c
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-win32.whl", hash = "sha256:
1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454
"},
{file = "aiohttp-3.9.
1
-cp39-cp39-win32.whl", hash = "sha256:
82eefaf1a996060602f3cc1112d93ba8b201dbf5d8fd9611227de2003dddb3b7
"},
{file = "aiohttp-3.9.
0
-cp39-cp39-win_amd64.whl", hash = "sha256:9
c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4
f"},
{file = "aiohttp-3.9.
1
-cp39-cp39-win_amd64.whl", hash = "sha256:9
b05d33ff8e6b269e30a7957bd3244ffbce2a7a35a81b81c382629b80af1a8b
f"},
{file = "aiohttp-3.9.
0
.tar.gz", hash = "sha256:
09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92
d"},
{file = "aiohttp-3.9.
1
.tar.gz", hash = "sha256:
8fc49a87ac269d4529da45871e2ffb6874e87779c3d0e2ccd813c0899221239
d"},
]
]
[package.dependencies]
[package.dependencies]
...
@@ -180,13 +182,13 @@ files = [
...
@@ -180,13 +182,13 @@ files = [
[[package]]
[[package]]
name = "bitsandbytes"
name = "bitsandbytes"
version = "0.41.
2
.post2"
version = "0.41.
3
.post2"
description = "k-bit optimizers and matrix multiplication routines."
description = "k-bit optimizers and matrix multiplication routines."
optional = true
optional = true
python-versions = "*"
python-versions = "*"
files = [
files = [
{file = "bitsandbytes-0.41.
2
.post2-py3-none-any.whl", hash = "sha256:
98e5e1979aea3d481ed06181c689f3a154d7f5dc1af770c5173485bc54cf7b72
"},
{file = "bitsandbytes-0.41.
3
.post2-py3-none-any.whl", hash = "sha256:
ceb301a3d4e6bf52bdad8d09f3064ac194bdfdeae535994c0315bd2ef7639cca
"},
{file = "bitsandbytes-0.41.
2
.post2.tar.gz", hash = "sha256:
d374da4700651f36a285ed53e012ee527736109614e3f5c0249985d41027136d
"},
{file = "bitsandbytes-0.41.
3
.post2.tar.gz", hash = "sha256:
7d25a51fb3b74b58e569473f8b70a5239124c0593dc053479c41cf2cd6730502
"},
]
]
[[package]]
[[package]]
...
@@ -326,20 +328,20 @@ files = [
...
@@ -326,20 +328,20 @@ files = [
[[package]]
[[package]]
name = "datasets"
name = "datasets"
version = "2.1
4.7
"
version = "2.1
5.0
"
description = "HuggingFace community-driven open-source library of datasets"
description = "HuggingFace community-driven open-source library of datasets"
optional = true
optional = true
python-versions = ">=3.8.0"
python-versions = ">=3.8.0"
files = [
files = [
{file = "datasets-2.1
4.7
-py3-none-any.whl", hash = "sha256:
1a64041a7da4f4130f736fc371c1f528b8ddd208cebe156400f65719bdbba79d
"},
{file = "datasets-2.1
5.0
-py3-none-any.whl", hash = "sha256:
6d658d23811393dfc982d026082e1650bdaaae28f6a86e651966cb072229a228
"},
{file = "datasets-2.1
4.7
.tar.gz", hash = "sha256:
394cf9b4ec0694b25945977b16ad5d18d5c15fb0e94141713eb8ead7452caf9e
"},
{file = "datasets-2.1
5.0
.tar.gz", hash = "sha256:
a26d059370bd7503bd60e9337977199a13117a83f72fb61eda7e66f0c4d50b2b
"},
]
]
[package.dependencies]
[package.dependencies]
aiohttp = "*"
aiohttp = "*"
dill = ">=0.3.0,<0.3.8"
dill = ">=0.3.0,<0.3.8"
fsspec = {version = ">=2023.1.0,<=2023.10.0", extras = ["http"]}
fsspec = {version = ">=2023.1.0,<=2023.10.0", extras = ["http"]}
huggingface-hub = ">=0.1
4.0,<1.0
.0"
huggingface-hub = ">=0.1
8
.0"
multiprocess = "*"
multiprocess = "*"
numpy = ">=1.17"
numpy = ">=1.17"
packaging = "*"
packaging = "*"
...
@@ -355,15 +357,15 @@ xxhash = "*"
...
@@ -355,15 +357,15 @@ xxhash = "*"
apache-beam = ["apache-beam (>=2.26.0,<2.44.0)"]
apache-beam = ["apache-beam (>=2.26.0,<2.44.0)"]
audio = ["librosa", "soundfile (>=0.12.1)"]
audio = ["librosa", "soundfile (>=0.12.1)"]
benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"]
benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"]
dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"]
dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)",
"jax (>=0.3.14)", "jaxlib (>=0.3.14)",
"joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers",
"typing-extensions (>=4.6.1)",
"zstandard"]
docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"]
docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"]
jax = ["jax (>=0.
2.8,!=0.3.2,<=0.3.25
)", "jaxlib (>=0.
1.65,<=0.3.25
)"]
jax = ["jax (>=0.
3.14
)", "jaxlib (>=0.
3.14
)"]
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)"]
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)"]
quality = ["black (>=23.1,<24.0)", "pyyaml (>=5.3.1)", "ruff (>=0.0.241)"]
quality = ["black (>=23.1,<24.0)", "pyyaml (>=5.3.1)", "ruff (>=0.0.241)"]
s3 = ["s3fs"]
s3 = ["s3fs"]
tensorflow = ["tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos"]
tensorflow = ["tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos"]
tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"]
tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"]
tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"]
tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)",
"jax (>=0.3.14)", "jaxlib (>=0.3.14)",
"joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers",
"typing-extensions (>=4.6.1)",
"zstandard"]
torch = ["torch"]
torch = ["torch"]
vision = ["Pillow (>=6.2.1)"]
vision = ["Pillow (>=6.2.1)"]
...
@@ -441,72 +443,88 @@ typing = ["typing-extensions (>=4.8)"]
...
@@ -441,72 +443,88 @@ typing = ["typing-extensions (>=4.8)"]
[[package]]
[[package]]
name = "frozenlist"
name = "frozenlist"
version = "1.4.
0
"
version = "1.4.
1
"
description = "A list-like structure which implements collections.abc.MutableSequence"
description = "A list-like structure which implements collections.abc.MutableSequence"
optional = true
optional = true
python-versions = ">=3.8"
python-versions = ">=3.8"
files = [
files = [
{file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"},
{file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"},
{file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"},
{file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"},
{file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"},
{file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"},
{file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"},
{file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"},
{file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"},
{file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"},
{file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"},
{file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"},
{file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"},
{file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"},
{file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"},
{file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"},
{file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"},
{file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"},
{file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"},
{file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"},
{file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"},
{file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"},
{file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"},
{file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"},
{file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"},
{file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"},
{file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"},
{file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"},
{file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"},
{file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"},
{file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"},
{file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"},
{file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"},
{file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"},
{file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"},
{file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"},
{file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"},
{file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"},
{file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"},
{file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"},
{file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"},
{file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"},
{file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"},
{file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"},
{file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"},
{file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"},
{file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"},
{file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"},
{file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"},
{file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"},
{file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"},
{file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"},
{file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"},
{file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"},
{file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"},
{file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"},
{file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"},
{file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"},
{file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"},
{file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"},
{file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"},
{file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"},
{file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"},
{file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"},
{file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"},
{file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"},
{file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"},
{file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"},
{file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"},
{file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"},
{file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"},
{file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"},
{file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"},
{file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"},
{file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"},
{file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"},
{file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"},
{file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"},
{file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"},
{file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"},
{file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"},
{file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"},
{file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"},
{file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"},
{file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"},
{file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"},
{file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"},
{file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"},
{file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"},
{file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"},
{file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"},
{file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"},
{file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"},
{file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"},
{file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"},
{file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"},
{file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"},
{file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"},
{file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"},
{file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"},
{file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"},
{file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"},
{file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"},
{file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"},
{file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"},
{file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"},
{file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"},
{file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"},
{file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"},
{file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"},
{file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"},
{file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"},
{file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"},
{file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"},
{file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"},
{file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"},
{file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"},
{file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"},
{file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"},
{file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"},
{file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"},
{file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"},
{file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"},
{file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"},
{file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"},
{file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"},
{file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"},
{file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"},
{file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"},
{file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"},
{file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"},
{file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"},
{file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"},
{file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"},
{file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"},
{file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"},
{file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"},
{file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"},
]
]
[[package]]
[[package]]
...
@@ -550,13 +568,13 @@ tqdm = ["tqdm"]
...
@@ -550,13 +568,13 @@ tqdm = ["tqdm"]
[[package]]
[[package]]
name = "googleapis-common-protos"
name = "googleapis-common-protos"
version = "1.6
1
.0"
version = "1.6
2
.0"
description = "Common protobufs used in Google APIs"
description = "Common protobufs used in Google APIs"
optional = false
optional = false
python-versions = ">=3.7"
python-versions = ">=3.7"
files = [
files = [
{file = "googleapis-common-protos-1.6
1
.0.tar.gz", hash = "sha256:8
a64866a97f6304a7179873a465d6eee97b7a24ec6cfd78e0f575e96b821240b
"},
{file = "googleapis-common-protos-1.6
2
.0.tar.gz", hash = "sha256:8
3f0ece9f94e5672cced82f592d2a5edf527a96ed1794f0bab36d5735c996277
"},
{file = "googleapis_common_protos-1.6
1
.0-py2.py3-none-any.whl", hash = "sha256:
22f1915393bb3245343f6efe87f6fe868532efc12aa26b391b15132e1279f1c0
"},
{file = "googleapis_common_protos-1.6
2
.0-py2.py3-none-any.whl", hash = "sha256:
4750113612205514f9f6aa4cb00d523a94f3e8c06c5ad2fee466387dc4875f07
"},
]
]
[package.dependencies]
[package.dependencies]
...
@@ -584,166 +602,166 @@ testing = ["protobuf (>=4.21.9)"]
...
@@ -584,166 +602,166 @@ testing = ["protobuf (>=4.21.9)"]
[[package]]
[[package]]
name = "grpcio"
name = "grpcio"
version = "1.
59.3
"
version = "1.
60.0
"
description = "HTTP/2-based RPC framework"
description = "HTTP/2-based RPC framework"
optional = false
optional = false
python-versions = ">=3.7"
python-versions = ">=3.7"
files = [
files = [
{file = "grpcio-1.
59.3
-cp310-cp310-linux_armv7l.whl", hash = "sha256:
aca028a6c7806e5b61e5f9f4232432c52856f7fcb98e330b20b6bc95d657bdcc
"},
{file = "grpcio-1.
60.0
-cp310-cp310-linux_armv7l.whl", hash = "sha256:
d020cfa595d1f8f5c6b343530cd3ca16ae5aefdd1e832b777f9f0eb105f5b139
"},
{file = "grpcio-1.
59.3
-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:
19ad26a7967f7999c8960d2b9fe382dae74c55b0c508c613a6c2ba21cddf2354
"},
{file = "grpcio-1.
60.0
-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:
b98f43fcdb16172dec5f4b49f2fece4b16a99fd284d81c6bbac1b3b69fcbe0ff
"},
{file = "grpcio-1.
59.3
-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:
72b71dad2a3d1650e69ad42a5c4edbc59ee017f08c32c95694172bc501def23c
"},
{file = "grpcio-1.
60.0
-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:
20e7a4f7ded59097c84059d28230907cd97130fa74f4a8bfd1d8e5ba18c81491
"},
{file = "grpcio-1.
59.3
-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
c0f0a11d82d0253656cc42e04b6a149521e02e755fe2e4edd21123de610fd1d4
"},
{file = "grpcio-1.
60.0
-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
452ca5b4afed30e7274445dd9b441a35ece656ec1600b77fff8c216fdf07df43
"},
{file = "grpcio-1.
59.3
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
60cddafb70f9a2c81ba251b53b4007e07cca7389e704f86266e22c4bffd8bf1d
"},
{file = "grpcio-1.
60.0
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
43e636dc2ce9ece583b3e2ca41df5c983f4302eabc6d5f9cd04f0562ee8ec1ae
"},
{file = "grpcio-1.
59.3
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6
c75a1fa0e677c1d2b6d4196ad395a5c381dfb8385f07ed034ef667cdcdbcc25
"},
{file = "grpcio-1.
60.0
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6
e306b97966369b889985a562ede9d99180def39ad42c8014628dd3cc343f508
"},
{file = "grpcio-1.
59.3
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
e1d8e01438d5964a11167eec1edb5f85ed8e475648f36c834ed5db4ffba24ac8
"},
{file = "grpcio-1.
60.0
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
f897c3b127532e6befdcf961c415c97f320d45614daf84deba0a54e64ea2457b
"},
{file = "grpcio-1.
59.3
-cp310-cp310-win32.whl", hash = "sha256:
c4b0076f0bf29ee62335b055a9599f52000b7941f577daa001c7ef961a1fbeab
"},
{file = "grpcio-1.
60.0
-cp310-cp310-win32.whl", hash = "sha256:
b87efe4a380887425bb15f220079aa8336276398dc33fce38c64d278164f963d
"},
{file = "grpcio-1.
59.3
-cp310-cp310-win_amd64.whl", hash = "sha256:
b1f00a3e6e0c3dccccffb5579fc76ebfe4eb40405ba308505b41ef92f747746a
"},
{file = "grpcio-1.
60.0
-cp310-cp310-win_amd64.whl", hash = "sha256:
a9c7b71211f066908e518a2ef7a5e211670761651039f0d6a80d8d40054047df
"},
{file = "grpcio-1.
59.3
-cp311-cp311-linux_armv7l.whl", hash = "sha256:
3996aaa21231451161dc29df6a43fcaa8b332042b6150482c119a678d007dd86
"},
{file = "grpcio-1.
60.0
-cp311-cp311-linux_armv7l.whl", hash = "sha256:
fb464479934778d7cc5baf463d959d361954d6533ad34c3a4f1d267e86ee25fd
"},
{file = "grpcio-1.
59.3
-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:
c
b4
e9cbd9b7388fcb06412da9f188c7803742d06d6f626304eb838d1707ec7e3
"},
{file = "grpcio-1.
60.0
-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:
4
b4
4d7e39964e808b071714666a812049765b26b3ea48c4434a3b317bac82f14
"},
{file = "grpcio-1.
59.3
-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:
8022ca303d6c694a0d7acfb2b472add920217618d3a99eb4b14edc7c6a7e8fcf
"},
{file = "grpcio-1.
60.0
-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:
90bdd76b3f04bdb21de5398b8a7c629676c81dfac290f5f19883857e9371d28c
"},
{file = "grpcio-1.
59.3
-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
b36683fad5664283755a7f4e2e804e243633634e93cd798a46247b8e54e3cb0d
"},
{file = "grpcio-1.
60.0
-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
91229d7203f1ef0ab420c9b53fe2ca5c1fbeb34f69b3bc1b5089466237a4a134
"},
{file = "grpcio-1.
59.3
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
8239b853226e4824e769517e1b5232e7c4dda3815b200534500338960fcc6118
"},
{file = "grpcio-1.
60.0
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
3b36a2c6d4920ba88fa98075fdd58ff94ebeb8acc1215ae07d01a418af4c0253
"},
{file = "grpcio-1.
59.3
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
0511af8653fbda489ff11d542a08505d56023e63cafbda60e6e00d4e0bae86ea
"},
{file = "grpcio-1.
60.0
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
297eef542156d6b15174a1231c2493ea9ea54af8d016b8ca7d5d9cc65cfcc444
"},
{file = "grpcio-1.
59.3
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
e78dc982bda74cef2ddfce1c91d29b96864c4c680c634e279ed204d51e227473
"},
{file = "grpcio-1.
60.0
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
87c9224acba0ad8bacddf427a1c2772e17ce50b3042a789547af27099c5f751d
"},
{file = "grpcio-1.
59.3
-cp311-cp311-win32.whl", hash = "sha256:
6a5c3a96405966c023e139c3bcccb2c7c776a6f256ac6d70f8558c9041bdccc3
"},
{file = "grpcio-1.
60.0
-cp311-cp311-win32.whl", hash = "sha256:
95ae3e8e2c1b9bf671817f86f155c5da7d49a2289c5cf27a319458c3e025c320
"},
{file = "grpcio-1.
59.3
-cp311-cp311-win_amd64.whl", hash = "sha256:
ed26826ee423b11477297b187371cdf4fa1eca874eb1156422ef3c9a60590dd9
"},
{file = "grpcio-1.
60.0
-cp311-cp311-win_amd64.whl", hash = "sha256:
467a7d31554892eed2aa6c2d47ded1079fc40ea0b9601d9f79204afa8902274b
"},
{file = "grpcio-1.
59.3
-cp312-cp312-linux_armv7l.whl", hash = "sha256:
45dddc5cb5227d30fa43652d8872dc87f086d81ab4b500be99413bad0ae198d7
"},
{file = "grpcio-1.
60.0
-cp312-cp312-linux_armv7l.whl", hash = "sha256:
a7152fa6e597c20cb97923407cf0934e14224af42c2b8d915f48bc3ad2d9ac18
"},
{file = "grpcio-1.
59.3
-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:
1736496d74682e53dd0907fd515f2694d8e6a96c9a359b4080b2504bf2b2d91b
"},
{file = "grpcio-1.
60.0
-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:
7db16dd4ea1b05ada504f08d0dca1cd9b926bed3770f50e715d087c6f00ad748
"},
{file = "grpcio-1.
59.3
-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:
ddbd1a16138e52e66229047624de364f88a948a4d92ba20e4e25ad7d22eef025
"},
{file = "grpcio-1.
60.0
-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:
b0571a5aef36ba9177e262dc88a9240c866d903a62799e44fd4aae3f9a2ec17e
"},
{file = "grpcio-1.
59.3
-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
fcfa56f8d031ffda902c258c84c4b88707f3a4be4827b4e3ab8ec7c24676320d
"},
{file = "grpcio-1.
60.0
-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
6fd9584bf1bccdfff1512719316efa77be235469e1e3295dce64538c4773840b
"},
{file = "grpcio-1.
59.3
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
f2eb8f0c7c0c62f7a547ad7a91ba627a5aa32a5ae8d930783f7ee61680d7eb8d
"},
{file = "grpcio-1.
60.0
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
d6a478581b1a1a8fdf3318ecb5f4d0cda41cacdffe2b527c23707c9c1b8fdb55
"},
{file = "grpcio-1.
59.3
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
8d993399cc65e3a34f8fd48dd9ad7a376734564b822e0160dd18b3d00c1a33f9
"},
{file = "grpcio-1.
60.0
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
77c8a317f0fd5a0a2be8ed5cbe5341537d5c00bb79b3bb27ba7c5378ba77dbca
"},
{file = "grpcio-1.
59.3
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
c0bd141f4f41907eb90bda74d969c3cb21c1c62779419782a5b3f5e4b5835718
"},
{file = "grpcio-1.
60.0
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
1c30bb23a41df95109db130a6cc1b974844300ae2e5d68dd4947aacba5985aa5
"},
{file = "grpcio-1.
59.3
-cp312-cp312-win32.whl", hash = "sha256:
33b8fd65d4e97efa62baec6171ce51f9cf68f3a8ba9f866f4abc9d62b5c97b79
"},
{file = "grpcio-1.
60.0
-cp312-cp312-win32.whl", hash = "sha256:
2aef56e85901c2397bd557c5ba514f84de1f0ae5dd132f5d5fed042858115951
"},
{file = "grpcio-1.
59.3
-cp312-cp312-win_amd64.whl", hash = "sha256:
0e735ed002f50d4f3cb9ecfe8ac82403f5d842d274c92d99db64cfc998515e07
"},
{file = "grpcio-1.
60.0
-cp312-cp312-win_amd64.whl", hash = "sha256:
e381fe0c2aa6c03b056ad8f52f8efca7be29fb4d9ae2f8873520843b6039612a
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-linux_armv7l.whl", hash = "sha256:
ea40ce4404e7cca0724c91a7404da410f0144148fdd58402a5942971e3469b94
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-linux_armv7l.whl", hash = "sha256:
92f88ca1b956eb8427a11bb8b4a0c0b2b03377235fc5102cb05e533b8693a415
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:
83113bcc393477b6f7342b9f48e8a054330c895205517edc66789ceea0796b53
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:
e278eafb406f7e1b1b637c2cf51d3ad45883bb5bd1ca56bc05e4fc135dfdaa65
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:
73afbac602b8f1212a50088193601f869b5073efa9855b3e51aaaec97848fc8a
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:
a48edde788b99214613e440fce495bbe2b1e142a7f214cce9e0832146c41e324
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
575d61de1950b0b0699917b686b1ca108690702fcc2df127b8c9c9320f93e069
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
de2ad69c9a094bf37c1102b5744c9aec6cf74d2b635558b779085d0263166454
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
8cd76057b5c9a4d68814610ef9226925f94c1231bbe533fdf96f6181f7d2ff9e
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
073f959c6f570797272f4ee9464a9997eaf1e98c27cb680225b82b53390d61e6
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:
95d6fd804c81efe4879e38bfd84d2b26e339a0a9b797e7615e884ef4686eb47b
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:
c826f93050c73e7769806f92e601e0efdb83ec8d7c76ddf45d514fee54e8e619
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:
0d42048b8a3286ea4134faddf1f9a59cf98192b94aaa10d910a25613c5eb5bfb
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:
9e30be89a75ee66aec7f9e60086fadb37ff8c0ba49a022887c28c134341f7179
"},
{file = "grpcio-1.
59.3
-cp37-cp37m-win_amd64.whl", hash = "sha256:
4619fea15c64bcdd9d447cdbdde40e3d5f1da3a2e8ae84103d94a9c1df210d7e
"},
{file = "grpcio-1.
60.0
-cp37-cp37m-win_amd64.whl", hash = "sha256:
b0fb2d4801546598ac5cd18e3ec79c1a9af8b8f2a86283c55a5337c5aeca4b1b
"},
{file = "grpcio-1.
59.3
-cp38-cp38-linux_armv7l.whl", hash = "sha256:9
5b5506e70284ac03b2005dd9ffcb6708c9ae660669376f0192a710687a22556
"},
{file = "grpcio-1.
60.0
-cp38-cp38-linux_armv7l.whl", hash = "sha256:9
073513ec380434eb8d21970e1ab3161041de121f4018bbed3146839451a6d8e
"},
{file = "grpcio-1.
59.3
-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:
9e17660947660ccfce56c7869032910c179a5328a77b73b37305cd1ee9301c2e
"},
{file = "grpcio-1.
60.0
-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:
74d7d9fa97809c5b892449b28a65ec2bfa458a4735ddad46074f9f7d9550ad13
"},
{file = "grpcio-1.
59.3
-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:
00912ce19914d038851be5cd380d94a03f9d195643c28e3ad03d355cc02ce7e8
"},
{file = "grpcio-1.
60.0
-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:
1434ca77d6fed4ea312901122dc8da6c4389738bf5788f43efb19a838ac03ead
"},
{file = "grpcio-1.
59.3
-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e
58b3cadaa3c90f1efca26ba33e0d408b35b497307027d3d707e4bcd8de862a6
"},
{file = "grpcio-1.
60.0
-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e
61e76020e0c332a98290323ecfec721c9544f5b739fab925b6e8cbe1944cf19
"},
{file = "grpcio-1.
59.3
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
d787ecadea865bdf78f6679f6f5bf4b984f18f659257ba612979df97a298b3c3
"},
{file = "grpcio-1.
60.0
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
675997222f2e2f22928fbba640824aebd43791116034f62006e19730715166c0
"},
{file = "grpcio-1.
59.3
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
0814942ba1bb
a2
6
9d
b4e760a34388640c601dece525c6a01f3b4ff030cc0db69
"},
{file = "grpcio-1.
60.0
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
5208a57eae445ae84
a2
1
9d
fd8b56e04313445d146873117b5fa75f3245bc1390
"},
{file = "grpcio-1.
59.3
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
fb111aa99d3180c361a35b5ae1e2c63750220c584a1344229abc139d5c891881
"},
{file = "grpcio-1.
60.0
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
428d699c8553c27e98f4d29fdc0f0edc50e9a8a7590bfd294d2edb0da7be3629
"},
{file = "grpcio-1.
59.3
-cp38-cp38-win32.whl", hash = "sha256:
eb8ba504c726befe40a356ecbe63c6c3c64c9a439b3164f5a718ec53c9874da
0"},
{file = "grpcio-1.
60.0
-cp38-cp38-win32.whl", hash = "sha256:
83f2292ae292ed5a47cdcb9821039ca8e88902923198f2193f13959360c0186
0"},
{file = "grpcio-1.
59.3
-cp38-cp38-win_amd64.whl", hash = "sha256:
cdbc6b32fadab9bebc6f49d3e7ec4c70983c71e965497adab7f87de218e84391
"},
{file = "grpcio-1.
60.0
-cp38-cp38-win_amd64.whl", hash = "sha256:
705a68a973c4c76db5d369ed573fec3367d7d196673fa86614b33d8c8e9ebb08
"},
{file = "grpcio-1.
59.3
-cp39-cp39-linux_armv7l.whl", hash = "sha256:c
82ca1e4be24a98a253d6dbaa216542e4163f33f38163fc77964b0f0d255b552
"},
{file = "grpcio-1.
60.0
-cp39-cp39-linux_armv7l.whl", hash = "sha256:c
193109ca4070cdcaa6eff00fdb5a56233dc7610216d58fb81638f89f02e4968
"},
{file = "grpcio-1.
59.3
-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:
36636babfda14f9e9687f28d5b66d349cf88c1301154dc71c6513de2b6c88c
59"},
{file = "grpcio-1.
60.0
-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:
676e4a44e740deaba0f4d95ba1d8c5c89a2fcc43d02c39f69450b1fa19d39
59
0
"},
{file = "grpcio-1.
59.3
-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:5f
9b2e591da751ac7fdd316cc25afafb7a626dededa9b414f90faad7f3ccebdb
"},
{file = "grpcio-1.
60.0
-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:5f
f21e000ff2f658430bde5288cb1ac440ff15c0d7d18b5fb222f941b46cb0d2
"},
{file = "grpcio-1.
59.3
-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
a93a82876a4926bf451db82ceb725bd87f42292bacc94586045261f501a86994
"},
{file = "grpcio-1.
60.0
-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
4c86343cf9ff7b2514dd229bdd88ebba760bd8973dac192ae687ff75e39ebfab
"},
{file = "grpcio-1.
59.3
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
ce31fa0bfdd1f2bb15b657c16105c8652186eab304eb512e6ae3b99b2fdd7d13
"},
{file = "grpcio-1.
60.0
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
0fd3b3968ffe7643144580f260f04d39d869fcc2cddb745deef078b09fd2b328
"},
{file = "grpcio-1.
59.3
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
16da0e40573962dab6cba16bec31f25a4f468e6d05b658e589090fe103b03e3d
"},
{file = "grpcio-1.
60.0
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
30943b9530fe3620e3b195c03130396cd0ee3a0d10a66c1bee715d1819001eaf
"},
{file = "grpcio-1.
59.3
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
d1d1a17372fd425addd5812049fa7374008ffe689585f27f802d0935522cf4b7
"},
{file = "grpcio-1.
60.0
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
b10241250cb77657ab315270b064a6c7f1add58af94befa20687e7c8d8603ae6
"},
{file = "grpcio-1.
59.3
-cp39-cp39-win32.whl", hash = "sha256:
52cc38a7241b5f7b4a91aaf9000fdd38e26bb00d5e8a71665ce40cfcee716281
"},
{file = "grpcio-1.
60.0
-cp39-cp39-win32.whl", hash = "sha256:
79a050889eb8d57a93ed21d9585bb63fca881666fc709f5d9f7f9372f5e7fd03
"},
{file = "grpcio-1.
59.3
-cp39-cp39-win_amd64.whl", hash = "sha256:
b491e5bbcad3020a96842040421e508780cade35baba30f402df9d321d1c423e
"},
{file = "grpcio-1.
60.0
-cp39-cp39-win_amd64.whl", hash = "sha256:
8a97a681e82bc11a42d4372fe57898d270a2707f36c45c6676e49ce0d5c41353
"},
{file = "grpcio-1.
59.3
.tar.gz", hash = "sha256:
7800f99568a74a06ebdccd419dd1b6e639b477dcaf6da77ea702f8fb14ce5f80
"},
{file = "grpcio-1.
60.0
.tar.gz", hash = "sha256:
2199165a1affb666aa24adf0c97436686d0a61bc5fc113c037701fb7c7fceb96
"},
]
]
[package.extras]
[package.extras]
protobuf = ["grpcio-tools (>=1.
59.3
)"]
protobuf = ["grpcio-tools (>=1.
60.0
)"]
[[package]]
[[package]]
name = "grpcio-reflection"
name = "grpcio-reflection"
version = "1.
59.3
"
version = "1.
60.0
"
description = "Standard Protobuf Reflection Service for gRPC"
description = "Standard Protobuf Reflection Service for gRPC"
optional = false
optional = false
python-versions = ">=3.6"
python-versions = ">=3.6"
files = [
files = [
{file = "grpcio-reflection-1.
59.3
.tar.gz", hash = "sha256:
5403c5a738c6eec4bb4080da77e450312dace41a86e292ac37cfd007b2657d4e
"},
{file = "grpcio-reflection-1.
60.0
.tar.gz", hash = "sha256:
3f6c0c73ba8f20d1420c5e72fc4dd0389fac346ed8fb32a28e6e1967b44fff35
"},
{file = "grpcio_reflection-1.
59.3
-py3-none-any.whl", hash = "sha256:
526064089d71cddce7244a83059f410fac6ccd30344a624c10f54420d417b3d2
"},
{file = "grpcio_reflection-1.
60.0
-py3-none-any.whl", hash = "sha256:
f7a347ebd6cecf347fc836fd520fd1f0b3411912981649c7fb34d62a3a15aa4e
"},
]
]
[package.dependencies]
[package.dependencies]
grpcio = ">=1.
59.3
"
grpcio = ">=1.
60.0
"
protobuf = ">=4.21.6"
protobuf = ">=4.21.6"
[[package]]
[[package]]
name = "grpcio-status"
name = "grpcio-status"
version = "1.
59.3
"
version = "1.
60.0
"
description = "Status proto mapping for gRPC"
description = "Status proto mapping for gRPC"
optional = false
optional = false
python-versions = ">=3.6"
python-versions = ">=3.6"
files = [
files = [
{file = "grpcio-status-1.
59.3
.tar.gz", hash = "sha256:
65c394ba43380d6bdf8c04c61efc493104b5535552aed35817a1b4dc66598a1f
"},
{file = "grpcio-status-1.
60.0
.tar.gz", hash = "sha256:
f10e0b6db3adc0fdc244b71962814ee982996ef06186446b5695b9fa635aa1ab
"},
{file = "grpcio_status-1.
59.3
-py3-none-any.whl", hash = "sha256:
2fd2eb39ca4e9afb3c874c0878ff75b258db0b7dcc25570fc521f16ae0ab942a
"},
{file = "grpcio_status-1.
60.0
-py3-none-any.whl", hash = "sha256:
7d383fa36e59c1e61d380d91350badd4d12ac56e4de2c2b831b050362c3c572e
"},
]
]
[package.dependencies]
[package.dependencies]
googleapis-common-protos = ">=1.5.5"
googleapis-common-protos = ">=1.5.5"
grpcio = ">=1.
59.3
"
grpcio = ">=1.
60.0
"
protobuf = ">=4.21.6"
protobuf = ">=4.21.6"
[[package]]
[[package]]
name = "grpcio-tools"
name = "grpcio-tools"
version = "1.
59.3
"
version = "1.
60.0
"
description = "Protobuf code generator for gRPC"
description = "Protobuf code generator for gRPC"
optional = false
optional = false
python-versions = ">=3.7"
python-versions = ">=3.7"
files = [
files = [
{file = "grpcio-tools-1.
59.3
.tar.gz", hash = "sha256:
cd160ac4281cd1ae77a2c880377a7728349340b4c91e24285037b57c18e9f651
"},
{file = "grpcio-tools-1.
60.0
.tar.gz", hash = "sha256:
ed30499340228d733ff69fcf4a66590ed7921f94eb5a2bf692258b1280b9dac7
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-linux_armv7l.whl", hash = "sha256:
17017fe74734c158e0f93817f1ff17aeda37d0f105ed6e63b12c26b66743a7a8
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-linux_armv7l.whl", hash = "sha256:
6807b7a3f3e6e594566100bd7fe04a2c42ce6d5792652677f1aaf5aa5adaef3d
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:
ac1013e4f84ffd15c45ead6d19c9d188b76c14466a799aa9c338ce3b9ebf6dcc
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:
857c5351e9dc33a019700e171163f94fcc7e3ae0f6d2b026b10fda1e3c008ef1
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:
0a5d760619305eb51a8719ce9c081398f145a46bc7c86a6e2cebe0648a21f40c
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:
ec0e401e9a43d927d216d5169b03c61163fb52b665c5af2fed851357b15aef88
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
de3d9649b7a3091ec785a67d5bf006584440f03896ee52259c6d9ff412d08afb
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
e68dc4474f30cad11a965f0eb5d37720a032b4720afa0ec19dbcea2de73b5aae
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
21868aa510317d3f39e5de40208ffb8ab1beb1cbcab333317939b59a9b5db055
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
bbf0ed772d2ae7e8e5d7281fcc00123923ab130b94f7a843eee9af405918f924
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:
0b116a888580317e421358f26bfaeec47d6f73079e8a47bad60d1f9f7b30f2a5
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:
c771b19dce2bfe06899247168c077d7ab4e273f6655d8174834f9a6034415096
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
6bd4a72c27abda191e2360b2b720ada1880aba96a63604a6f9d7c37bb3bbf5c4
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
e5614cf0960456d21d8a0f4902e3e5e3bcacc4e400bf22f196e5dd8aabb978b7
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-win32.whl", hash = "sha256:
d70cad744e92c7576c226a72998ae8dd59240c942f73798bbde40284eb9eb991
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-win32.whl", hash = "sha256:
87cf439178f3eb45c1a889b2e4a17cbb4c450230d92c18d9c57e11271e239c55
"},
{file = "grpcio_tools-1.
59.3
-cp310-cp310-win_amd64.whl", hash = "sha256:
2b8a4aca0c11f2a8b3bfe103362984bdc427ab762428446ef2e12922fd48ee10
"},
{file = "grpcio_tools-1.
60.0
-cp310-cp310-win_amd64.whl", hash = "sha256:
687f576d7ff6ce483bc9a196d1ceac45144e8733b953620a026daed8e450bc38
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-linux_armv7l.whl", hash = "sha256:
b4418b78408ff56ee70a0b14484c07f5e48c2e6f4fa7be390d486a686d0cd6e4
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-linux_armv7l.whl", hash = "sha256:
2a8a758701f3ac07ed85f5a4284c6a9ddefcab7913a8e552497f919349e72438
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:
58de83ced4f86458f45288a5f76d9765dc245a9ce4e783a194decccc7e0674ea
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:
7c1cde49631732356cb916ee1710507967f19913565ed5f9991e6c9cb37e3887
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:
76b0cdcbcb38722840d3eaff6439ddb4b8f0210c6718553d7b7c911834b10e60
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:
d941749bd8dc3f8be58fe37183143412a27bec3df8482d5abd6b4ec3f1ac2924
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
a0cacf59513b100bfb3d8de51ba43db6140aa9bcb7bba872badb48acb430c002
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
9ee35234f1da8fba7ddbc544856ff588243f1128ea778d7a1da3039be829a134
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
019fdd986c80b13187574c291df5054f241bdbe87dbc86e4cee73ffa28328647
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
b8f7a5094adb49e85db13ea3df5d99a976c2bdfd83b0ba26af20ebb742ac6786
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
ff304b9d6c23d8e2ecc860bebac1ec6768a2d920985bcea9ce4a7aaeeea44f76
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
24c4ead4a03037beaeb8ef2c90d13d70101e35c9fae057337ed1a9144ef10b53
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
ca286affe613beaf2d5a6b8bd83203dcf488917194b416da48aa849047b5f081
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
811abb9c4fb6679e0058dfa123fb065d97b158b71959c0e048e7972bbb82ba0f
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-win32.whl", hash = "sha256:
8f69141ff370729ceaad0286b8c6e15352c9bb39a
a8
f
18
c0500ce3d0238c2981
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-win32.whl", hash = "sha256:
bd2a17b0193fbe4793c215d63ce1e01ae00
a818
3d81d7c04e77e1dfafc4b2b8a
"},
{file = "grpcio_tools-1.
59.3
-cp311-cp311-win_amd64.whl", hash = "sha256:
05ec4ffe16b6eab12813476e6d7465a0027bee33999d4776ae1d9c0664d0fc54
"},
{file = "grpcio_tools-1.
60.0
-cp311-cp311-win_amd64.whl", hash = "sha256:
b22b1299b666eebd5752ba7719da536075eae3053abcf2898b65f763c314d9da
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-linux_armv7l.whl", hash = "sha256:
21d976419630f72a7cefebe7dcfc451b33d70c805a43ff5a60c43367813f0527
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-linux_armv7l.whl", hash = "sha256:
74025fdd6d1cb7ba4b5d087995339e9a09f0c16cf15dfe56368b23e41ffeaf7a
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:
396106f92ea6ab2157535e1a009bac99aa15680ca8addbc8e7c1a4d3f5b1fb2c
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-macosx_10_10_universal2.whl", hash = "sha256:
5a907a4f1ffba86501b2cdb8682346249ea032b922fc69a92f082ba045cca548
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:
4f064483e0046a4a193d6c67b26ea0f61737e8232ff61636a7fa0bc5244458be
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:
1fbb9554466d560472f07d906bfc8dcaf52f365c2a407015185993e30372a886
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
a6dc6da8e3780df25095c1952f45c334e1554f25b991ffe75dbf0408795d27a0
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
f10ef47460ce3c6fd400f05fe757b90df63486c9b84d1ecad42dcc5f80c8ac14
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
87111be05c1a159ce3fffbfad86ff69fd4bf1702cde127eb698d8e8c3a018ab6
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
321b18f42a70813545e416ddcb8bf20defa407a8114906711c9710a69596ceda
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
83453a13c2120238eb7fb993b03b370496e76071a7b45c816aa682d9226d29c1
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
081336d8258f1a56542aa8a7a5dec99a2b38d902e19fbdd744594783301b0210
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
4384b29d8e126bc6e24a5efd9d60a2a2015867c7109fa67ff2ed274b3f4a05c5
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
addc9b23d6ff729d9f83d4a2846292d4c84f5eb2ec38f08489a6a0d66ac2b91e
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-win32.whl", hash = "sha256:
ce1372c9acde9d74c7e54858598ac0c5203dd3ec24b9085f7a8b2f33cc156736
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-win32.whl", hash = "sha256:
e87cabac7969bdde309575edc2456357667a1b28262b2c1f12580ef48315b19d
"},
{file = "grpcio_tools-1.
59.3
-cp312-cp312-win_amd64.whl", hash = "sha256:
84179e3a7c9067e993700b3255f2adc10e9b16e8dd28525d1dd1a02b9ca603ee
"},
{file = "grpcio_tools-1.
60.0
-cp312-cp312-win_amd64.whl", hash = "sha256:
e70d867c120d9849093b0ac24d861e378bc88af2552e743d83b9f642d2caa7c2
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-linux_armv7l.whl", hash = "sha256:5
92208a9a02df75993cc4dba111d2b81f0e6a3f3837856be239e1aceb6651f31
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-linux_armv7l.whl", hash = "sha256:5
59ce714fe212aaf4abbe1493c5bb8920def00cc77ce0d45266f4fd9d8b3166f
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:
1abe30ce770ac4fed966d017771fa7f8ced6a279de7ce68023e2c07f07911e76
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:
7a5263a0f2ddb7b1cfb2349e392cfc4f318722e0f48f886393e06946875d40f3
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:
4dce57668e2aa8c3bb0b2a0bb766a2654ee0f4d8d31e02a6001e98af18569285
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:
18976684a931ca4bcba65c78afa778683aefaae310f353e198b1823bf09775a0
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
acaefd3c362250a02cc93fc1b5440e3cb30ab8d7fd81594b2975ea19f123aae3
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
e5c519a0d4ba1ab44a004fa144089738c59278233e2010b2cf4527dc667ff297
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
76542e1c11e3f2c22c19cff6b3233caab35924fad1f685ce63184d31b4050fa8
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
6170873b1e5b6580ebb99e87fb6e4ea4c48785b910bd7af838cc6e44b2bccb04
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:
64fd1efb23da054f61aca2346c5139f317b7f4c545f6dbda5ec246f281af8e86
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:
fb4df80868b3e397d5fbccc004c789d2668b622b51a9d2387b4c89c80d31e2c5
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:
ea6454acde508c9a62dab3f59e98b32e32b26aa60df20080982503bb7db51304
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:
dba6e32c87b4af29b5f475fb2f470f7ee3140bfc128644f17c6c59ddeb670680
"},
{file = "grpcio_tools-1.
59.3
-cp37-cp37m-win_amd64.whl", hash = "sha256:
a048d4bde526f3c6e364abea2c3a481f3bbebc4bfa7fdcfcc3e5ee4f8ab9c4c5
"},
{file = "grpcio_tools-1.
60.0
-cp37-cp37m-win_amd64.whl", hash = "sha256:
f610384dee4b1ca705e8da66c5b5fe89a2de3d165c5282c3d1ddf40cb18924e4
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-linux_armv7l.whl", hash = "sha256:
b4db59a62d31c98105af08b1bfb8878c239e4cf31088f2d9864756cdfec6774
6"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-linux_armv7l.whl", hash = "sha256:
4041538f55aad5b3ae7e25ab314d7995d689e968bfc8aa169d939a3160b1e4c
6"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:
05ac0f6683759e5508081c09af26cb6cc949c2c54d75ff8b76344709f78dda53
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:
2fb4cf74bfe1e707cf10bc9dd38a1ebaa145179453d150febb121c7e9cd749bf
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:
a031e1ced828a00f1eb59db5f5d4dd39d3bd6a7df8187f84830d4a32a1bbc686
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:
2fd1671c52f96e79a2302c8b1c1f78b8a561664b8b3d6946f20d8f1cc6b4225a
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
f48b4409b306675b7673dad725c9cf3234bf05623bf8a193ad14af39d0368ba6
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
dd1e68c232fe01dd5312a8dbe52c50ecd2b5991d517d7f7446af4ba6334ba872
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
36524d97cc936767a69815b90be76a1420b3218a7724ce69cde6ece794e72a17
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
17a32b3da4fc0798cdcec0a9c974ac2a1e98298f151517bf9148294a3b1a5742
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
7cc7e8b893a6c37a8a28735fede1aa40275988a668d1e22c5f234938a77d811d
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
9970d384fb0c084b00945ef57d98d57a8d32be106d8f0bd31387f7cbfe411b5b
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
917be645a71cf9592d2f5a3589c20c074a6539954017e8e2dca5e8ba13025625
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
5ce6bbd4936977ec1114f2903eb4342781960d521b0d82f73afedb9335251f6f
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-win32.whl", hash = "sha256:
a1394b7a65d738ee0ce4eac1fc95158dd9c97b5c3f690d259e6ee0bf131697de
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-win32.whl", hash = "sha256:
2e00de389729ca8d8d1a63c2038703078a887ff738dc31be640b7da9c26d0d4f
"},
{file = "grpcio_tools-1.
59.3
-cp38-cp38-win_amd64.whl", hash = "sha256:
007745bd3c5a788dcb73eeb6cd773613a834bd2442e7d062dcafe46dbd4bb5f6
"},
{file = "grpcio_tools-1.
60.0
-cp38-cp38-win_amd64.whl", hash = "sha256:
6192184b1f99372ff1d9594bd4b12264e3ff26440daba7eb043726785200ff77
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-linux_armv7l.whl", hash = "sha256:
102b5f14a500dbb766f24a96884d9572a3ea7a56d69695461100fb71ec922ef6
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-linux_armv7l.whl", hash = "sha256:
eae27f9b16238e2aaee84c77b5923c6924d6dccb0bdd18435bf42acc8473ae1a
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:
46c384a0e30a8422a3e2c5530b3cd69b652dd659549907e2eaac7ca4e0ab614d
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:
b96981f3a31b85074b73d97c8234a5ed9053d65a36b18f4a9c45a2120a5b7a0a
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:
ee013da4f5a4ef50fdeca372470733bc402677a4dc0023ee94bf42478b5a620d
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:
1748893efd05cf4a59a175d7fa1e4fbb652f4d84ccaa2109f7869a2be48ed25e
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
4b7883ce3d532c09f29c016fdac107f9a3dc43f9e6b60faf8b91fcba21824269
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
7a6fe752205caae534f29fba907e2f59ff79aa42c6205ce9a467e9406cbac68c
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
2861e4814ebc147854c2246092c433931f4c15f3c8105ae8716b1e282313a5ae
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
3456df087ea61a0972a5bc165aed132ed6ddcc63f5749e572f9fff84540bdbad
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
d93590a6a82469f3e58e39692230d99c43a39b215cb581e072dcd52286471152
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
f3d916606dcf5610d4367918245b3d9d8cd0d2ec0b7043d1bbb8c50fe9815c3a
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f
8396183e6e0a16178773963dc21b58c0c532783476fda314198a9e42f57af7d
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f
c01bc1079279ec342f0f1b6a107b3f5dc3169c33369cf96ada6e2e171f74e86
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-win32.whl", hash = "sha256:
6747b1d82d08e0f5e1a6438532343a1c5504147d1a199c5756e702e5f916de4c
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-win32.whl", hash = "sha256:
2dd01257e4feff986d256fa0bac9f56de59dc735eceeeb83de1c126e2e91f653
"},
{file = "grpcio_tools-1.
59.3
-cp39-cp39-win_amd64.whl", hash = "sha256:
3a560dcb176dd42c37af5d37299e318341a572547e32b942247daa834d2164c0
"},
{file = "grpcio_tools-1.
60.0
-cp39-cp39-win_amd64.whl", hash = "sha256:
1b93ae8ffd18e9af9a965ebca5fa521e89066267de7abdde20721edc04e42721
"},
]
]
[package.dependencies]
[package.dependencies]
grpcio = ">=1.
59.3
"
grpcio = ">=1.
60.0
"
protobuf = ">=4.21.6,<5.0dev"
protobuf = ">=4.21.6,<5.0dev"
setuptools = "*"
setuptools = "*"
...
@@ -781,18 +799,18 @@ files = [
...
@@ -781,18 +799,18 @@ files = [
[[package]]
[[package]]
name = "huggingface-hub"
name = "huggingface-hub"
version = "0.1
6
.4"
version = "0.1
9
.4"
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
optional = false
optional = false
python-versions = ">=3.
7
.0"
python-versions = ">=3.
8
.0"
files = [
files = [
{file = "huggingface_hub-0.1
6
.4-py3-none-any.whl", hash = "sha256:
0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349
"},
{file = "huggingface_hub-0.1
9
.4-py3-none-any.whl", hash = "sha256:
dba013f779da16f14b606492828f3760600a1e1801432d09fe1c33e50b825bb5
"},
{file = "huggingface_hub-0.1
6
.4.tar.gz", hash = "sha256:
608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14
"},
{file = "huggingface_hub-0.1
9
.4.tar.gz", hash = "sha256:
176a4fc355a851c17550e7619488f383189727eab209534d7cef2114dae77b22
"},
]
]
[package.dependencies]
[package.dependencies]
filelock = "*"
filelock = "*"
fsspec = "
*
"
fsspec = "
>=2023.5.0
"
packaging = ">=20.9"
packaging = ">=20.9"
pyyaml = ">=5.1"
pyyaml = ">=5.1"
requests = "*"
requests = "*"
...
@@ -800,26 +818,27 @@ tqdm = ">=4.42.1"
...
@@ -800,26 +818,27 @@ tqdm = ">=4.42.1"
typing-extensions = ">=3.7.4.3"
typing-extensions = ">=3.7.4.3"
[package.extras]
[package.extras]
all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp",
"black (>=23.1,<24.0)",
"gradio", "jedi", "mypy (==
0.982
)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.
0.241
)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"]
all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "mypy (==
1.5.1
)", "numpy", "pydantic
(>1.1,<2.0)", "pydantic (>1.1,<3.0)
", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.
1.3
)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3",
"typing-extensions (>=4.8.0)",
"urllib3 (<2.0)"]
cli = ["InquirerPy (==0.3.4)"]
cli = ["InquirerPy (==0.3.4)"]
dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"]
dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "mypy (==1.5.1)", "numpy", "pydantic (>1.1,<2.0)", "pydantic (>1.1,<3.0)", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.1.3)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)"]
docs = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "hf-doc-builder", "jedi", "mypy (==1.5.1)", "numpy", "pydantic (>1.1,<2.0)", "pydantic (>1.1,<3.0)", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.1.3)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "typing-extensions (>=4.8.0)", "urllib3 (<2.0)", "watchdog"]
fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"]
fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"]
inference = ["aiohttp", "pydantic"]
inference = ["aiohttp", "pydantic
(>1.1,<2.0)", "pydantic (>1.1,<3.0)
"]
quality = [
"black (>=23.1,<24.0)",
"mypy (==
0.982
)", "ruff (>=0.
0.241
)"]
quality = ["mypy (==
1.5.1
)", "ruff (>=0.
1.3
)"]
tensorflow = ["graphviz", "pydot", "tensorflow"]
tensorflow = ["graphviz", "pydot", "tensorflow"]
testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"]
testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic
(>1.1,<2.0)", "pydantic (>1.1,<3.0)
", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"]
torch = ["torch"]
torch = ["torch"]
typing = [
"pydantic",
"types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"]
typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"
, "typing-extensions (>=4.8.0)"
]
[[package]]
[[package]]
name = "idna"
name = "idna"
version = "3.
4
"
version = "3.
6
"
description = "Internationalized Domain Names in Applications (IDNA)"
description = "Internationalized Domain Names in Applications (IDNA)"
optional = false
optional = false
python-versions = ">=3.5"
python-versions = ">=3.5"
files = [
files = [
{file = "idna-3.
4
-py3-none-any.whl", hash = "sha256:
90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2
"},
{file = "idna-3.
6
-py3-none-any.whl", hash = "sha256:
c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f
"},
{file = "idna-3.
4
.tar.gz", hash = "sha256:
814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4
"},
{file = "idna-3.
6
.tar.gz", hash = "sha256:
9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca
"},
]
]
[[package]]
[[package]]
...
@@ -1436,36 +1455,36 @@ files = [
...
@@ -1436,36 +1455,36 @@ files = [
[[package]]
[[package]]
name = "pandas"
name = "pandas"
version = "2.1.
3
"
version = "2.1.
4
"
description = "Powerful data structures for data analysis, time series, and statistics"
description = "Powerful data structures for data analysis, time series, and statistics"
optional = true
optional = true
python-versions = ">=3.9"
python-versions = ">=3.9"
files = [
files = [
{file = "pandas-2.1.
3
-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
acf08a73b5022b479c1be155d4988b72f3020f308f7a87c52770
2c5f89
66d34f
"},
{file = "pandas-2.1.
4
-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
bdec823dc6ec53f7a6339a0e34c68b144a7a1fd28d80c260534c39c6
2c5
b
f8
c
9"},
{file = "pandas-2.1.
3
-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
3cc4469ff0cf9aa3a005870cb49ab8969942b7156
e0a4
6cc3f5abd6b11051dfb
"},
{file = "pandas-2.1.
4
-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
294d96cfaf28d688f30c918a765ea2ae2e0e71d3536754f4b6d
e0
e
a4
a496d034
"},
{file = "pandas-2.1.
3
-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
35172bff95f598cc5866c047f43c7f4df2c893acd8e10e6653a4b792ed7f19bb
"},
{file = "pandas-2.1.
4
-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
6b728fb8deba8905b319f96447a27033969f3ea1fea09d07d296c9030ab2ed1d
"},
{file = "pandas-2.1.
3
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
59dfe0e65a2f3988e940224e2a70932edc964df79f3356e5f2997c7d63e758b4
"},
{file = "pandas-2.1.
4
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
00028e6737c594feac3c2df15636d73ace46b8314d236100b57ed7e4b9ebe8d9
"},
{file = "pandas-2.1.
3
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
0296a66200dee556850d99b24c54c7dfa53a3264b1ca6f440e42bad424caea03
"},
{file = "pandas-2.1.
4
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
426dc0f1b187523c4db06f96fb5c8d1a845e259c99bda74f7de97bd8a3bb3139
"},
{file = "pandas-2.1.
3
-cp310-cp310-win_amd64.whl", hash = "sha256:
465571472267a2d6e00657900afadbe6097c8e1dc43746917db4dfc862e8863e
"},
{file = "pandas-2.1.
4
-cp310-cp310-win_amd64.whl", hash = "sha256:
f237e6ca6421265643608813ce9793610ad09b40154a3344a088159590469e46
"},
{file = "pandas-2.1.
3
-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
04d4c58e1f112a74689da707be
31
c
f6
89db086949c71828ef5da86727cfe3f8
2"},
{file = "pandas-2.1.
4
-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
b7d852d16c270e43
31f6
f59b3e9aa23f935f5c4b0ed2d0bc77637a8890a5d09
2"},
{file = "pandas-2.1.
3
-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:
7fa2ad4ff196768ae63a33f8062e6838efed3a319cf938fdf8b95e956c813042
"},
{file = "pandas-2.1.
4
-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:
bd7d5f2f54f78164b3d7a40f33bf79a74cdee72c31affec86bfcabe7e0789821
"},
{file = "pandas-2.1.
3
-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
4441ac94a2a2613e3982e502ccec3bdedefe871e8cea54b8775992485c5660ef
"},
{file = "pandas-2.1.
4
-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
0aa6e92e639da0d6e2017d9ccff563222f4eb31e4b2c3cf32a2a392fc3103c0d
"},
{file = "pandas-2.1.
3
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d
5ded6ff28abbf0ea7689f251754d3789e1edb0c4d0d91028f0b980598418a58
"},
{file = "pandas-2.1.
4
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d
797591b6846b9db79e65dc2d0d48e61f7db8d10b2a9480b4e3faaddc421a171
"},
{file = "pandas-2.1.
3
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
fca5680368a5139d4920ae3dc993eb5106d49f814ff24018b64d8850a52c6ed2
"},
{file = "pandas-2.1.
4
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
d2d3e7b00f703aea3945995ee63375c61b2e6aa5aa7871c5d622870e5e137623
"},
{file = "pandas-2.1.
3
-cp311-cp311-win_amd64.whl", hash = "sha256:d
e21e12bf1511190fc1e9ebc067f14ca09fccfb189a813b38d63211d54832f5f
"},
{file = "pandas-2.1.
4
-cp311-cp311-win_amd64.whl", hash = "sha256:d
c9bf7ade01143cddc0074aa6995edd05323974e6e40d9dbde081021ded8510e
"},
{file = "pandas-2.1.
3
-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:
a5d53c725832e5f1645e7674989f4c106e4b7249c1d57549023ed5462d73b140
"},
{file = "pandas-2.1.
4
-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:
482d5076e1791777e1571f2e2d789e940dedd927325cc3cb6d0800c6304082f6
"},
{file = "pandas-2.1.
3
-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:
7cf4cf26042476e39394f1f86868d25b265ff787c9b2f0d367280f11afbdee6d
"},
{file = "pandas-2.1.
4
-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:
8a706cfe7955c4ca59af8c7a0517370eafbd98593155b48f10f9811da440248b
"},
{file = "pandas-2.1.
3
-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
72c84ec1b1d8e5efcbff5312abe92bfb9d5b558f11e0cf077f5496c4f4a3c99e
"},
{file = "pandas-2.1.
4
-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
b0513a132a15977b4a5b89aabd304647919bc2169eac4c8536afb29c07c23540
"},
{file = "pandas-2.1.
3
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
1f539e113739a3e0cc15176bf1231a553db0239bfa47a2c870283fd93ba4f683
"},
{file = "pandas-2.1.
4
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
e9f17f2b6fc076b2a0078862547595d66244db0f41bf79fc5f64a5c4d635bead
"},
{file = "pandas-2.1.
3
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
fc77309da3b55732059e484a1efc0897f6149183c522390772d3561f9bf96c00
"},
{file = "pandas-2.1.
4
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
45d63d2a9b1b37fa6c84a68ba2422dc9ed018bdaa668c7f47566a01188ceeec1
"},
{file = "pandas-2.1.
3
-cp312-cp312-win_amd64.whl", hash = "sha256:
08637041279b8981a062899da0ef47828df52a1838204d2b3761fbd3e9fcb549
"},
{file = "pandas-2.1.
4
-cp312-cp312-win_amd64.whl", hash = "sha256:
f69b0c9bb174a2342818d3e2778584e18c740d56857fc5cdb944ec8bbe4082cf
"},
{file = "pandas-2.1.
3
-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
b99c4e51ef2ed98f69099c72c75ec904dd610eb41a32847c4fcbc1a975f2d2b8
"},
{file = "pandas-2.1.
4
-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
3f06bda01a143020bad20f7a85dd5f4a1600112145f126bc9e3e42077c24ef34
"},
{file = "pandas-2.1.
3
-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
f7ea8ae8004de0381a2376662c0505bb0a4f679f4c61fbfd122aa3d1b0e5f09d
"},
{file = "pandas-2.1.
4
-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
ab5796839eb1fd62a39eec2916d3e979ec3130509930fea17fe6f81e18108f6a
"},
{file = "pandas-2.1.
3
-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
fcd76d67ca2d48f56e2db45833cf9d58f548f97f61eecd3fdc74268417632b8a
"},
{file = "pandas-2.1.
4
-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
edbaf9e8d3a63a9276d707b4d25930a262341bca9874fcb22eff5e3da5394732
"},
{file = "pandas-2.1.
3
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1
329dbe93a880a3d7893149979caa82d6ba64a25e471682637f846d9dbc10dd2
"},
{file = "pandas-2.1.
4
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1
ebfd771110b50055712b3b711b51bee5d50135429364d0498e1213a7adc2be8
"},
{file = "pandas-2.1.
3
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
321ecdb117bf0f16c339cc6d5c9a06063854f12d4d9bc422a84bb2ed3207380a
"},
{file = "pandas-2.1.
4
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
8ea107e0be2aba1da619cc6ba3f999b2bfc9669a83554b1904ce3dd9507f0860
"},
{file = "pandas-2.1.
3
-cp39-cp39-win_amd64.whl", hash = "sha256:
11a771450f36cebf2a4c9dbd3a19dfa8c46c4b905a3ea09dc8e556626060fe71
"},
{file = "pandas-2.1.
4
-cp39-cp39-win_amd64.whl", hash = "sha256:
d65148b14788b3758daf57bf42725caa536575da2b64df9964c563b015230984
"},
{file = "pandas-2.1.
3
.tar.gz", hash = "sha256:
22929f84bca106921917eb73c1521317ddd0a4c71b395bcf767a106e3494209f
"},
{file = "pandas-2.1.
4
.tar.gz", hash = "sha256:
fcb68203c833cc735321512e13861358079a96c174a61f5116a1de89c58c0ef7
"},
]
]
[package.dependencies]
[package.dependencies]
...
@@ -2171,56 +2190,117 @@ files = [
...
@@ -2171,56 +2190,117 @@ files = [
[[package]]
[[package]]
name = "tokenizers"
name = "tokenizers"
version = "0.1
3.3
"
version = "0.1
5.0
"
description = "
Fast and Customizable Tokenizers
"
description = ""
optional = false
optional = false
python-versions = "
*
"
python-versions = "
>=3.7
"
files = [
files = [
{file = "tokenizers-0.13.3-cp310-cp310-macosx_10_11_x86_64.whl", hash = "sha256:f3835c5be51de8c0a092058a4d4380cb9244fb34681fd0a295fbf0a52a5fdf33"},
{file = "tokenizers-0.15.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:cd3cd0299aaa312cd2988957598f80becd04d5a07338741eca076057a2b37d6e"},
{file = "tokenizers-0.13.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4ef4c3e821730f2692489e926b184321e887f34fb8a6b80b8096b966ba663d07"},
{file = "tokenizers-0.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a922c492c721744ee175f15b91704be2d305569d25f0547c77cd6c9f210f9dc"},
{file = "tokenizers-0.13.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5fd1a6a25353e9aa762e2aae5a1e63883cad9f4e997c447ec39d071020459bc"},
{file = "tokenizers-0.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:331dd786d02fc38698f835fff61c99480f98b73ce75a4c65bd110c9af5e4609a"},
{file = "tokenizers-0.13.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee0b1b311d65beab83d7a41c56a1e46ab732a9eed4460648e8eb0bd69fc2d059"},
{file = "tokenizers-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88dd0961c437d413ab027f8b115350c121d49902cfbadf08bb8f634b15fa1814"},
{file = "tokenizers-0.13.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ef4215284df1277dadbcc5e17d4882bda19f770d02348e73523f7e7d8b8d396"},
{file = "tokenizers-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6fdcc55339df7761cd52e1fbe8185d3b3963bc9e3f3545faa6c84f9e8818259a"},
{file = "tokenizers-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4d53976079cff8a033f778fb9adca2d9d69d009c02fa2d71a878b5f3963ed30"},
{file = "tokenizers-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1480b0051d8ab5408e8e4db2dc832f7082ea24aa0722c427bde2418c6f3bd07"},
{file = "tokenizers-0.13.3-cp310-cp310-win32.whl", hash = "sha256:1f0e3b4c2ea2cd13238ce43548959c118069db7579e5d40ec270ad77da5833ce"},
{file = "tokenizers-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9855e6c258918f9cf62792d4f6ddfa6c56dccd8c8118640f867f6393ecaf8bd7"},
{file = "tokenizers-0.13.3-cp310-cp310-win_amd64.whl", hash = "sha256:89649c00d0d7211e8186f7a75dfa1db6996f65edce4b84821817eadcc2d3c79e"},
{file = "tokenizers-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de9529fe75efcd54ba8d516aa725e1851df9199f0669b665c55e90df08f5af86"},
{file = "tokenizers-0.13.3-cp311-cp311-macosx_10_11_universal2.whl", hash = "sha256:56b726e0d2bbc9243872b0144515ba684af5b8d8cd112fb83ee1365e26ec74c8"},
{file = "tokenizers-0.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8edcc90a36eab0705fe9121d6c77c6e42eeef25c7399864fd57dfb27173060bf"},
{file = "tokenizers-0.13.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:cc5c022ce692e1f499d745af293ab9ee6f5d92538ed2faf73f9708c89ee59ce6"},
{file = "tokenizers-0.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ae17884aafb3e94f34fb7cfedc29054f5f54e142475ebf8a265a4e388fee3f8b"},
{file = "tokenizers-0.13.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f55c981ac44ba87c93e847c333e58c12abcbb377a0c2f2ef96e1a266e4184ff2"},
{file = "tokenizers-0.15.0-cp310-none-win32.whl", hash = "sha256:9a3241acdc9b44cff6e95c4a55b9be943ef3658f8edb3686034d353734adba05"},
{file = "tokenizers-0.13.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f247eae99800ef821a91f47c5280e9e9afaeed9980fc444208d5aa6ba69ff148"},
{file = "tokenizers-0.15.0-cp310-none-win_amd64.whl", hash = "sha256:4b31807cb393d6ea31926b307911c89a1209d5e27629aa79553d1599c8ffdefe"},
{file = "tokenizers-0.13.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4b3e3215d048e94f40f1c95802e45dcc37c5b05eb46280fc2ccc8cd351bff839"},
{file = "tokenizers-0.15.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:af7e9be8c05d30bb137b9fd20f9d99354816599e5fd3d58a4b1e28ba3b36171f"},
{file = "tokenizers-0.13.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ba2b0bf01777c9b9bc94b53764d6684554ce98551fec496f71bc5be3a03e98b"},
{file = "tokenizers-0.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c3d7343fa562ea29661783344a2d83662db0d3d17a6fa6a403cac8e512d2d9fd"},
{file = "tokenizers-0.13.3-cp311-cp311-win32.whl", hash = "sha256:cc78d77f597d1c458bf0ea7c2a64b6aa06941c7a99cb135b5969b0278824d808"},
{file = "tokenizers-0.15.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:32371008788aeeb0309a9244809a23e4c0259625e6b74a103700f6421373f395"},
{file = "tokenizers-0.13.3-cp311-cp311-win_amd64.whl", hash = "sha256:ecf182bf59bd541a8876deccf0360f5ae60496fd50b58510048020751cf1724c"},
{file = "tokenizers-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca9db64c7c9954fbae698884c5bb089764edc549731e5f9b7fa1dd4e4d78d77f"},
{file = "tokenizers-0.13.3-cp37-cp37m-macosx_10_11_x86_64.whl", hash = "sha256:0527dc5436a1f6bf2c0327da3145687d3bcfbeab91fed8458920093de3901b44"},
{file = "tokenizers-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dbed5944c31195514669cf6381a0d8d47f164943000d10f93d6d02f0d45c25e0"},
{file = "tokenizers-0.13.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:07cbb2c307627dc99b44b22ef05ff4473aa7c7cc1fec8f0a8b37d8a64b1a16d2"},
{file = "tokenizers-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aab16c4a26d351d63e965b0c792f5da7227a37b69a6dc6d922ff70aa595b1b0c"},
{file = "tokenizers-0.13.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4560dbdeaae5b7ee0d4e493027e3de6d53c991b5002d7ff95083c99e11dd5ac0"},
{file = "tokenizers-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c2b60b12fdd310bf85ce5d7d3f823456b9b65eed30f5438dd7761879c495983"},
{file = "tokenizers-0.13.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64064bd0322405c9374305ab9b4c07152a1474370327499911937fd4a76d004b"},
{file = "tokenizers-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0344d6602740e44054a9e5bbe9775a5e149c4dddaff15959bb07dcce95a5a859"},
{file = "tokenizers-0.13.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8c6e2ab0f2e3d939ca66aa1d596602105fe33b505cd2854a4c1717f704c51de"},
{file = "tokenizers-0.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4525f6997d81d9b6d9140088f4f5131f6627e4c960c2c87d0695ae7304233fc3"},
{file = "tokenizers-0.13.3-cp37-cp37m-win32.whl", hash = "sha256:6cc29d410768f960db8677221e497226e545eaaea01aa3613fa0fdf2cc96cff4"},
{file = "tokenizers-0.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:65975094fef8cc68919644936764efd2ce98cf1bacbe8db2687155d2b0625bee"},
{file = "tokenizers-0.13.3-cp37-cp37m-win_amd64.whl", hash = "sha256:fc2a7fdf864554a0dacf09d32e17c0caa9afe72baf9dd7ddedc61973bae352d8"},
{file = "tokenizers-0.15.0-cp311-none-win32.whl", hash = "sha256:ff5d2159c5d93015f5a4542aac6c315506df31853123aa39042672031768c301"},
{file = "tokenizers-0.13.3-cp38-cp38-macosx_10_11_x86_64.whl", hash = "sha256:8791dedba834c1fc55e5f1521be325ea3dafb381964be20684b92fdac95d79b7"},
{file = "tokenizers-0.15.0-cp311-none-win_amd64.whl", hash = "sha256:2dd681b53cf615e60a31a115a3fda3980e543d25ca183797f797a6c3600788a3"},
{file = "tokenizers-0.13.3-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:d607a6a13718aeb20507bdf2b96162ead5145bbbfa26788d6b833f98b31b26e1"},
{file = "tokenizers-0.15.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:c9cce6ee149a3d703f86877bc2a6d997e34874b2d5a2d7839e36b2273f31d3d9"},
{file = "tokenizers-0.13.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3791338f809cd1bf8e4fee6b540b36822434d0c6c6bc47162448deee3f77d425"},
{file = "tokenizers-0.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a0a94bc3370e6f1cc8a07a8ae867ce13b7c1b4291432a773931a61f256d44ea"},
{file = "tokenizers-0.13.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2f35f30e39e6aab8716f07790f646bdc6e4a853816cc49a95ef2a9016bf9ce6"},
{file = "tokenizers-0.15.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:309cfcccfc7e502cb1f1de2c9c1c94680082a65bfd3a912d5a5b2c90c677eb60"},
{file = "tokenizers-0.13.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:310204dfed5aa797128b65d63538a9837cbdd15da2a29a77d67eefa489edda26"},
{file = "tokenizers-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8413e994dd7d875ab13009127fc85633916c71213917daf64962bafd488f15dc"},
{file = "tokenizers-0.13.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0f9b92ea052305166559f38498b3b0cae159caea712646648aaa272f7160963"},
{file = "tokenizers-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d0ebf9430f901dbdc3dcb06b493ff24a3644c9f88c08e6a1d6d0ae2228b9b818"},
{file = "tokenizers-0.13.3-cp38-cp38-win32.whl", hash = "sha256:9a3fa134896c3c1f0da6e762d15141fbff30d094067c8f1157b9fdca593b5806"},
{file = "tokenizers-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10361e9c7864b22dd791ec5126327f6c9292fb1d23481d4895780688d5e298ac"},
{file = "tokenizers-0.13.3-cp38-cp38-win_amd64.whl", hash = "sha256:8e7b0cdeace87fa9e760e6a605e0ae8fc14b7d72e9fc19c578116f7287bb873d"},
{file = "tokenizers-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:babe42635b8a604c594bdc56d205755f73414fce17ba8479d142a963a6c25cbc"},
{file = "tokenizers-0.13.3-cp39-cp39-macosx_10_11_x86_64.whl", hash = "sha256:00cee1e0859d55507e693a48fa4aef07060c4bb6bd93d80120e18fea9371c66d"},
{file = "tokenizers-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3768829861e964c7a4556f5f23307fce6a23872c2ebf030eb9822dbbbf7e9b2a"},
{file = "tokenizers-0.13.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:a23ff602d0797cea1d0506ce69b27523b07e70f6dda982ab8cf82402de839088"},
{file = "tokenizers-0.15.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9c91588a630adc88065e1c03ac6831e3e2112558869b9ebcb2b8afd8a14c944d"},
{file = "tokenizers-0.13.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ce07445050b537d2696022dafb115307abdffd2a5c106f029490f84501ef97"},
{file = "tokenizers-0.15.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:77606994e793ca54ecf3a3619adc8a906a28ca223d9354b38df41cb8766a0ed6"},
{file = "tokenizers-0.13.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:280ffe95f50eaaf655b3a1dc7ff1d9cf4777029dbbc3e63a74e65a056594abc3"},
{file = "tokenizers-0.15.0-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:6fe143939f3b596681922b2df12a591a5b010e7dcfbee2202482cd0c1c2f2459"},
{file = "tokenizers-0.13.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97acfcec592f7e9de8cadcdcda50a7134423ac8455c0166b28c9ff04d227b371"},
{file = "tokenizers-0.15.0-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:b7bee0f1795e3e3561e9a557061b1539e5255b8221e3f928f58100282407e090"},
{file = "tokenizers-0.13.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd7730c98a3010cd4f523465867ff95cd9d6430db46676ce79358f65ae39797b"},
{file = "tokenizers-0.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5d37e7f4439b4c46192ab4f2ff38ab815e4420f153caa13dec9272ef14403d34"},
{file = "tokenizers-0.13.3-cp39-cp39-win32.whl", hash = "sha256:48625a108029cb1ddf42e17a81b5a3230ba6888a70c9dc14e81bc319e812652d"},
{file = "tokenizers-0.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:caadf255cf7f951b38d10097836d1f3bcff4aeaaffadfdf748bab780bf5bff95"},
{file = "tokenizers-0.13.3-cp39-cp39-win_amd64.whl", hash = "sha256:bc0a6f1ba036e482db6453571c9e3e60ecd5489980ffd95d11dc9f960483d783"},
{file = "tokenizers-0.15.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:05accb9162bf711a941b1460b743d62fec61c160daf25e53c5eea52c74d77814"},
{file = "tokenizers-0.13.3.tar.gz", hash = "sha256:2e546dbb68b623008a5442353137fbb0123d311a6d7ba52f2667c8862a75af2e"},
{file = "tokenizers-0.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26a2ef890740127cb115ee5260878f4a677e36a12831795fd7e85887c53b430b"},
{file = "tokenizers-0.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e54c5f26df14913620046b33e822cb3bcd091a332a55230c0e63cc77135e2169"},
{file = "tokenizers-0.15.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:669b8ed653a578bcff919566631156f5da3aab84c66f3c0b11a6281e8b4731c7"},
{file = "tokenizers-0.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0ea480d943297df26f06f508dab6e012b07f42bf3dffdd36e70799368a5f5229"},
{file = "tokenizers-0.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bc80a0a565ebfc7cd89de7dd581da8c2b3238addfca6280572d27d763f135f2f"},
{file = "tokenizers-0.15.0-cp37-none-win32.whl", hash = "sha256:cdd945e678bbdf4517d5d8de66578a5030aeefecdb46f5320b034de9cad8d4dd"},
{file = "tokenizers-0.15.0-cp37-none-win_amd64.whl", hash = "sha256:1ab96ab7dc706e002c32b2ea211a94c1c04b4f4de48354728c3a6e22401af322"},
{file = "tokenizers-0.15.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:f21c9eb71c9a671e2a42f18b456a3d118e50c7f0fc4dd9fa8f4eb727fea529bf"},
{file = "tokenizers-0.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2a5f4543a35889679fc3052086e69e81880b2a5a28ff2a52c5a604be94b77a3f"},
{file = "tokenizers-0.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f8aa81afec893e952bd39692b2d9ef60575ed8c86fce1fd876a06d2e73e82dca"},
{file = "tokenizers-0.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1574a5a4af22c3def93fe8fe4adcc90a39bf5797ed01686a4c46d1c3bc677d2f"},
{file = "tokenizers-0.15.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7c7982fd0ec9e9122d03b209dac48cebfea3de0479335100ef379a9a959b9a5a"},
{file = "tokenizers-0.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8d16b647032df2ce2c1f9097236e046ea9fedd969b25637b9d5d734d78aa53b"},
{file = "tokenizers-0.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b3cdf29e6f9653da330515dc8fa414be5a93aae79e57f8acc50d4028dd843edf"},
{file = "tokenizers-0.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7286f3df10de840867372e3e64b99ef58c677210e3ceb653cd0e740a5c53fe78"},
{file = "tokenizers-0.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aabc83028baa5a36ce7a94e7659250f0309c47fa4a639e5c2c38e6d5ea0de564"},
{file = "tokenizers-0.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:72f78b0e0e276b1fc14a672fa73f3acca034ba8db4e782124a2996734a9ba9cf"},
{file = "tokenizers-0.15.0-cp38-none-win32.whl", hash = "sha256:9680b0ecc26e7e42f16680c1aa62e924d58d1c2dd992707081cc10a374896ea2"},
{file = "tokenizers-0.15.0-cp38-none-win_amd64.whl", hash = "sha256:f17cbd88dab695911cbdd385a5a7e3709cc61dff982351f5d1b5939f074a2466"},
{file = "tokenizers-0.15.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:3661862df7382c5eb23ac4fbf7c75e69b02dc4f5784e4c5a734db406b5b24596"},
{file = "tokenizers-0.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c3045d191dad49647f5a5039738ecf1c77087945c7a295f7bcf051c37067e883"},
{file = "tokenizers-0.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a9fcaad9ab0801f14457d7c820d9f246b5ab590c407fc6b073819b1573097aa7"},
{file = "tokenizers-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a79f17027f24fe9485701c8dbb269b9c713954ec3bdc1e7075a66086c0c0cd3c"},
{file = "tokenizers-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:01a3aa332abc4bee7640563949fcfedca4de8f52691b3b70f2fc6ca71bfc0f4e"},
{file = "tokenizers-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05b83896a893cdfedad8785250daa3ba9f0504848323471524d4783d7291661e"},
{file = "tokenizers-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cbbf2489fcf25d809731ba2744ff278dd07d9eb3f8b7482726bd6cae607073a4"},
{file = "tokenizers-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab806ad521a5e9de38078b7add97589c313915f6f5fec6b2f9f289d14d607bd6"},
{file = "tokenizers-0.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4a522612d5c88a41563e3463226af64e2fa00629f65cdcc501d1995dd25d23f5"},
{file = "tokenizers-0.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e58a38c4e6075810bdfb861d9c005236a72a152ebc7005941cc90d1bbf16aca9"},
{file = "tokenizers-0.15.0-cp39-none-win32.whl", hash = "sha256:b8034f1041fd2bd2b84ff9f4dc4ae2e1c3b71606820a9cd5c562ebd291a396d1"},
{file = "tokenizers-0.15.0-cp39-none-win_amd64.whl", hash = "sha256:edde9aa964145d528d0e0dbf14f244b8a85ebf276fb76869bc02e2530fa37a96"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:309445d10d442b7521b98083dc9f0b5df14eca69dbbfebeb98d781ee2cef5d30"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d3125a6499226d4d48efc54f7498886b94c418e93a205b673bc59364eecf0804"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ed56ddf0d54877bb9c6d885177db79b41576e61b5ef6defeb579dcb803c04ad5"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b22cd714706cc5b18992a232b023f736e539495f5cc61d2d28d176e55046f6c"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fac2719b1e9bc8e8e7f6599b99d0a8e24f33d023eb8ef644c0366a596f0aa926"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:85ddae17570ec7e5bfaf51ffa78d044f444a8693e1316e1087ee6150596897ee"},
{file = "tokenizers-0.15.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:76f1bed992e396bf6f83e3df97b64ff47885e45e8365f8983afed8556a0bc51f"},
{file = "tokenizers-0.15.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl", hash = "sha256:3bb0f4df6dce41a1c7482087b60d18c372ef4463cb99aa8195100fcd41e0fd64"},
{file = "tokenizers-0.15.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:22c27672c27a059a5f39ff4e49feed8c7f2e1525577c8a7e3978bd428eb5869d"},
{file = "tokenizers-0.15.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78104f5d035c9991f92831fc0efe9e64a05d4032194f2a69f67aaa05a4d75bbb"},
{file = "tokenizers-0.15.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a40b73dc19d82c3e3ffb40abdaacca8fbc95eeb26c66b7f9f860aebc07a73998"},
{file = "tokenizers-0.15.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d801d1368188c74552cd779b1286e67cb9fd96f4c57a9f9a2a09b6def9e1ab37"},
{file = "tokenizers-0.15.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:82641ffb13a4da1293fcc9f437d457647e60ed0385a9216cd135953778b3f0a1"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:160f9d1810f2c18fffa94aa98bf17632f6bd2dabc67fcb01a698ca80c37d52ee"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:8d7d6eea831ed435fdeeb9bcd26476226401d7309d115a710c65da4088841948"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f6456bec6c557d63d8ec0023758c32f589e1889ed03c055702e84ce275488bed"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1eef39a502fad3bf104b9e1906b4fb0cee20e44e755e51df9a98f8922c3bf6d4"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1e4664c5b797e093c19b794bbecc19d2367e782b4a577d8b7c1821db5dc150d"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:ca003fb5f3995ff5cf676db6681b8ea5d54d3b30bea36af1120e78ee1a4a4cdf"},
{file = "tokenizers-0.15.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:7f17363141eb0c53752c89e10650b85ef059a52765d0802ba9613dbd2d21d425"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:8a765db05581c7d7e1280170f2888cda351760d196cc059c37ea96f121125799"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:2a0dd641a72604486cd7302dd8f87a12c8a9b45e1755e47d2682733f097c1af5"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0a1a3c973e4dc97797fc19e9f11546c95278ffc55c4492acb742f69e035490bc"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4fab75642aae4e604e729d6f78e0addb9d7e7d49e28c8f4d16b24da278e5263"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65f80be77f6327a86d8fd35a4467adcfe6174c159b4ab52a1a8dd4c6f2d7d9e1"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:a8da7533dbe66b88afd430c56a2f2ce1fd82e2681868f857da38eeb3191d7498"},
{file = "tokenizers-0.15.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:fa8eb4584fc6cbe6a84d7a7864be3ed28e23e9fd2146aa8ef1814d579df91958"},
{file = "tokenizers-0.15.0.tar.gz", hash = "sha256:10c7e6e7b4cabd757da59e93f5f8d1126291d16f8b54f28510825ef56a3e5d0e"},
]
]
[package.dependencies]
huggingface_hub = ">=0.16.4,<1.0"
[package.extras]
[package.extras]
dev = ["
black (==22.3)", "datasets", "numpy", "pytest", "requests
"]
dev = ["
tokenizers[testing]
"]
docs = ["setuptools
-
rust", "sphinx", "sphinx
-
rtd
-
theme"]
docs = ["setuptools
_
rust", "sphinx", "sphinx
_
rtd
_
theme"]
testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests"]
testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests"]
[[package]]
[[package]]
...
@@ -2236,31 +2316,31 @@ files = [
...
@@ -2236,31 +2316,31 @@ files = [
[[package]]
[[package]]
name = "torch"
name = "torch"
version = "2.1.
1
"
version = "2.1.
2
"
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration"
optional = true
optional = true
python-versions = ">=3.8.0"
python-versions = ">=3.8.0"
files = [
files = [
{file = "torch-2.1.
1
-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:
5ebc43f5355a9b7be
8133
92b3fb01
339
9
1
f0380f6f0fcc8218d5468dc45d1071
"},
{file = "torch-2.1.
2
-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:
3a871edd6c02dae77ad
81
0
33
5c083
3391
c1a4ce49af21ea8cf0f6a5d2096eea8
"},
{file = "torch-2.1.
1
-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:
84fefd63356416c0cd20578637ccdbb82164993400ed17b57c951dd6376dcee8
"},
{file = "torch-2.1.
2
-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:
bef6996c27d8f6e92ea4e13a772d89611da0e103b48790de78131e308cf73076
"},
{file = "torch-2.1.
1
-cp310-cp310-win_amd64.whl", hash = "sha256:0
a7a9da0c324409bcb5a7bdad1b4e94e936d21c2590aaa7ac2f63968da8c62f7
"},
{file = "torch-2.1.
2
-cp310-cp310-win_amd64.whl", hash = "sha256:0
e13034fd5fb323cbbc29e56d0637a3791e50dd589616f40c79adfa36a5a35a1
"},
{file = "torch-2.1.
1
-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:
1e1e5faddd43a8f2c0e0e22beacd1e235a2e447794d807483c94a9e31b54a758
"},
{file = "torch-2.1.
2
-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:
d9b535cad0df3d13997dbe8bd68ac33e0e3ae5377639c9881948e40794a61403
"},
{file = "torch-2.1.
1
-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:
e76bf3c5c354874f1da465c852a2fb60ee6cbce306e935337885760f080f9baa
"},
{file = "torch-2.1.
2
-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:
f9a55d55af02826ebfbadf4e9b682f0f27766bc33df8236b48d28d705587868f
"},
{file = "torch-2.1.
1
-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:
98fea993639b0bb432dfceb7b538f07c0f1c33386d63f635219f49254968c80f
"},
{file = "torch-2.1.
2
-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:
a6ebbe517097ef289cc7952783588c72de071d4b15ce0f8b285093f0916b1162
"},
{file = "torch-2.1.
1
-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:
61b51b33c61737c287058b0c3061e6a9d3c363863e4a094f804bc486888a188a
"},
{file = "torch-2.1.
2
-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:
8f32ce591616a30304f37a7d5ea80b69ca9e1b94bba7f308184bf616fdaea155
"},
{file = "torch-2.1.
1
-cp311-cp311-win_amd64.whl", hash = "sha256:
1d70920da827e2276bf07f7ec469
58
6
21c
ad18d228c97da8f9c19638474dbd52
"},
{file = "torch-2.1.
2
-cp311-cp311-win_amd64.whl", hash = "sha256:
e0ee6cf90c8970e05760f898d58f9ac6
5821c
37ffe8b04269ec787aa70962b69
"},
{file = "torch-2.1.
1
-cp311-none-macosx_10_9_x86_64.whl", hash = "sha256:
a70593806f1d7e6b53657d96810518da0f88ef2608c98a402955765b8c79d52c
"},
{file = "torch-2.1.
2
-cp311-none-macosx_10_9_x86_64.whl", hash = "sha256:
76d37967c31c99548ad2c4d3f2cf191db48476f2e69b35a0937137116da356a1
"},
{file = "torch-2.1.
1
-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:e
312f7e82e49565f7667b0bbf9559ab0c597063d93044740781c02acd5a87978
"},
{file = "torch-2.1.
2
-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:e
2d83f07b4aac983453ea5bf8f9aa9dacf2278a8d31247f5d9037f37befc60e4
"},
{file = "torch-2.1.
1
-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:
1e3cbecfa5a7314d828f4a37b0c286714dc9aa2e69beb7a22f7aca76567ed9f4
"},
{file = "torch-2.1.
2
-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:
f41fe0c7ecbf903a568c73486139a75cfab287a0f6c17ed0698fdea7a1e8641d
"},
{file = "torch-2.1.
1
-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:
9ca0fcbf3d5ba644d6a8572c83a9abbdf5f7ff575bc38529ef6c185a3a71bde9
"},
{file = "torch-2.1.
2
-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:
e3225f47d50bb66f756fe9196a768055d1c26b02154eb1f770ce47a2578d3aa7
"},
{file = "torch-2.1.
1
-cp38-cp38-win_amd64.whl", hash = "sha256:
2dc9f312fc1fa0d61a565a0292ad73119d4b74c9f8b5031b55f8b4722abca079
"},
{file = "torch-2.1.
2
-cp38-cp38-win_amd64.whl", hash = "sha256:
33d59cd03cb60106857f6c26b36457793637512998666ee3ce17311f217afe2b
"},
{file = "torch-2.1.
1
-cp38-none-macosx_10_9_x86_64.whl", hash = "sha256:
d56b032176458e2af4709627bbd2c20fe2917eff8
cd
0
87a
7fe313acccf5ce2f1
"},
{file = "torch-2.1.
2
-cp38-none-macosx_10_9_x86_64.whl", hash = "sha256:
8e221deccd0def6c2badff6be403e0c53491805ed9915e2c029adb
cd
b
87a
b6b5
"},
{file = "torch-2.1.
1
-cp38-none-macosx_11_0_arm64.whl", hash = "sha256:
29e3b90a8c281f6660804a939d1f4218604c80162e521e1e6d8c8557325902a0
"},
{file = "torch-2.1.
2
-cp38-none-macosx_11_0_arm64.whl", hash = "sha256:
05b18594f60a911a0c4f023f38a8bda77131fba5fd741bda626e97dcf5a3dd0a
"},
{file = "torch-2.1.
1
-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:
bd95cee8511584b67ddc0ba465c3f1edeb5708d833ee02af1206b4486f1d909
6"},
{file = "torch-2.1.
2
-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:
9ca96253b761e9aaf8e06fb30a66ee301aecbf15bb5a303097de1969077620b
6"},
{file = "torch-2.1.
1
-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:
b31230bd058424e56dba7f899280dbc6ac8b9948e43902e0c84a44666b1ec151
"},
{file = "torch-2.1.
2
-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:
d93ba70f67b08c2ae5598ee711cbc546a1bc8102cef938904b8c85c2089a51a0
"},
{file = "torch-2.1.
1
-cp39-cp39-win_amd64.whl", hash = "sha256:
403f1095e665e4f35971b43797a920725b8b205723aa68254a4050c6beca29b6
"},
{file = "torch-2.1.
2
-cp39-cp39-win_amd64.whl", hash = "sha256:
255b50bc0608db177e6a3cc118961d77de7e5105f07816585fa6f191f33a9ff3
"},
{file = "torch-2.1.
1
-cp39-none-macosx_10_9_x86_64.whl", hash = "sha256:
715b50d8c1de5da5524a68287eb000f73e026e74d5f6b12bc450ef6995fcf5f9
"},
{file = "torch-2.1.
2
-cp39-none-macosx_10_9_x86_64.whl", hash = "sha256:
6984cd5057c0c977b3c9757254e989d3f1124f4ce9d07caa6cb637783c71d42a
"},
{file = "torch-2.1.
1
-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:
db67e8725c76f4c7f4f02e7551bb16e81ba1a1912867bc35d7bb96d2be8c78b4
"},
{file = "torch-2.1.
2
-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:
bc195d7927feabc0eb7c110e457c955ed2ab616f3c7c28439dd4188cf589699f
"},
]
]
[package.dependencies]
[package.dependencies]
...
@@ -2309,53 +2389,52 @@ telegram = ["requests"]
...
@@ -2309,53 +2389,52 @@ telegram = ["requests"]
[[package]]
[[package]]
name = "transformers"
name = "transformers"
version = "4.3
3.3
"
version = "4.3
6.1
"
description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
optional = false
optional = false
python-versions = ">=3.8.0"
python-versions = ">=3.8.0"
files = [
files = [
{file = "transformers-4.3
3.3
-py3-none-any.whl", hash = "sha256:
7150bbf6781ddb3338ce7d74f4d6f557e6c236a0a1dd3de57412214caae7fd71
"},
{file = "transformers-4.3
6.1
-py3-none-any.whl", hash = "sha256:
0e309d03634885f02d46801ec4f2c3fc1d614a5b9ebde608181f3e842bac53b8
"},
{file = "transformers-4.3
3.3
.tar.gz", hash = "sha256:8e
a7c92310dee7c63b14766ce928218f7a9177960b2487ac018c91ae621af03e
"},
{file = "transformers-4.3
6.1
.tar.gz", hash = "sha256:
2
8e
55952d9bed68f06cf45a3d29cc480679b528afe944e68f8cf6c799e428759
"},
]
]
[package.dependencies]
[package.dependencies]
filelock = "*"
filelock = "*"
huggingface-hub = ">=0.1
5.1
,<1.0"
huggingface-hub = ">=0.1
9.3
,<1.0"
numpy = ">=1.17"
numpy = ">=1.17"
packaging = ">=20.0"
packaging = ">=20.0"
pyyaml = ">=5.1"
pyyaml = ">=5.1"
regex = "!=2019.12.17"
regex = "!=2019.12.17"
requests = "*"
requests = "*"
safetensors = ">=0.3.1"
safetensors = ">=0.3.1"
tokenizers = ">=0.1
1.1
,<0.1
1.3 || >0.11.3,<0.14
"
tokenizers = ">=0.1
4
,<0.1
9
"
tqdm = ">=4.27"
tqdm = ">=4.27"
[package.extras]
[package.extras]
accelerate = ["accelerate (>=0.2
0.3
)"]
accelerate = ["accelerate (>=0.2
1.0
)"]
agents = ["Pillow (
<
10.0.0)", "accelerate (>=0.2
0.3
)", "datasets (!=2.5.0)", "diffusers", "opencv-python", "sentencepiece (>=0.1.91,!=0.1.92)", "torch (>=1.10,!=1.12.0)"]
agents = ["Pillow (
>=
10.0.
1,<=15.
0)", "accelerate (>=0.2
1.0
)", "datasets (!=2.5.0)", "diffusers", "opencv-python", "sentencepiece (>=0.1.91,!=0.1.92)", "torch (>=1.10,!=1.12.0)"]
all = ["Pillow (
<
10.0.0)", "accelerate (>=0.2
0.3
)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune]", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>=2.6,<2.1
5
)", "tensorflow-text (<2.1
5
)", "tf2onnx", "timm", "tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision"]
all = ["Pillow (
>=
10.0.
1,<=15.
0)", "accelerate (>=0.2
1.0
)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune]
(>=2.7.0)
", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>=2.6,<2.1
6
)", "tensorflow-text (<2.1
6
)", "tf2onnx", "timm", "tokenizers (>=0.1
4
,<0.1
9
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision"]
audio = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
audio = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
codecarbon = ["codecarbon (==1.2.0)"]
codecarbon = ["codecarbon (==1.2.0)"]
deepspeed = ["accelerate (>=0.2
0.3
)", "deepspeed (>=0.9.3)"]
deepspeed = ["accelerate (>=0.2
1.0
)", "deepspeed (>=0.9.3)"]
deepspeed-testing = ["GitPython (<3.1.19)", "accelerate (>=0.2
0.3
)", "beautifulsoup4",
"black (>=23.1,<24.0)",
"cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "deepspeed (>=0.9.3)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder (>=0.3.0)", "nltk", "optuna", "parameterized", "protobuf", "psutil", "pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "timeout-decorator"]
deepspeed-testing = ["GitPython (<3.1.19)", "accelerate (>=0.2
1.0
)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "deepspeed (>=0.9.3)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder (>=0.3.0)", "nltk", "optuna", "parameterized", "protobuf", "psutil",
"pydantic (<2)",
"pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)",
"ruff (==0.1.5)",
"sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)",
"tensorboard",
"timeout-decorator"]
dev = ["GitPython (<3.1.19)", "Pillow (
<
10.0.0)", "accelerate (>=0.2
0.3
)", "av (==9.2.0)", "beautifulsoup4",
"black (>=23.1,<24.0)",
"codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "decord (==0.6.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "ray[tune]", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (
>=0.0.241,<=0.0.259
)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorflow (>=2.6,<2.1
5
)", "tensorflow-text (<2.1
5
)", "tf2onnx", "timeout-decorator", "timm", "tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
dev = ["GitPython (<3.1.19)", "Pillow (
>=
10.0.
1,<=15.
0)", "accelerate (>=0.2
1.0
)", "av (==9.2.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "decord (==0.6.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)",
"pydantic (<2)",
"pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "ray[tune]
(>=2.7.0)
", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (
==0.1.5
)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)",
"tensorboard",
"tensorflow (>=2.6,<2.1
6
)", "tensorflow-text (<2.1
6
)", "tf2onnx", "timeout-decorator", "timm", "tokenizers (>=0.1
4
,<0.1
9
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (
<
10.0.0)", "beautifulsoup4",
"black (>=23.1,<24.0)",
"cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (
>=0.0.241,<=0.0.259
)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorflow (>=2.6,<2.1
5
)", "tensorflow-text (<2.1
5
)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)", "urllib3 (<2.0.0)"]
dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (
>=
10.0.
1,<=15.
0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)",
"pydantic (<2)",
"pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (
==0.1.5
)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)",
"tensorboard",
"tensorflow (>=2.6,<2.1
6
)", "tensorflow-text (<2.1
6
)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.1
4
,<0.1
9
)", "urllib3 (<2.0.0)"]
dev-torch = ["GitPython (<3.1.19)", "Pillow (
<
10.0.0)", "accelerate (>=0.2
0.3
)", "beautifulsoup4",
"black (>=23.1,<24.0)",
"codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "librosa", "nltk", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "ray[tune]", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (
>=0.0.241,<=0.0.259
)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "timeout-decorator", "timm", "tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
dev-torch = ["GitPython (<3.1.19)", "Pillow (
>=
10.0.
1,<=15.
0)", "accelerate (>=0.2
1.0
)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "librosa", "nltk", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)",
"pydantic (<2)",
"pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "ray[tune]
(>=2.7.0)
", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (
==0.1.5
)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)",
"tensorboard",
"timeout-decorator", "timm", "tokenizers (>=0.1
4
,<0.1
9
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
docs = ["Pillow (
<
10.0.0)", "accelerate (>=0.2
0.3
)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "hf-doc-builder", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune]", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>=2.6,<2.1
5
)", "tensorflow-text (<2.1
5
)", "tf2onnx", "timm", "tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision"]
docs = ["Pillow (
>=
10.0.
1,<=15.
0)", "accelerate (>=0.2
1.0
)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "hf-doc-builder", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune]
(>=2.7.0)
", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>=2.6,<2.1
6
)", "tensorflow-text (<2.1
6
)", "tf2onnx", "timm", "tokenizers (>=0.1
4
,<0.1
9
)", "torch (>=1.10,!=1.12.0)", "torchaudio", "torchvision"]
docs-specific = ["hf-doc-builder"]
docs-specific = ["hf-doc-builder"]
fairscale = ["fairscale (>0.3)"]
flax = ["flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "optax (>=0.0.8,<=0.1.4)"]
flax = ["flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "optax (>=0.0.8,<=0.1.4)"]
flax-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
flax-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
ftfy = ["ftfy"]
ftfy = ["ftfy"]
integrations = ["optuna", "ray[tune]", "sigopt"]
integrations = ["optuna", "ray[tune]
(>=2.7.0)
", "sigopt"]
ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "rhoknp (>=1.1.0,<1.3.1)", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)"]
ja = ["fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "rhoknp (>=1.1.0,<1.3.1)", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)"]
modelcreation = ["cookiecutter (==1.7.3)"]
modelcreation = ["cookiecutter (==1.7.3)"]
natten = ["natten (>=0.14.6)"]
natten = ["natten (>=0.14.6)"]
onnx = ["onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "tf2onnx"]
onnx = ["onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "tf2onnx"]
onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
optuna = ["optuna"]
optuna = ["optuna"]
quality = ["GitPython (<3.1.19)",
"black (>=23.1,<24.0)",
"datasets (!=2.5.0)", "hf-doc-builder (>=0.3.0)", "isort (>=5.5.4)", "ruff (
>=0.0.241,<=0.0.259
)", "urllib3 (<2.0.0)"]
quality = ["GitPython (<3.1.19)", "datasets (!=2.5.0)", "hf-doc-builder (>=0.3.0)", "isort (>=5.5.4)", "ruff (
==0.1.5
)", "urllib3 (<2.0.0)"]
ray = ["ray[tune]"]
ray = ["ray[tune]
(>=2.7.0)
"]
retrieval = ["datasets (!=2.5.0)", "faiss-cpu"]
retrieval = ["datasets (!=2.5.0)", "faiss-cpu"]
sagemaker = ["sagemaker (>=2.31.0)"]
sagemaker = ["sagemaker (>=2.31.0)"]
sentencepiece = ["protobuf", "sentencepiece (>=0.1.91,!=0.1.92)"]
sentencepiece = ["protobuf", "sentencepiece (>=0.1.91,!=0.1.92)"]
...
@@ -2363,18 +2442,18 @@ serving = ["fastapi", "pydantic (<2)", "starlette", "uvicorn"]
...
@@ -2363,18 +2442,18 @@ serving = ["fastapi", "pydantic (<2)", "starlette", "uvicorn"]
sigopt = ["sigopt"]
sigopt = ["sigopt"]
sklearn = ["scikit-learn"]
sklearn = ["scikit-learn"]
speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
testing = ["GitPython (<3.1.19)", "beautifulsoup4",
"black (>=23.1,<24.0)",
"cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder (>=0.3.0)", "nltk", "parameterized", "protobuf", "psutil", "pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "timeout-decorator"]
testing = ["GitPython (<3.1.19)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder (>=0.3.0)", "nltk", "parameterized", "protobuf", "psutil",
"pydantic (<2)",
"pytest (>=7.2.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)",
"ruff (==0.1.5)",
"sacrebleu (>=1.4.12,<2.0.0)", "sacremoses",
"tensorboard",
"timeout-decorator"]
tf = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow (>=2.6,<2.1
5
)", "tensorflow-text (<2.1
5
)", "tf2onnx"]
tf = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow (>=2.6,<2.1
6
)", "tensorflow-text (<2.1
6
)", "tf2onnx"]
tf-cpu = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow-cpu (>=2.6,<2.1
5
)", "tensorflow-text (<2.1
5
)", "tf2onnx"]
tf-cpu = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow-cpu (>=2.6,<2.1
6
)", "tensorflow-text (<2.1
6
)", "tf2onnx"]
tf-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
tf-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
timm = ["timm"]
timm = ["timm"]
tokenizers = ["tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)"]
tokenizers = ["tokenizers (>=0.1
4
,<0.1
9
)"]
torch = ["accelerate (>=0.2
0.3
)", "torch (>=1.10,!=1.12.0)"]
torch = ["accelerate (>=0.2
1.0
)", "torch (>=1.10,!=1.12.0)"]
torch-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
torch-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
torch-vision = ["Pillow (
<
10.0.0)", "torchvision"]
torch-vision = ["Pillow (
>=
10.0.
1,<=15.
0)", "torchvision"]
torchhub = ["filelock", "huggingface-hub (>=0.1
5.1
,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.1
1.1,!=0.11.3
,<0.1
4
)", "torch (>=1.10,!=1.12.0)", "tqdm (>=4.27)"]
torchhub = ["filelock", "huggingface-hub (>=0.1
9.3
,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.1
4
,<0.1
9
)", "torch (>=1.10,!=1.12.0)", "tqdm (>=4.27)"]
video = ["av (==9.2.0)", "decord (==0.6.0)"]
video = ["av (==9.2.0)", "decord (==0.6.0)"]
vision = ["Pillow (
<
10.0.0)"]
vision = ["Pillow (
>=
10.0.
1,<=15.
0)"]
[[package]]
[[package]]
name = "triton"
name = "triton"
...
@@ -2423,13 +2502,13 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=5.2,<6.0)", "isort (>=5.0.6,<6.
...
@@ -2423,13 +2502,13 @@ test = ["black (>=22.3.0,<23.0.0)", "coverage (>=5.2,<6.0)", "isort (>=5.0.6,<6.
[[package]]
[[package]]
name = "typing-extensions"
name = "typing-extensions"
version = "4.
8
.0"
version = "4.
9
.0"
description = "Backported and Experimental Type Hints for Python 3.8+"
description = "Backported and Experimental Type Hints for Python 3.8+"
optional = false
optional = false
python-versions = ">=3.8"
python-versions = ">=3.8"
files = [
files = [
{file = "typing_extensions-4.
8
.0-py3-none-any.whl", hash = "sha256:
8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0
"},
{file = "typing_extensions-4.
9
.0-py3-none-any.whl", hash = "sha256:
af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd
"},
{file = "typing_extensions-4.
8
.0.tar.gz", hash = "sha256:
df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef
"},
{file = "typing_extensions-4.
9
.0.tar.gz", hash = "sha256:
23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783
"},
]
]
[[package]]
[[package]]
...
@@ -2671,101 +2750,101 @@ files = [
...
@@ -2671,101 +2750,101 @@ files = [
[[package]]
[[package]]
name = "yarl"
name = "yarl"
version = "1.9.
3
"
version = "1.9.
4
"
description = "Yet another URL library"
description = "Yet another URL library"
optional = true
optional = true
python-versions = ">=3.7"
python-versions = ">=3.7"
files = [
files = [
{file = "yarl-1.9.
3
-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:
32435d134414e01d937cd9d6cc56e8413a8d4741dea36af5840c7750f04d16ab
"},
{file = "yarl-1.9.
4
-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:
a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e
"},
{file = "yarl-1.9.
3
-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
9a5211de242754b5e612557bca701f39f8b1a9408dff73c6db623f22d20f470e
"},
{file = "yarl-1.9.
4
-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:
a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2
"},
{file = "yarl-1.9.
3
-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
525cd69eff44833b01f8ef39aa33a9cc53a99ff7f9d76a6ef6a9fb758f54d0ff
"},
{file = "yarl-1.9.
4
-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:
c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66
"},
{file = "yarl-1.9.
3
-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
fc94441bcf9cb8c59f51f23193316afefbf3ff858460cb47b5758bf66a14d130
"},
{file = "yarl-1.9.
4
-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234
"},
{file = "yarl-1.9.
3
-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
e36021db54b8a0475805acc1d6c4bca5d9f52c3825ad29ae2d398a9d530ddb88
"},
{file = "yarl-1.9.
4
-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392
"},
{file = "yarl-1.9.
3
-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
e0f17d1df951336a02afc8270c03c0c6e60d1f9996fcbd43a4ce6be81de0bd9d
"},
{file = "yarl-1.9.
4
-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551
"},
{file = "yarl-1.9.
3
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
c5f3faeb8100a43adf3e7925d556801d14b5816a0ac9e75e22948e787feec642
"},
{file = "yarl-1.9.
4
-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455
"},
{file = "yarl-1.9.
3
-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
aed37db837ecb5962469fad448aaae0f0ee94ffce2062cf2eb9aed13328b5196
"},
{file = "yarl-1.9.
4
-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c
"},
{file = "yarl-1.9.
3
-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:
721ee3fc292f0d069a04016ef2c3a25595d48c5b8ddc6029be46f6158d129c92
"},
{file = "yarl-1.9.
4
-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:
801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53
"},
{file = "yarl-1.9.
3
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:
b8bc5b87a65a4e64bc83385c05145ea901b613d0d3a434d434b55511b6ab0067
"},
{file = "yarl-1.9.
4
-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:
e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385
"},
{file = "yarl-1.9.
3
-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:
dd952b9c64f3b21aedd09b8fe958e4931864dba69926d8a90c90d36ac4e28c9a
"},
{file = "yarl-1.9.
4
-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:
7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863
"},
{file = "yarl-1.9.
3
-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:
c405d482c320a88ab53dcbd98d6d6f32ada074f2d965d6e9bf2d823158fa97de
"},
{file = "yarl-1.9.
4
-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:
54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b
"},
{file = "yarl-1.9.
3
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
9df9a0d4c5624790a0dea2e02e3b1b3c69aed14bcb8650e19606d9df3719e87d
"},
{file = "yarl-1.9.
4
-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:
bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541
"},
{file = "yarl-1.9.
3
-cp310-cp310-win32.whl", hash = "sha256:
d34c4f80956227f2686ddea5b3585e109c2733e2d4ef12eb1b8b4e84f09a2ab6
"},
{file = "yarl-1.9.
4
-cp310-cp310-win32.whl", hash = "sha256:
7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d
"},
{file = "yarl-1.9.
3
-cp310-cp310-win_amd64.whl", hash = "sha256:
cf7a4e8de7f1092829caef66fd90eaf3710bc5efd322a816d5677b7664893c93
"},
{file = "yarl-1.9.
4
-cp310-cp310-win_amd64.whl", hash = "sha256:
848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b
"},
{file = "yarl-1.9.
3
-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:
d61a0ca95503867d4d627517bcfdc28a8468c3f1b0b06c626f30dd759d3999fd
"},
{file = "yarl-1.9.
4
-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:
35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099
"},
{file = "yarl-1.9.
3
-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
73cc83f918b69110813a7d95024266072d987b903a623ecae673d1e71579d566
"},
{file = "yarl-1.9.
4
-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:
4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c
"},
{file = "yarl-1.9.
3
-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8
1657b23e0edb84b37167e98aefb04ae16cbc5352770057893bd222cdc6e45f
"},
{file = "yarl-1.9.
4
-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8
a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0
"},
{file = "yarl-1.9.
3
-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
26a1a8443091c7fbc17b84a0d9f38de34b8423b459fb853e6c8cdfab0eacf613
"},
{file = "yarl-1.9.
4
-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525
"},
{file = "yarl-1.9.
3
-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
fe34befb8c765b8ce562f0200afda3578f8abb159c76de3ab354c80b72244c41
"},
{file = "yarl-1.9.
4
-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8
"},
{file = "yarl-1.9.
3
-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
2c757f64afe53a422e45e3e399e1e3cf82b7a2f244796ce80d8ca53e16a49b9f
"},
{file = "yarl-1.9.
4
-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9
"},
{file = "yarl-1.9.
3
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
72a57b41a0920b9a220125081c1e191b88a4cdec13bf9d0649e382a822705c65
"},
{file = "yarl-1.9.
4
-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42
"},
{file = "yarl-1.9.
3
-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
632c7aeb99df718765adf58eacb9acb9cbc555e075da849c1378ef4d18bf536a
"},
{file = "yarl-1.9.
4
-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe
"},
{file = "yarl-1.9.
3
-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:
b0b8c06afcf2bac5a50b37f64efbde978b7f9dc88842ce9729c020dc71fae4
ce"},
{file = "yarl-1.9.
4
-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:
03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ec
ce"},
{file = "yarl-1.9.
3
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
1d93461e2cf76c4796355494f15ffcb50a3c198cc2d601ad8d6a96219a10c363
"},
{file = "yarl-1.9.
4
-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:
4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9
"},
{file = "yarl-1.9.
3
-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:
4003f380dac50328c85e85416aca6985536812c082387255c35292cb4b41707e
"},
{file = "yarl-1.9.
4
-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:
c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572
"},
{file = "yarl-1.9.
3
-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:
4d6d74a97e898c1c2df80339aa423234ad9ea2052f66366cef1e80448798c13d
"},
{file = "yarl-1.9.
4
-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:
ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958
"},
{file = "yarl-1.9.
3
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
b61e64b06c3640feab73fa4ff9cb64bd8182de52e5dc13038e01cfe674ebc321
"},
{file = "yarl-1.9.
4
-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:
49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98
"},
{file = "yarl-1.9.
3
-cp311-cp311-win32.whl", hash = "sha256:
29beac86f33d6c7ab1d79bd0213aa7aed2d2f555386856bb3056d5fdd9dab279
"},
{file = "yarl-1.9.
4
-cp311-cp311-win32.whl", hash = "sha256:
81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31
"},
{file = "yarl-1.9.
3
-cp311-cp311-win_amd64.whl", hash = "sha256:
f7271d6bd8838c49ba8ae647fc06469137e1c161a7ef97d778b72904d9b68696
"},
{file = "yarl-1.9.
4
-cp311-cp311-win_amd64.whl", hash = "sha256:
d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1
"},
{file = "yarl-1.9.
3
-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:
dd318e6b75ca80bff0b22b302f83a8ee41c62b8ac662ddb49f
67ec
97e799885d
"},
{file = "yarl-1.9.
4
-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:
0d2454f0aef65ea81037759be5ca99475396
67e
e
c
ebca092733b2eb43c965a81
"},
{file = "yarl-1.9.
3
-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:
c4b1efb11a8acd13246ffb0bee888dd0e8eb057f8bf30112e3e21e421eb82d4a
"},
{file = "yarl-1.9.
4
-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:
44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142
"},
{file = "yarl-1.9.
3
-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:
c6f034386e5550b5dc8ded90b5e2ff7db21f0f5c7de37b6efc5dac046eb19c10
"},
{file = "yarl-1.9.
4
-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:
aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074
"},
{file = "yarl-1.9.
3
-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
cd49a908cb6d387fc26acee8b7d9fcc9bbf8e1aca890c0b2fdfd706057546080
"},
{file = "yarl-1.9.
4
-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129
"},
{file = "yarl-1.9.
3
-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
aa4643635f26052401750bd54db911b6342eb1a9ac3e74f0f8b58a25d61dfe41
"},
{file = "yarl-1.9.
4
-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2
"},
{file = "yarl-1.9.
3
-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e
741bd48e6a417bdfbae02e088f60018286d6c141639359fb8df017a3b69415a
"},
{file = "yarl-1.9.
4
-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e
a65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78
"},
{file = "yarl-1.9.
3
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
7c86d0d0919952d05df880a1889a4f0aeb6868e98961c090e335671dea5c0361
"},
{file = "yarl-1.9.
4
-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4
"},
{file = "yarl-1.9.
3
-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
3d5434b34100b504aabae75f0622ebb85defffe7b64ad8f52b8b30ec6ef6e4b9
"},
{file = "yarl-1.9.
4
-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0
"},
{file = "yarl-1.9.
3
-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:
79e1df60f7c2b148722fb6cafebffe1acd95fd8b5fd77795f56247edaf326752
"},
{file = "yarl-1.9.
4
-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:
008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51
"},
{file = "yarl-1.9.
3
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
44e91a669c43f03964f672c5a234ae0d7a4d49c9b85d1baa93dec28afa28ffbd
"},
{file = "yarl-1.9.
4
-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:
6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff
"},
{file = "yarl-1.9.
3
-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:
3cfa4dbe17b2e6fca1414e9c3bcc216f6930cb18ea7646e7d0d52792ac196808
"},
{file = "yarl-1.9.
4
-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:
992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7
"},
{file = "yarl-1.9.
3
-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:
88d2c3cc4b2f46d1ba73d81c51ec0e486f59cc51165ea4f789677f91a303a9a7
"},
{file = "yarl-1.9.
4
-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:
0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc
"},
{file = "yarl-1.9.
3
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
cccdc02e46d2bd7cb5f38f8cc3d9db0d24951abd082b2f242c9e9f59c0ab2af3
"},
{file = "yarl-1.9.
4
-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:
3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10
"},
{file = "yarl-1.9.
3
-cp312-cp312-win32.whl", hash = "sha256:
96758e56dceb8a70f8a5cff1e452daaeff07d1cc9f11e9b0c951330f0a2396a
7"},
{file = "yarl-1.9.
4
-cp312-cp312-win32.whl", hash = "sha256:
4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee
7"},
{file = "yarl-1.9.
3
-cp312-cp312-win_amd64.whl", hash = "sha256:
c4472fe53ebf541113e533971bd8c32728debc4c6d8cc177f2bff31d011ec17e
"},
{file = "yarl-1.9.
4
-cp312-cp312-win_amd64.whl", hash = "sha256:
a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984
"},
{file = "yarl-1.9.
3
-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:
126638ab961633f0940a06e1c9d59919003ef212a15869708dcb7305f91a6732
"},
{file = "yarl-1.9.
4
-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:
63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f
"},
{file = "yarl-1.9.
3
-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
c99ddaddb2fbe04953b84d1651149a0d85214780e4d0ee824e610ab549d98d92
"},
{file = "yarl-1.9.
4
-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17
"},
{file = "yarl-1.9.
3
-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
8dab30b21bd6fb17c3f4684868c7e6a9e8468078db00f599fb1c14e324b10fca
"},
{file = "yarl-1.9.
4
-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14
"},
{file = "yarl-1.9.
3
-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
828235a2a169160ee73a2fcfb8a000709edf09d7511fccf203465c3d5acc59e4
"},
{file = "yarl-1.9.
4
-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5
"},
{file = "yarl-1.9.
3
-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
fc391e3941045fd0987c77484b2799adffd08e4b6735c4ee5f054366a2e1551
d"},
{file = "yarl-1.9.
4
-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccd
d"},
{file = "yarl-1.9.
3
-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
51382c72dd5377861b573bd55dcf680df54cea84147c8648b15ac507fbef984d
"},
{file = "yarl-1.9.
4
-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7
"},
{file = "yarl-1.9.
3
-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:
28a108cb92ce6cf867690a962372996ca332d8cda0210c5ad487fe996e76b8bb
"},
{file = "yarl-1.9.
4
-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:
d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e
"},
{file = "yarl-1.9.
3
-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:
8f18a7832ff85dfcd77871fe677b169b1bc60c021978c90c3bb14f727596e0ae
"},
{file = "yarl-1.9.
4
-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:
f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec
"},
{file = "yarl-1.9.
3
-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:
7eaf13af79950142ab2bbb8362f8d8d935be9aaf8df1df89c86c3231e4ff238a
"},
{file = "yarl-1.9.
4
-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:
957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c
"},
{file = "yarl-1.9.
3
-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:
66a6dbf6ca7d2db03cc61cafe1ee6be838ce0fbc97781881a22a58a7c5efef42
"},
{file = "yarl-1.9.
4
-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:
d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead
"},
{file = "yarl-1.9.
3
-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:
1a0a4f3aaa18580038cfa52a7183c8ffbbe7d727fe581300817efc1e96d1b0e9
"},
{file = "yarl-1.9.
4
-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:
6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434
"},
{file = "yarl-1.9.
3
-cp37-cp37m-win32.whl", hash = "sha256:
946db4511b2d815979d733ac6a961f47e20a29c297be0d55b6d4b77ee4b298f6
"},
{file = "yarl-1.9.
4
-cp37-cp37m-win32.whl", hash = "sha256:
f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749
"},
{file = "yarl-1.9.
3
-cp37-cp37m-win_amd64.whl", hash = "sha256:
2dad8166d41ebd1f76ce107cf6a31e39801aee3844a54a90af23278b072f1ccf
"},
{file = "yarl-1.9.
4
-cp37-cp37m-win_amd64.whl", hash = "sha256:
ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2
"},
{file = "yarl-1.9.
3
-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:
bb72d2a94481e7dc7a0c522673db288f31849800d6ce2435317376a345728225
"},
{file = "yarl-1.9.
4
-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:
ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be
"},
{file = "yarl-1.9.
3
-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:
9a172c3d5447b7da1680a1a2d6ecdf6f87a319d21d52729f45ec938a7006d5d8
"},
{file = "yarl-1.9.
4
-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:
8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f
"},
{file = "yarl-1.9.
3
-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:
2dc72e891672343b99db6d497024bf8b985537ad6c393359dc5227ef653b2f17
"},
{file = "yarl-1.9.
4
-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:
bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf
"},
{file = "yarl-1.9.
3
-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
b8d51817cf4b8d545963ec65ff06c1b92e5765aa98831678d0e2240b6e9fd28
1"},
{file = "yarl-1.9.
4
-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f
1"},
{file = "yarl-1.9.
3
-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
53ec65f7eee8655bebb1f6f1607760d123c3c115a324b443df4f916383482a6
7"},
{file = "yarl-1.9.
4
-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:
84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d5
7"},
{file = "yarl-1.9.
3
-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
cfd77e8e5cafba3fb584e0f4b935a59216f352b73d4987be3af51f43a862c403
"},
{file = "yarl-1.9.
4
-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa
"},
{file = "yarl-1.9.
3
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
e73db54c967eb75037c178a54445c5a4e7461b5203b27c45ef656a81787c0c1b
"},
{file = "yarl-1.9.
4
-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130
"},
{file = "yarl-1.9.
3
-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0
9c19e5f4404574fcfb736efecf75844ffe8610606f3fccc35a1515b8b6712c4
"},
{file = "yarl-1.9.
4
-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0
7574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559
"},
{file = "yarl-1.9.
3
-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:
6280353940f7e5e2efaaabd686193e61351e966cc02f401761c4d87f48c89ea4
"},
{file = "yarl-1.9.
4
-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:
5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23
"},
{file = "yarl-1.9.
3
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
c25ec06e4241e162f5d1f57c370f4078797ade95c9208bd0c60f484834f09c96
"},
{file = "yarl-1.9.
4
-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:
6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec
"},
{file = "yarl-1.9.
3
-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:
7217234b10c64b52cc39a8d82550342ae2e45be34f5bff02b890b8c452eb48d7
"},
{file = "yarl-1.9.
4
-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:
6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78
"},
{file = "yarl-1.9.
3
-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:
4ce77d289f8d40905c054b63f29851ecbfd026ef4ba5c371a158cfe6f623663
e"},
{file = "yarl-1.9.
4
-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:
a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1b
e"},
{file = "yarl-1.9.
3
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
5f74b015c99a5eac5ae589de27a1201418a5d9d460e89ccb3366015c6153e60a
"},
{file = "yarl-1.9.
4
-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:
8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3
"},
{file = "yarl-1.9.
3
-cp38-cp38-win32.whl", hash = "sha256:
8a2538806be846ea25e90c28786136932ec385c7ff3bc1148e45125984783dc6
"},
{file = "yarl-1.9.
4
-cp38-cp38-win32.whl", hash = "sha256:
686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece
"},
{file = "yarl-1.9.
3
-cp38-cp38-win_amd64.whl", hash = "sha256:
6465d36381af057d0fab4e0f24ef0e80ba61f03fe43e6eeccbe0056e74aadc70
"},
{file = "yarl-1.9.
4
-cp38-cp38-win_amd64.whl", hash = "sha256:
a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b
"},
{file = "yarl-1.9.
3
-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:
2f3c8822bc8fb4a347a192dd6a28a25d7f0ea3262e826d7d4ef9cc99cd06d07e
"},
{file = "yarl-1.9.
4
-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:
604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27
"},
{file = "yarl-1.9.
3
-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
b7831566595fe88ba17ea80e4b61c0eb599f84c85acaa14bf04dd90319a45b90
"},
{file = "yarl-1.9.
4
-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:
8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1
"},
{file = "yarl-1.9.
3
-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
ff34cb09a332832d1cf38acd0f604c068665192c6107a439a92abfd8acf90fe2
"},
{file = "yarl-1.9.
4
-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:
ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91
"},
{file = "yarl-1.9.
3
-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
fe8080b4f25dfc44a86bedd14bc4f9d469dfc6456e6f3c5d9077e81a5fedfba7
"},
{file = "yarl-1.9.
4
-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:
a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b
"},
{file = "yarl-1.9.
3
-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8
535e111a064f3bdd94c0ed443105934d6f005adad68dd13ce50a488a0ad1bf3
"},
{file = "yarl-1.9.
4
-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8
397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5
"},
{file = "yarl-1.9.
3
-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
0d155a092bf0ebf4a9f6f3b7a650dc5d9a5bbb585ef83a52ed36ba46f55cc39d
"},
{file = "yarl-1.9.
4
-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:
e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34
"},
{file = "yarl-1.9.
3
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
778df71c8d0c8c9f1b378624b26431ca80041660d7be7c3f724b2c7a6e65d0d
6"},
{file = "yarl-1.9.
4
-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:
23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b14737013
6"},
{file = "yarl-1.9.
3
-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
b9f9cafaf031c34d95c1528c16b2fa07b710e6056b3c4e2e34e9317072da5d1a
"},
{file = "yarl-1.9.
4
-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:
ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7
"},
{file = "yarl-1.9.
3
-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:
ca6b66f69e30f6e180d52f14d91ac854b8119553b524e0e28d5291a724f0f423
"},
{file = "yarl-1.9.
4
-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:
26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e
"},
{file = "yarl-1.9.
3
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
e0e7e83f31e23c5d00ff618045ddc5e916f9e613d33c5a5823bc0b0a0feb522f
"},
{file = "yarl-1.9.
4
-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:
18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4
"},
{file = "yarl-1.9.
3
-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:
af52725c7c39b0ee655befbbab5b9a1b209e01bb39128dce0db226a10014aac
c"},
{file = "yarl-1.9.
4
-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:
29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561e
c"},
{file = "yarl-1.9.
3
-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:
0ab5baaea8450f4a3e241ef17e3d129b2143e38a685036b075976b9c415ea3eb
"},
{file = "yarl-1.9.
4
-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:
1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c
"},
{file = "yarl-1.9.
3
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
6d350388ba1129bc867c6af1cd17da2b197dff0d2801036d2d7d83c2d771a682
"},
{file = "yarl-1.9.
4
-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:
db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0
"},
{file = "yarl-1.9.
3
-cp39-cp39-win32.whl", hash = "sha256:
e2a16ef5fa2382af83bef4a18c1b3bcb4284c4732906aa69422cf09df9c59f1f
"},
{file = "yarl-1.9.
4
-cp39-cp39-win32.whl", hash = "sha256:
c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575
"},
{file = "yarl-1.9.
3
-cp39-cp39-win_amd64.whl", hash = "sha256:
d92d897cb4b4bf915fbeb5e604c7911021a8456f0964f3b8ebbe7f9188b9eabb
"},
{file = "yarl-1.9.
4
-cp39-cp39-win_amd64.whl", hash = "sha256:
824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15
"},
{file = "yarl-1.9.
3
-py3-none-any.whl", hash = "sha256:
271d63396
46
0
b6
607b588555ea27a1a02b717ca2e3f2cf53bdde4013d7790929
"},
{file = "yarl-1.9.
4
-py3-none-any.whl", hash = "sha256:
928cecb0ef9d5a79
46
e
b6
ff58417ad2fe9375762382f1bf5c55e61645f2c43ad
"},
{file = "yarl-1.9.
3
.tar.gz", hash = "sha256:
4a14907b597ec55740f63e52d7fee0e9ee09d5b9d57a4f399a7423268e457b57
"},
{file = "yarl-1.9.
4
.tar.gz", hash = "sha256:
566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf
"},
]
]
[package.dependencies]
[package.dependencies]
...
@@ -2782,4 +2861,4 @@ torch = ["torch"]
...
@@ -2782,4 +2861,4 @@ torch = ["torch"]
[metadata]
[metadata]
lock-version = "2.0"
lock-version = "2.0"
python-versions = ">=3.9,<3.13"
python-versions = ">=3.9,<3.13"
content-hash = "
c
d3
fb4b4e4aaf100f6015afa8c9adc28c22e6c0b48752452892dc3d004c1562a
"
content-hash = "d3
14f7dc9ea4d4e7581552f340d9171f24f709bf98de8b8c01c449c23026e7a3
"
server/pyproject.toml
View file @
9b56d3fb
...
@@ -15,7 +15,7 @@ grpcio-status = "^1.51.1"
...
@@ -15,7 +15,7 @@ grpcio-status = "^1.51.1"
grpcio-reflection
=
"^1.51.1"
grpcio-reflection
=
"^1.51.1"
grpc-interceptor
=
"^0.15.0"
grpc-interceptor
=
"^0.15.0"
typer
=
"^0.6.1"
typer
=
"^0.6.1"
accelerate
=
{
version
=
"^0.2
0
.0"
,
optional
=
true
}
accelerate
=
{
version
=
"^0.2
5
.0"
,
optional
=
true
}
bitsandbytes
=
{
version
=
"^0.41.1"
,
optional
=
true
}
bitsandbytes
=
{
version
=
"^0.41.1"
,
optional
=
true
}
safetensors
=
"^0.3.2"
safetensors
=
"^0.3.2"
loguru
=
"^0.6.0"
loguru
=
"^0.6.0"
...
@@ -24,9 +24,9 @@ opentelemetry-exporter-otlp = "^1.15.0"
...
@@ -24,9 +24,9 @@ opentelemetry-exporter-otlp = "^1.15.0"
opentelemetry-instrumentation-grpc
=
"^0.36b0"
opentelemetry-instrumentation-grpc
=
"^0.36b0"
hf-transfer
=
"^0.1.2"
hf-transfer
=
"^0.1.2"
sentencepiece
=
"^0.1.97"
sentencepiece
=
"^0.1.97"
tokenizers
=
"^0.1
3.3
"
tokenizers
=
"^0.1
5.0
"
huggingface-hub
=
"^0.1
6.4
"
huggingface-hub
=
"^0.1
9.3
"
transformers
=
"^4.3
2
.1"
transformers
=
"^4.3
6
.1"
einops
=
"^0.6.1"
einops
=
"^0.6.1"
texttable
=
{
version
=
"^1.6.7"
,
optional
=
true
}
texttable
=
{
version
=
"^1.6.7"
,
optional
=
true
}
datasets
=
{
version
=
"^2.14.0"
,
optional
=
true
}
datasets
=
{
version
=
"^2.14.0"
,
optional
=
true
}
...
...
server/requirements_cuda.txt
View file @
9b56d3fb
backoff==2.2.1 ; python_version >= "3.9" and python_version < "3.13"
backoff==2.2.1 ; python_version >= "3.9" and python_version < "3.13"
bitsandbytes==0.41.
2
.post2 ; python_version >= "3.9" and python_version < "3.13"
bitsandbytes==0.41.
3
.post2 ; python_version >= "3.9" and python_version < "3.13"
certifi==2023.11.17 ; python_version >= "3.9" and python_version < "3.13"
certifi==2023.11.17 ; python_version >= "3.9" and python_version < "3.13"
charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "3.13"
charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "3.13"
click==8.1.7 ; python_version >= "3.9" and python_version < "3.13"
click==8.1.7 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -8,14 +8,14 @@ deprecated==1.2.14 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -8,14 +8,14 @@ deprecated==1.2.14 ; python_version >= "3.9" and python_version < "3.13"
einops==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
einops==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.1 ; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.1 ; python_version >= "3.9" and python_version < "3.13"
fsspec==2023.10.0 ; python_version >= "3.9" and python_version < "3.13"
fsspec==2023.10.0 ; python_version >= "3.9" and python_version < "3.13"
googleapis-common-protos==1.6
1
.0 ; python_version >= "3.9" and python_version < "3.13"
googleapis-common-protos==1.6
2
.0 ; python_version >= "3.9" and python_version < "3.13"
grpc-interceptor==0.15.4 ; python_version >= "3.9" and python_version < "3.13"
grpc-interceptor==0.15.4 ; python_version >= "3.9" and python_version < "3.13"
grpcio-reflection==1.
59.3
; python_version >= "3.9" and python_version < "3.13"
grpcio-reflection==1.
60.0
; python_version >= "3.9" and python_version < "3.13"
grpcio-status==1.
59.3
; python_version >= "3.9" and python_version < "3.13"
grpcio-status==1.
60.0
; python_version >= "3.9" and python_version < "3.13"
grpcio==1.
59.3
; python_version >= "3.9" and python_version < "3.13"
grpcio==1.
60.0
; python_version >= "3.9" and python_version < "3.13"
hf-transfer==0.1.4 ; python_version >= "3.9" and python_version < "3.13"
hf-transfer==0.1.4 ; python_version >= "3.9" and python_version < "3.13"
huggingface-hub==0.1
6
.4 ; python_version >= "3.9" and python_version < "3.13"
huggingface-hub==0.1
9
.4 ; python_version >= "3.9" and python_version < "3.13"
idna==3.
4
; python_version >= "3.9" and python_version < "3.13"
idna==3.
6
; python_version >= "3.9" and python_version < "3.13"
loguru==0.6.0 ; python_version >= "3.9" and python_version < "3.13"
loguru==0.6.0 ; python_version >= "3.9" and python_version < "3.13"
numpy==1.26.2 ; python_version >= "3.9" and python_version < "3.13"
numpy==1.26.2 ; python_version >= "3.9" and python_version < "3.13"
opentelemetry-api==1.15.0 ; python_version >= "3.9" and python_version < "3.13"
opentelemetry-api==1.15.0 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -37,11 +37,11 @@ safetensors==0.3.3 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -37,11 +37,11 @@ safetensors==0.3.3 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.11.4 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.11.4 ; python_version >= "3.9" and python_version < "3.13"
sentencepiece==0.1.99 ; python_version >= "3.9" and python_version < "3.13"
sentencepiece==0.1.99 ; python_version >= "3.9" and python_version < "3.13"
setuptools==69.0.2 ; python_version >= "3.9" and python_version < "3.13"
setuptools==69.0.2 ; python_version >= "3.9" and python_version < "3.13"
tokenizers==0.1
3.3
; python_version >= "3.9" and python_version < "3.13"
tokenizers==0.1
5.0
; python_version >= "3.9" and python_version < "3.13"
tqdm==4.66.1 ; python_version >= "3.9" and python_version < "3.13"
tqdm==4.66.1 ; python_version >= "3.9" and python_version < "3.13"
transformers==4.3
3.3
; python_version >= "3.9" and python_version < "3.13"
transformers==4.3
6.1
; python_version >= "3.9" and python_version < "3.13"
typer==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
typer==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.
8
.0 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.
9
.0 ; python_version >= "3.9" and python_version < "3.13"
urllib3==2.1.0 ; python_version >= "3.9" and python_version < "3.13"
urllib3==2.1.0 ; python_version >= "3.9" and python_version < "3.13"
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32"
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32"
wrapt==1.16.0 ; python_version >= "3.9" and python_version < "3.13"
wrapt==1.16.0 ; python_version >= "3.9" and python_version < "3.13"
server/requirements_rocm.txt
View file @
9b56d3fb
...
@@ -7,14 +7,14 @@ deprecated==1.2.14 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -7,14 +7,14 @@ deprecated==1.2.14 ; python_version >= "3.9" and python_version < "3.13"
einops==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
einops==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.1 ; python_version >= "3.9" and python_version < "3.13"
filelock==3.13.1 ; python_version >= "3.9" and python_version < "3.13"
fsspec==2023.10.0 ; python_version >= "3.9" and python_version < "3.13"
fsspec==2023.10.0 ; python_version >= "3.9" and python_version < "3.13"
googleapis-common-protos==1.6
1
.0 ; python_version >= "3.9" and python_version < "3.13"
googleapis-common-protos==1.6
2
.0 ; python_version >= "3.9" and python_version < "3.13"
grpc-interceptor==0.15.4 ; python_version >= "3.9" and python_version < "3.13"
grpc-interceptor==0.15.4 ; python_version >= "3.9" and python_version < "3.13"
grpcio-reflection==1.
59.3
; python_version >= "3.9" and python_version < "3.13"
grpcio-reflection==1.
60.0
; python_version >= "3.9" and python_version < "3.13"
grpcio-status==1.
59.3
; python_version >= "3.9" and python_version < "3.13"
grpcio-status==1.
60.0
; python_version >= "3.9" and python_version < "3.13"
grpcio==1.
59.3
; python_version >= "3.9" and python_version < "3.13"
grpcio==1.
60.0
; python_version >= "3.9" and python_version < "3.13"
hf-transfer==0.1.4 ; python_version >= "3.9" and python_version < "3.13"
hf-transfer==0.1.4 ; python_version >= "3.9" and python_version < "3.13"
huggingface-hub==0.1
6
.4 ; python_version >= "3.9" and python_version < "3.13"
huggingface-hub==0.1
9
.4 ; python_version >= "3.9" and python_version < "3.13"
idna==3.
4
; python_version >= "3.9" and python_version < "3.13"
idna==3.
6
; python_version >= "3.9" and python_version < "3.13"
loguru==0.6.0 ; python_version >= "3.9" and python_version < "3.13"
loguru==0.6.0 ; python_version >= "3.9" and python_version < "3.13"
numpy==1.26.2 ; python_version >= "3.9" and python_version < "3.13"
numpy==1.26.2 ; python_version >= "3.9" and python_version < "3.13"
opentelemetry-api==1.15.0 ; python_version >= "3.9" and python_version < "3.13"
opentelemetry-api==1.15.0 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -36,11 +36,11 @@ safetensors==0.3.3 ; python_version >= "3.9" and python_version < "3.13"
...
@@ -36,11 +36,11 @@ safetensors==0.3.3 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.11.4 ; python_version >= "3.9" and python_version < "3.13"
scipy==1.11.4 ; python_version >= "3.9" and python_version < "3.13"
sentencepiece==0.1.99 ; python_version >= "3.9" and python_version < "3.13"
sentencepiece==0.1.99 ; python_version >= "3.9" and python_version < "3.13"
setuptools==69.0.2 ; python_version >= "3.9" and python_version < "3.13"
setuptools==69.0.2 ; python_version >= "3.9" and python_version < "3.13"
tokenizers==0.1
3.3
; python_version >= "3.9" and python_version < "3.13"
tokenizers==0.1
5.0
; python_version >= "3.9" and python_version < "3.13"
tqdm==4.66.1 ; python_version >= "3.9" and python_version < "3.13"
tqdm==4.66.1 ; python_version >= "3.9" and python_version < "3.13"
transformers==4.3
3.3
; python_version >= "3.9" and python_version < "3.13"
transformers==4.3
6.1
; python_version >= "3.9" and python_version < "3.13"
typer==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
typer==0.6.1 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.
8
.0 ; python_version >= "3.9" and python_version < "3.13"
typing-extensions==4.
9
.0 ; python_version >= "3.9" and python_version < "3.13"
urllib3==2.1.0 ; python_version >= "3.9" and python_version < "3.13"
urllib3==2.1.0 ; python_version >= "3.9" and python_version < "3.13"
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32"
win32-setctime==1.1.0 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32"
wrapt==1.16.0 ; python_version >= "3.9" and python_version < "3.13"
wrapt==1.16.0 ; python_version >= "3.9" and python_version < "3.13"
server/text_generation_server/models/__init__.py
View file @
9b56d3fb
...
@@ -55,10 +55,14 @@ try:
...
@@ -55,10 +55,14 @@ try:
FlashSantacoderSharded
,
FlashSantacoderSharded
,
)
)
from
text_generation_server.models.idefics
import
IDEFICSSharded
from
text_generation_server.models.idefics
import
IDEFICSSharded
from
text_generation_server.models.flash_mistral
import
FlashMistral
from
text_generation_server.models.flash_mixtral
import
FlashMixtral
from
text_generation_server.utils.flash_attn
import
HAS_FLASH_ATTN_V2_CUDA
except
ImportError
as
e
:
except
ImportError
as
e
:
logger
.
warning
(
f
"Could not import Flash Attention enabled models:
{
e
}
"
)
logger
.
warning
(
f
"Could not import Flash Attention enabled models:
{
e
}
"
)
FLASH_ATTENTION
=
False
FLASH_ATTENTION
=
False
HAS_FLASH_ATTN_V2_CUDA
=
False
if
FLASH_ATTENTION
:
if
FLASH_ATTENTION
:
__all__
.
append
(
FlashNeoXSharded
)
__all__
.
append
(
FlashNeoXSharded
)
...
@@ -66,25 +70,7 @@ if FLASH_ATTENTION:
...
@@ -66,25 +70,7 @@ if FLASH_ATTENTION:
__all__
.
append
(
FlashSantacoderSharded
)
__all__
.
append
(
FlashSantacoderSharded
)
__all__
.
append
(
FlashLlama
)
__all__
.
append
(
FlashLlama
)
__all__
.
append
(
IDEFICSSharded
)
__all__
.
append
(
IDEFICSSharded
)
MISTRAL
=
True
try
:
from
text_generation_server.models.flash_mistral
import
FlashMistral
except
ImportError
as
e
:
logger
.
warning
(
f
"Could not import Mistral model:
{
e
}
"
)
MISTRAL
=
False
if
MISTRAL
:
__all__
.
append
(
FlashMistral
)
__all__
.
append
(
FlashMistral
)
MIXTRAL
=
True
try
:
from
text_generation_server.models.flash_mixtral
import
FlashMixtral
except
ImportError
as
e
:
logger
.
warning
(
f
"Could not import Mixtral model:
{
e
}
"
)
MIXTRAL
=
False
if
MIXTRAL
:
__all__
.
append
(
FlashMixtral
)
__all__
.
append
(
FlashMixtral
)
...
@@ -295,7 +281,9 @@ def get_model(
...
@@ -295,7 +281,9 @@ def get_model(
)
)
if
model_type
==
"mistral"
:
if
model_type
==
"mistral"
:
if
MISTRAL
:
if
(
config_dict
[
"sliding_window"
]
is
None
and
FLASH_ATTENTION
)
or
(
config_dict
[
"sliding_window"
]
>
0
and
HAS_FLASH_ATTN_V2_CUDA
):
return
FlashMistral
(
return
FlashMistral
(
model_id
,
model_id
,
revision
,
revision
,
...
@@ -303,10 +291,11 @@ def get_model(
...
@@ -303,10 +291,11 @@ def get_model(
dtype
=
dtype
,
dtype
=
dtype
,
trust_remote_code
=
trust_remote_code
,
trust_remote_code
=
trust_remote_code
,
)
)
raise
NotImplementedError
(
"Mistral models requires flash attention v2"
)
if
model_type
==
"mixtral"
:
if
model_type
==
"mixtral"
:
if
MIXTRAL
:
if
(
config_dict
[
"sliding_window"
]
is
None
and
FLASH_ATTENTION
)
or
(
config_dict
[
"sliding_window"
]
>
0
and
HAS_FLASH_ATTN_V2_CUDA
):
return
FlashMixtral
(
return
FlashMixtral
(
model_id
,
model_id
,
revision
,
revision
,
...
@@ -314,9 +303,6 @@ def get_model(
...
@@ -314,9 +303,6 @@ def get_model(
dtype
=
dtype
,
dtype
=
dtype
,
trust_remote_code
=
trust_remote_code
,
trust_remote_code
=
trust_remote_code
,
)
)
raise
NotImplementedError
(
"Mixtral models requires flash attention v2, stk and megablocks"
)
if
model_type
==
"opt"
:
if
model_type
==
"opt"
:
return
OPTSharded
(
return
OPTSharded
(
...
@@ -348,17 +334,17 @@ def get_model(
...
@@ -348,17 +334,17 @@ def get_model(
raise
NotImplementedError
(
FLASH_ATT_ERROR_MESSAGE
.
format
(
"Idefics"
))
raise
NotImplementedError
(
FLASH_ATT_ERROR_MESSAGE
.
format
(
"Idefics"
))
if
sharded
:
if
sharded
:
raise
Value
Error
(
"sharded is not supported for AutoModel"
)
raise
NotImplemented
Error
(
"sharded is not supported for AutoModel"
)
if
quantize
==
"gptq"
:
if
quantize
==
"gptq"
:
raise
Value
Error
(
raise
NotImplemented
Error
(
"gptq quantization is not supported for AutoModel, you can try to quantize it with `text-generation-server quantize ORIGINAL_MODEL_ID NEW_MODEL_ID`"
"gptq quantization is not supported for AutoModel, you can try to quantize it with `text-generation-server quantize ORIGINAL_MODEL_ID NEW_MODEL_ID`"
)
)
if
quantize
==
"awq"
:
if
quantize
==
"awq"
:
raise
Value
Error
(
"awq quantization is not supported for AutoModel"
)
raise
NotImplemented
Error
(
"awq quantization is not supported for AutoModel"
)
elif
(
quantize
==
"bitsandbytes-fp4"
)
or
(
quantize
==
"bitsandbytes-nf4"
):
elif
(
quantize
==
"bitsandbytes-fp4"
)
or
(
quantize
==
"bitsandbytes-nf4"
):
raise
Value
Error
(
"4bit quantization is not supported for AutoModel"
)
raise
NotImplemented
Error
(
"4bit quantization is not supported for AutoModel"
)
elif
quantize
==
"eetq"
:
elif
quantize
==
"eetq"
:
raise
Value
Error
(
"Eetq quantization is not supported for AutoModel"
)
raise
NotImplemented
Error
(
"Eetq quantization is not supported for AutoModel"
)
if
model_type
in
modeling_auto
.
MODEL_FOR_CAUSAL_LM_MAPPING_NAMES
:
if
model_type
in
modeling_auto
.
MODEL_FOR_CAUSAL_LM_MAPPING_NAMES
:
return
CausalLM
(
return
CausalLM
(
model_id
,
model_id
,
...
...
server/text_generation_server/models/custom_modeling/flash_mistral_modeling.py
View file @
9b56d3fb
...
@@ -27,11 +27,6 @@ from transformers.configuration_utils import PretrainedConfig
...
@@ -27,11 +27,6 @@ from transformers.configuration_utils import PretrainedConfig
from
typing
import
Optional
,
List
,
Tuple
from
typing
import
Optional
,
List
,
Tuple
from
text_generation_server.utils
import
paged_attention
,
flash_attn
from
text_generation_server.utils
import
paged_attention
,
flash_attn
from
text_generation_server.utils.flash_attn
import
(
attention
,
HAS_FLASH_ATTN_V2_ROCM
,
HAS_FLASH_ATTN_V2_CUDA
,
)
from
text_generation_server.utils.layers
import
(
from
text_generation_server.utils.layers
import
(
TensorParallelRowLinear
,
TensorParallelRowLinear
,
TensorParallelColumnLinear
,
TensorParallelColumnLinear
,
...
@@ -43,10 +38,6 @@ from text_generation_server.utils.layers import (
...
@@ -43,10 +38,6 @@ from text_generation_server.utils.layers import (
)
)
if
not
HAS_FLASH_ATTN_V2_CUDA
and
not
HAS_FLASH_ATTN_V2_ROCM
:
raise
ImportError
(
"Mistral model requires flash attn v2"
)
class
MistralConfig
(
PretrainedConfig
):
class
MistralConfig
(
PretrainedConfig
):
model_type
=
"mistral"
model_type
=
"mistral"
...
...
server/text_generation_server/models/custom_modeling/flash_mixtral_modeling.py
View file @
9b56d3fb
...
@@ -27,12 +27,9 @@ from torch import nn
...
@@ -27,12 +27,9 @@ from torch import nn
from
transformers.activations
import
ACT2FN
from
transformers.activations
import
ACT2FN
from
transformers.configuration_utils
import
PretrainedConfig
from
transformers.configuration_utils
import
PretrainedConfig
from
typing
import
Optional
,
List
,
Tuple
from
typing
import
Optional
,
List
,
Tuple
from
loguru
import
logger
from
text_generation_server.utils
import
paged_attention
,
flash_attn
from
text_generation_server.utils
import
paged_attention
,
flash_attn
from
text_generation_server.utils.flash_attn
import
(
HAS_FLASH_ATTN_V2_ROCM
,
HAS_FLASH_ATTN_V2_CUDA
,
)
from
text_generation_server.utils.layers
import
(
from
text_generation_server.utils.layers
import
(
FastLinear
,
FastLinear
,
FastRMSNorm
,
FastRMSNorm
,
...
@@ -44,18 +41,13 @@ from text_generation_server.utils.layers import (
...
@@ -44,18 +41,13 @@ from text_generation_server.utils.layers import (
get_linear
,
get_linear
,
)
)
if
not
HAS_FLASH_ATTN_V2_CUDA
and
not
HAS_FLASH_ATTN_V2_ROCM
:
HAS_MEGABLOCKS
=
True
raise
ImportError
(
"Mixtral model requires flash attn v2"
)
try
:
import
megablocks.ops
as
ops
except
ImportError
:
raise
ImportError
(
"Mixtral model requires megablocks to be installed"
)
try
:
try
:
import
stk
import
stk
import
megablocks.ops
as
ops
except
ImportError
:
except
ImportError
:
raise
ImportError
(
"Mixtral model requires stk to be installed"
)
logger
.
warning
(
"Mixtral: megablocks is not installed"
)
HAS_MEGABLOCKS
=
False
class
MixtralConfig
(
PretrainedConfig
):
class
MixtralConfig
(
PretrainedConfig
):
...
@@ -590,7 +582,7 @@ class BlockSparseMoE(nn.Module):
...
@@ -590,7 +582,7 @@ class BlockSparseMoE(nn.Module):
return
out
return
out
def
forward
(
self
,
x
:
torch
.
Tensor
)
->
torch
.
Tensor
:
def
forward
(
self
,
x
:
torch
.
Tensor
)
->
torch
.
Tensor
:
if
len
(
x
)
>
256
:
if
len
(
x
)
>
256
and
HAS_MEGABLOCKS
:
return
self
.
sparse_forward
(
x
)
return
self
.
sparse_forward
(
x
)
# This is faster when there is not a lot of tokens
# This is faster when there is not a lot of tokens
return
self
.
dense_forward
(
x
)
return
self
.
dense_forward
(
x
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment