huggingface-hub 1.0.0rc6__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of huggingface-hub might be problematic. Click here for more details.
- huggingface_hub/__init__.py +10 -1
- huggingface_hub/_commit_api.py +1 -5
- huggingface_hub/_jobs_api.py +1 -1
- huggingface_hub/_login.py +3 -3
- huggingface_hub/_snapshot_download.py +4 -3
- huggingface_hub/_upload_large_folder.py +2 -15
- huggingface_hub/_webhooks_server.py +1 -1
- huggingface_hub/cli/_cli_utils.py +1 -1
- huggingface_hub/cli/auth.py +0 -20
- huggingface_hub/cli/cache.py +561 -304
- huggingface_hub/cli/download.py +2 -2
- huggingface_hub/cli/repo.py +0 -7
- huggingface_hub/cli/upload.py +0 -8
- huggingface_hub/community.py +16 -8
- huggingface_hub/constants.py +10 -11
- huggingface_hub/file_download.py +9 -61
- huggingface_hub/hf_api.py +201 -132
- huggingface_hub/hf_file_system.py +32 -7
- huggingface_hub/inference/_client.py +1 -1
- huggingface_hub/inference/_common.py +1 -10
- huggingface_hub/inference/_generated/_async_client.py +1 -1
- huggingface_hub/inference/_providers/__init__.py +15 -2
- huggingface_hub/inference/_providers/_common.py +39 -0
- huggingface_hub/inference/_providers/clarifai.py +13 -0
- huggingface_hub/lfs.py +3 -65
- huggingface_hub/repocard_data.py +1 -1
- huggingface_hub/serialization/_torch.py +1 -1
- huggingface_hub/utils/__init__.py +0 -2
- huggingface_hub/utils/_cache_manager.py +17 -42
- huggingface_hub/utils/_http.py +25 -3
- huggingface_hub/utils/_parsing.py +98 -0
- huggingface_hub/utils/_runtime.py +1 -14
- {huggingface_hub-1.0.0rc6.dist-info → huggingface_hub-1.0.1.dist-info}/METADATA +5 -21
- {huggingface_hub-1.0.0rc6.dist-info → huggingface_hub-1.0.1.dist-info}/RECORD +38 -36
- {huggingface_hub-1.0.0rc6.dist-info → huggingface_hub-1.0.1.dist-info}/LICENSE +0 -0
- {huggingface_hub-1.0.0rc6.dist-info → huggingface_hub-1.0.1.dist-info}/WHEEL +0 -0
- {huggingface_hub-1.0.0rc6.dist-info → huggingface_hub-1.0.1.dist-info}/entry_points.txt +0 -0
- {huggingface_hub-1.0.0rc6.dist-info → huggingface_hub-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# Copyright 2025-present, the HuggingFace Inc. team.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
"""Parsing helpers shared across modules."""
|
|
16
|
+
|
|
17
|
+
import re
|
|
18
|
+
import time
|
|
19
|
+
from typing import Dict
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
RE_NUMBER_WITH_UNIT = re.compile(r"(\d+)([a-z]+)", re.IGNORECASE)
|
|
23
|
+
|
|
24
|
+
BYTE_UNITS: Dict[str, int] = {
|
|
25
|
+
"k": 1_000,
|
|
26
|
+
"m": 1_000_000,
|
|
27
|
+
"g": 1_000_000_000,
|
|
28
|
+
"t": 1_000_000_000_000,
|
|
29
|
+
"p": 1_000_000_000_000_000,
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
TIME_UNITS: Dict[str, int] = {
|
|
33
|
+
"s": 1,
|
|
34
|
+
"m": 60,
|
|
35
|
+
"h": 60 * 60,
|
|
36
|
+
"d": 24 * 60 * 60,
|
|
37
|
+
"w": 7 * 24 * 60 * 60,
|
|
38
|
+
"mo": 30 * 24 * 60 * 60,
|
|
39
|
+
"y": 365 * 24 * 60 * 60,
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def parse_size(value: str) -> int:
|
|
44
|
+
"""Parse a size expressed as a string with digits and unit (like `"10MB"`) to an integer (in bytes)."""
|
|
45
|
+
return _parse_with_unit(value, BYTE_UNITS)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def parse_duration(value: str) -> int:
|
|
49
|
+
"""Parse a duration expressed as a string with digits and unit (like `"10s"`) to an integer (in seconds)."""
|
|
50
|
+
return _parse_with_unit(value, TIME_UNITS)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def _parse_with_unit(value: str, units: Dict[str, int]) -> int:
|
|
54
|
+
"""Parse a numeric value with optional unit."""
|
|
55
|
+
stripped = value.strip()
|
|
56
|
+
if not stripped:
|
|
57
|
+
raise ValueError("Value cannot be empty.")
|
|
58
|
+
try:
|
|
59
|
+
return int(value)
|
|
60
|
+
except ValueError:
|
|
61
|
+
pass
|
|
62
|
+
|
|
63
|
+
match = RE_NUMBER_WITH_UNIT.fullmatch(stripped)
|
|
64
|
+
if not match:
|
|
65
|
+
raise ValueError(f"Invalid value '{value}'. Must match pattern '\\d+[a-z]+' or be a plain number.")
|
|
66
|
+
|
|
67
|
+
number = int(match.group(1))
|
|
68
|
+
unit = match.group(2).lower()
|
|
69
|
+
|
|
70
|
+
if unit not in units:
|
|
71
|
+
raise ValueError(f"Unknown unit '{unit}'. Must be one of {list(units.keys())}.")
|
|
72
|
+
|
|
73
|
+
return number * units[unit]
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
def format_timesince(ts: float) -> str:
|
|
77
|
+
"""Format timestamp in seconds into a human-readable string, relative to now.
|
|
78
|
+
|
|
79
|
+
Vaguely inspired by Django's `timesince` formatter.
|
|
80
|
+
"""
|
|
81
|
+
_TIMESINCE_CHUNKS = (
|
|
82
|
+
# Label, divider, max value
|
|
83
|
+
("second", 1, 60),
|
|
84
|
+
("minute", 60, 60),
|
|
85
|
+
("hour", 60 * 60, 24),
|
|
86
|
+
("day", 60 * 60 * 24, 6),
|
|
87
|
+
("week", 60 * 60 * 24 * 7, 6),
|
|
88
|
+
("month", 60 * 60 * 24 * 30, 11),
|
|
89
|
+
("year", 60 * 60 * 24 * 365, None),
|
|
90
|
+
)
|
|
91
|
+
delta = time.time() - ts
|
|
92
|
+
if delta < 20:
|
|
93
|
+
return "a few seconds ago"
|
|
94
|
+
for label, divider, max_value in _TIMESINCE_CHUNKS: # noqa: B007
|
|
95
|
+
value = round(delta / divider)
|
|
96
|
+
if max_value is not None and value <= max_value:
|
|
97
|
+
break
|
|
98
|
+
return f"{value} {label}{'s' if value > 1 else ''} ago"
|
|
@@ -36,7 +36,6 @@ _CANDIDATES = {
|
|
|
36
36
|
"fastcore": {"fastcore"},
|
|
37
37
|
"gradio": {"gradio"},
|
|
38
38
|
"graphviz": {"graphviz"},
|
|
39
|
-
"hf_transfer": {"hf_transfer"},
|
|
40
39
|
"hf_xet": {"hf_xet"},
|
|
41
40
|
"jinja": {"Jinja2"},
|
|
42
41
|
"httpx": {"httpx"},
|
|
@@ -145,15 +144,6 @@ def get_graphviz_version() -> str:
|
|
|
145
144
|
return _get_version("graphviz")
|
|
146
145
|
|
|
147
146
|
|
|
148
|
-
# hf_transfer
|
|
149
|
-
def is_hf_transfer_available() -> bool:
|
|
150
|
-
return is_package_available("hf_transfer")
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
def get_hf_transfer_version() -> str:
|
|
154
|
-
return _get_version("hf_transfer")
|
|
155
|
-
|
|
156
|
-
|
|
157
147
|
# httpx
|
|
158
148
|
def is_httpx_available() -> bool:
|
|
159
149
|
return is_package_available("httpx")
|
|
@@ -414,13 +404,10 @@ def dump_environment_info() -> dict[str, Any]:
|
|
|
414
404
|
info["Installation method"] = installation_method()
|
|
415
405
|
|
|
416
406
|
# Installed dependencies
|
|
417
|
-
info["Torch"] = get_torch_version()
|
|
418
407
|
info["httpx"] = get_httpx_version()
|
|
419
|
-
info["hf_transfer"] = get_hf_transfer_version()
|
|
420
408
|
info["hf_xet"] = get_xet_version()
|
|
421
409
|
info["gradio"] = get_gradio_version()
|
|
422
410
|
info["tensorboard"] = get_tensorboard_version()
|
|
423
|
-
info["pydantic"] = get_pydantic_version()
|
|
424
411
|
|
|
425
412
|
# Environment variables
|
|
426
413
|
info["ENDPOINT"] = constants.ENDPOINT
|
|
@@ -435,9 +422,9 @@ def dump_environment_info() -> dict[str, Any]:
|
|
|
435
422
|
info["HF_HUB_DISABLE_EXPERIMENTAL_WARNING"] = constants.HF_HUB_DISABLE_EXPERIMENTAL_WARNING
|
|
436
423
|
info["HF_HUB_DISABLE_IMPLICIT_TOKEN"] = constants.HF_HUB_DISABLE_IMPLICIT_TOKEN
|
|
437
424
|
info["HF_HUB_DISABLE_XET"] = constants.HF_HUB_DISABLE_XET
|
|
438
|
-
info["HF_HUB_ENABLE_HF_TRANSFER"] = constants.HF_HUB_ENABLE_HF_TRANSFER
|
|
439
425
|
info["HF_HUB_ETAG_TIMEOUT"] = constants.HF_HUB_ETAG_TIMEOUT
|
|
440
426
|
info["HF_HUB_DOWNLOAD_TIMEOUT"] = constants.HF_HUB_DOWNLOAD_TIMEOUT
|
|
427
|
+
info["HF_XET_HIGH_PERFORMANCE"] = constants.HF_XET_HIGH_PERFORMANCE
|
|
441
428
|
|
|
442
429
|
print("\nCopy-and-paste the text below in your GitHub issue.\n")
|
|
443
430
|
print("\n".join([f"- {prop}: {val}" for prop, val in info.items()]) + "\n")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huggingface-hub
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Client library to download and publish models, datasets and other repos on the huggingface.co hub
|
|
5
5
|
Home-page: https://github.com/huggingface/huggingface_hub
|
|
6
6
|
Author: Hugging Face, Inc.
|
|
@@ -26,17 +26,15 @@ Description-Content-Type: text/markdown
|
|
|
26
26
|
License-File: LICENSE
|
|
27
27
|
Requires-Dist: filelock
|
|
28
28
|
Requires-Dist: fsspec>=2023.5.0
|
|
29
|
+
Requires-Dist: httpx<1,>=0.23.0
|
|
29
30
|
Requires-Dist: packaging>=20.9
|
|
30
31
|
Requires-Dist: pyyaml>=5.1
|
|
31
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: shellingham
|
|
32
33
|
Requires-Dist: tqdm>=4.42.1
|
|
33
34
|
Requires-Dist: typer-slim
|
|
34
35
|
Requires-Dist: typing-extensions>=3.7.4.3
|
|
35
|
-
Requires-Dist: hf-xet<2.0.0,>=1.
|
|
36
|
+
Requires-Dist: hf-xet<2.0.0,>=1.2.0; platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "arm64" or platform_machine == "aarch64"
|
|
36
37
|
Provides-Extra: all
|
|
37
|
-
Requires-Dist: InquirerPy==0.3.4; extra == "all"
|
|
38
|
-
Requires-Dist: shellingham; extra == "all"
|
|
39
|
-
Requires-Dist: aiohttp; extra == "all"
|
|
40
38
|
Requires-Dist: authlib>=1.3.2; extra == "all"
|
|
41
39
|
Requires-Dist: fastapi; extra == "all"
|
|
42
40
|
Requires-Dist: httpx; extra == "all"
|
|
@@ -66,13 +64,7 @@ Requires-Dist: types-simplejson; extra == "all"
|
|
|
66
64
|
Requires-Dist: types-toml; extra == "all"
|
|
67
65
|
Requires-Dist: types-tqdm; extra == "all"
|
|
68
66
|
Requires-Dist: types-urllib3; extra == "all"
|
|
69
|
-
Provides-Extra: cli
|
|
70
|
-
Requires-Dist: InquirerPy==0.3.4; extra == "cli"
|
|
71
|
-
Requires-Dist: shellingham; extra == "cli"
|
|
72
67
|
Provides-Extra: dev
|
|
73
|
-
Requires-Dist: InquirerPy==0.3.4; extra == "dev"
|
|
74
|
-
Requires-Dist: shellingham; extra == "dev"
|
|
75
|
-
Requires-Dist: aiohttp; extra == "dev"
|
|
76
68
|
Requires-Dist: authlib>=1.3.2; extra == "dev"
|
|
77
69
|
Requires-Dist: fastapi; extra == "dev"
|
|
78
70
|
Requires-Dist: httpx; extra == "dev"
|
|
@@ -106,16 +98,11 @@ Provides-Extra: fastai
|
|
|
106
98
|
Requires-Dist: toml; extra == "fastai"
|
|
107
99
|
Requires-Dist: fastai>=2.4; extra == "fastai"
|
|
108
100
|
Requires-Dist: fastcore>=1.3.27; extra == "fastai"
|
|
109
|
-
Provides-Extra: hf_transfer
|
|
110
|
-
Requires-Dist: hf-transfer>=0.1.4; extra == "hf-transfer"
|
|
111
101
|
Provides-Extra: hf_xet
|
|
112
|
-
Requires-Dist: hf-xet<2.0.0,>=1.1.
|
|
113
|
-
Provides-Extra: inference
|
|
114
|
-
Requires-Dist: aiohttp; extra == "inference"
|
|
102
|
+
Requires-Dist: hf-xet<2.0.0,>=1.1.3; extra == "hf-xet"
|
|
115
103
|
Provides-Extra: mcp
|
|
116
104
|
Requires-Dist: mcp>=1.8.0; extra == "mcp"
|
|
117
105
|
Requires-Dist: typer; extra == "mcp"
|
|
118
|
-
Requires-Dist: aiohttp; extra == "mcp"
|
|
119
106
|
Provides-Extra: oauth
|
|
120
107
|
Requires-Dist: authlib>=1.3.2; extra == "oauth"
|
|
121
108
|
Requires-Dist: fastapi; extra == "oauth"
|
|
@@ -127,9 +114,6 @@ Requires-Dist: mypy==1.15.0; extra == "quality"
|
|
|
127
114
|
Requires-Dist: libcst>=1.4.0; extra == "quality"
|
|
128
115
|
Requires-Dist: ty; extra == "quality"
|
|
129
116
|
Provides-Extra: testing
|
|
130
|
-
Requires-Dist: InquirerPy==0.3.4; extra == "testing"
|
|
131
|
-
Requires-Dist: shellingham; extra == "testing"
|
|
132
|
-
Requires-Dist: aiohttp; extra == "testing"
|
|
133
117
|
Requires-Dist: authlib>=1.3.2; extra == "testing"
|
|
134
118
|
Requires-Dist: fastapi; extra == "testing"
|
|
135
119
|
Requires-Dist: httpx; extra == "testing"
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
huggingface_hub/__init__.py,sha256=
|
|
2
|
-
huggingface_hub/_commit_api.py,sha256=
|
|
1
|
+
huggingface_hub/__init__.py,sha256=2KbzkZy2jVo37vrYB3bd5GqAjvveFBiNzyd2MyzXgZI,52363
|
|
2
|
+
huggingface_hub/_commit_api.py,sha256=RUTK7SLa10_-AnfQOCY-pcLw_L_LyuGCfjzvpmb6edk,40619
|
|
3
3
|
huggingface_hub/_commit_scheduler.py,sha256=tqcdWVGJRIxGQtkFHs_AgBdN9ztUjOQSuAhfMAr1ieM,14751
|
|
4
4
|
huggingface_hub/_inference_endpoints.py,sha256=cGiZg244nIOi2OLTqm4V8-ZUY3O0Rr7NlOmoLeHUIbY,17592
|
|
5
|
-
huggingface_hub/_jobs_api.py,sha256=
|
|
5
|
+
huggingface_hub/_jobs_api.py,sha256=BelnQPFWSH80-SJm8OGrZy8s1mwm8PmCGbV82sZ11xs,10871
|
|
6
6
|
huggingface_hub/_local_folder.py,sha256=2iHXNgIT3UdSt2PvCovd0NzgVxTRypKb-rvAFLK-gZU,17305
|
|
7
|
-
huggingface_hub/_login.py,sha256=
|
|
7
|
+
huggingface_hub/_login.py,sha256=X2fRO3QbZmrgmTuFZHJ58m5CDTx81rx7YEcfPoPs62I,18970
|
|
8
8
|
huggingface_hub/_oauth.py,sha256=91zR_H235vxi-fg2YXzDgmA09j4BR3dim9VVzf6srps,18695
|
|
9
|
-
huggingface_hub/_snapshot_download.py,sha256=
|
|
9
|
+
huggingface_hub/_snapshot_download.py,sha256=9UKPYATR1Nml6nsWEOj7porYa0MBsaCTttoGh4Tx8DY,19441
|
|
10
10
|
huggingface_hub/_space_api.py,sha256=aOowzC3LUytfgFrZprn9vKTQHXLpDWJKjl9X4qq_ZxQ,5464
|
|
11
11
|
huggingface_hub/_tensorboard_logger.py,sha256=3TocVxxSIioqxOkI6p1N4plnWfAizfdU456V0-K10Bs,8414
|
|
12
|
-
huggingface_hub/_upload_large_folder.py,sha256=
|
|
12
|
+
huggingface_hub/_upload_large_folder.py,sha256=J3AFi-PikkrfDIl1NLloZ-UrRCa4SAXZR2FPRg6Xg1M,29564
|
|
13
13
|
huggingface_hub/_webhooks_payload.py,sha256=qCZjBa5dhssg_O0yzgzxPyMpwAxLG96I4qen_HIk0Qc,3611
|
|
14
|
-
huggingface_hub/_webhooks_server.py,sha256=
|
|
15
|
-
huggingface_hub/community.py,sha256=
|
|
16
|
-
huggingface_hub/constants.py,sha256=
|
|
14
|
+
huggingface_hub/_webhooks_server.py,sha256=tCH5D0f-X9m1nM0eed9iW_qWbBRULFlF67QZJSyiHX8,15666
|
|
15
|
+
huggingface_hub/community.py,sha256=FACeqlP7OgR2vLLJ0IN4cfglBiEGbyTafJ0cXfsjgnQ,12359
|
|
16
|
+
huggingface_hub/constants.py,sha256=sxGBFkQ8K8gRqDlLStfWDrRUPpb0CkxKZhL9mYJuyyg,9710
|
|
17
17
|
huggingface_hub/dataclasses.py,sha256=b1lo5BI881Drd7UM_pUrK8zdJdhXOGj4-pHxFS_P4M4,21962
|
|
18
18
|
huggingface_hub/errors.py,sha256=lnXNYKsoJwm_G3377u7aDJGnGwKqCyaiZ1DfjtlzMR8,11411
|
|
19
19
|
huggingface_hub/fastai_utils.py,sha256=0joRPBUccjFALLCfhQLyD_K8qxGvQiLThKJClwej_JQ,16657
|
|
20
|
-
huggingface_hub/file_download.py,sha256=
|
|
21
|
-
huggingface_hub/hf_api.py,sha256=
|
|
22
|
-
huggingface_hub/hf_file_system.py,sha256=
|
|
20
|
+
huggingface_hub/file_download.py,sha256=NUQ9jQjmp7DWlA6jwvTJ4y1mV4wH0XN4JysWgcCTAnc,78472
|
|
21
|
+
huggingface_hub/hf_api.py,sha256=75iTEnMty3NJMf8FrzSZL6dO5DPnCMz3VFvM672bWP8,476100
|
|
22
|
+
huggingface_hub/hf_file_system.py,sha256=BzmmHqb5_y91-pOqKKMAzOvGmt8nKqp64zFtZPmOcPY,49312
|
|
23
23
|
huggingface_hub/hub_mixin.py,sha256=xQDBbxjEHVMdb333hCmjsjYsaxU7IICdgZFf8tq0toU,37063
|
|
24
|
-
huggingface_hub/lfs.py,sha256=
|
|
24
|
+
huggingface_hub/lfs.py,sha256=_yqqEl3xbzWufgBBJ-vtPx-LUiuZBJpT9AQ9iX0VJ0c,14060
|
|
25
25
|
huggingface_hub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
huggingface_hub/repocard.py,sha256=-wss1XDYjr88OjwK4Gzi8c-gQwPIHM8qRgxXYgeilUM,34978
|
|
27
|
-
huggingface_hub/repocard_data.py,sha256=
|
|
27
|
+
huggingface_hub/repocard_data.py,sha256=awhSsLRPrcFM9CurB9mrY40H1bE15yzoXDTVL60yD1U,34079
|
|
28
28
|
huggingface_hub/cli/__init__.py,sha256=A4zmzuHD2OHjQ5zmdfcnsj0JeCzHVPtpzh-wCjInugA,606
|
|
29
|
-
huggingface_hub/cli/_cli_utils.py,sha256=
|
|
30
|
-
huggingface_hub/cli/auth.py,sha256=
|
|
31
|
-
huggingface_hub/cli/cache.py,sha256=
|
|
32
|
-
huggingface_hub/cli/download.py,sha256=
|
|
29
|
+
huggingface_hub/cli/_cli_utils.py,sha256=e9z0qMXpRfrzERi220QTzwkq9jOldVGUVtmoDV-sgYs,5402
|
|
30
|
+
huggingface_hub/cli/auth.py,sha256=tJcKzQz8_pl0FFl8a-tNjxpK4AFfA38L4oztcXVdcSY,4515
|
|
31
|
+
huggingface_hub/cli/cache.py,sha256=oMsHmkmZmgSKBpF0xdIpyGsnZNTlth9YJoVw8pk1IX8,21446
|
|
32
|
+
huggingface_hub/cli/download.py,sha256=h9dUa91e1nOTmIcgtxyNE0ZGz6ZSrKu4nnlJsYp2HWg,6532
|
|
33
33
|
huggingface_hub/cli/hf.py,sha256=q8J-SPVe56Qse1b2WT_vKxB4quKpTE_4HSywNA-7ns0,2356
|
|
34
34
|
huggingface_hub/cli/jobs.py,sha256=HgxxxDRaCHH62eBpihzf1SakevM3OWewPiIzWjFkYLw,23871
|
|
35
35
|
huggingface_hub/cli/lfs.py,sha256=UJI5nBbrt_a-lm5uU88gxD6hVu8xyQav-zBxLTv3Wzo,5895
|
|
36
|
-
huggingface_hub/cli/repo.py,sha256=
|
|
36
|
+
huggingface_hub/cli/repo.py,sha256=kAHyiYQap5gVNY8kPmub4s7X9mGsn8vFJNIIzSeIOD4,9709
|
|
37
37
|
huggingface_hub/cli/repo_files.py,sha256=6d5GsLsCjqSKTSbJqCHnrRxB9kXj-yLRAtcVbQkQNMo,2799
|
|
38
38
|
huggingface_hub/cli/system.py,sha256=bEIXmK3qz4qIej1lv1LMCxnXEN9zZnwdl42g4mV_1nQ,982
|
|
39
|
-
huggingface_hub/cli/upload.py,sha256=
|
|
39
|
+
huggingface_hub/cli/upload.py,sha256=Dpu-syLR6J52U2HM8bJbjAk5PNA2gxAYagjKoRTNSZs,11383
|
|
40
40
|
huggingface_hub/cli/upload_large_folder.py,sha256=xQuloimQT0PQH6r5urRpLv8M9I99yAWSGM-sbkG2pu8,4470
|
|
41
41
|
huggingface_hub/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
-
huggingface_hub/inference/_client.py,sha256=
|
|
43
|
-
huggingface_hub/inference/_common.py,sha256=
|
|
42
|
+
huggingface_hub/inference/_client.py,sha256=KIRstAwRk6RyVe2bk7XsiGV_ZdwegjyU_KIDVzQbmII,157960
|
|
43
|
+
huggingface_hub/inference/_common.py,sha256=nzpqbelLKe5k-yYV5fNZ2bxnPkBWbwl9jwkeKsYtfxs,15067
|
|
44
44
|
huggingface_hub/inference/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
huggingface_hub/inference/_generated/_async_client.py,sha256=
|
|
45
|
+
huggingface_hub/inference/_generated/_async_client.py,sha256=0xu4TCjav_qXbFNhv6-uBMo26UgH-z34jAJGfUj7obE,161170
|
|
46
46
|
huggingface_hub/inference/_generated/types/__init__.py,sha256=9WvrGQ8aThtKSNzZF06j-CIE2ZuItne8FFnea1p1u38,6557
|
|
47
47
|
huggingface_hub/inference/_generated/types/audio_classification.py,sha256=Jg3mzfGhCSH6CfvVvgJSiFpkz6v4nNA0G4LJXacEgNc,1573
|
|
48
48
|
huggingface_hub/inference/_generated/types/audio_to_audio.py,sha256=2Ep4WkePL7oJwcp5nRJqApwviumGHbft9HhXE9XLHj4,891
|
|
@@ -85,10 +85,11 @@ huggingface_hub/inference/_mcp/constants.py,sha256=Ws8BujjgZWb5kPAVm4GLE_Rqse63M
|
|
|
85
85
|
huggingface_hub/inference/_mcp/mcp_client.py,sha256=dGp8PhN6aVw4bDnuSySFSiguHUiz-nzhgv89CVdO7pI,17243
|
|
86
86
|
huggingface_hub/inference/_mcp/types.py,sha256=yHNfPsM9MhD06oeKdkbmrBsW-3WhUeqA26fyfRfx_bk,929
|
|
87
87
|
huggingface_hub/inference/_mcp/utils.py,sha256=6XBYLikJ8lknx-k1QaG_uVoVYZ0yMzyo6WgtGp7Zdds,4175
|
|
88
|
-
huggingface_hub/inference/_providers/__init__.py,sha256=
|
|
89
|
-
huggingface_hub/inference/_providers/_common.py,sha256=
|
|
88
|
+
huggingface_hub/inference/_providers/__init__.py,sha256=l1a-sf6OHOtAIlqLDqySWZV6iw9g-FErC6-R0VkdCHk,9458
|
|
89
|
+
huggingface_hub/inference/_providers/_common.py,sha256=bul88ILjJit7BG5L5PFXyS6HQF4-istiYylC9WBHZz0,13818
|
|
90
90
|
huggingface_hub/inference/_providers/black_forest_labs.py,sha256=vkjK_-4epSJa2-fLnbcXFzPAgQsGKhykKwd9Np-V2iw,2846
|
|
91
91
|
huggingface_hub/inference/_providers/cerebras.py,sha256=QOJ-1U-os7uE7p6eUnn_P_APq-yQhx28be7c3Tq2EuA,210
|
|
92
|
+
huggingface_hub/inference/_providers/clarifai.py,sha256=1cEXQwhGk4DRKiPCQUa5y-L6okTo4781EImQC8yJVOw,380
|
|
92
93
|
huggingface_hub/inference/_providers/cohere.py,sha256=GqUyCR4j6Re-_27ItwQF2p89Yya4e__EWDP9hTSs9w0,1247
|
|
93
94
|
huggingface_hub/inference/_providers/fal_ai.py,sha256=F8mWK9BhVvDzp3LNjhuIWF0xLR-Y5gdHpUPUqlPBi-U,9983
|
|
94
95
|
huggingface_hub/inference/_providers/featherless_ai.py,sha256=SceM3VsgzDSaCnzVxTFK6JepHaGStptdLlwrX-zsM2g,1376
|
|
@@ -109,13 +110,13 @@ huggingface_hub/inference/_providers/zai_org.py,sha256=plGzMZuLrChZvgpS3CCPqI6Im
|
|
|
109
110
|
huggingface_hub/serialization/__init__.py,sha256=jCiw_vVQYW52gwVfWiqgocf2Q19kGTQlRGVpf-4SLP8,963
|
|
110
111
|
huggingface_hub/serialization/_base.py,sha256=af1QBU_A3EKgAXvYCkENPyamL5Z7V5LxlIUoCxMsEYM,8097
|
|
111
112
|
huggingface_hub/serialization/_dduf.py,sha256=eyUREtvL7od9SSYKrGcCayF29w3xcP1qXTx7RntWp9k,15411
|
|
112
|
-
huggingface_hub/serialization/_torch.py,sha256=
|
|
113
|
+
huggingface_hub/serialization/_torch.py,sha256=MHQEyqSlCjmAyUMoefi-E8ljxbIsp14DQd8DfjlcH74,45119
|
|
113
114
|
huggingface_hub/templates/datasetcard_template.md,sha256=W-EMqR6wndbrnZorkVv56URWPG49l7MATGeI015kTvs,5503
|
|
114
115
|
huggingface_hub/templates/modelcard_template.md,sha256=4AqArS3cqdtbit5Bo-DhjcnDFR-pza5hErLLTPM4Yuc,6870
|
|
115
|
-
huggingface_hub/utils/__init__.py,sha256=
|
|
116
|
+
huggingface_hub/utils/__init__.py,sha256=DfhKYcd-7sc6lN1JpBT_PUOhxK8RvW1YfYDaPLYeLrc,3799
|
|
116
117
|
huggingface_hub/utils/_auth.py,sha256=TAz8pjk1lP7gseit8Trl2LygKun9unMEBWg_36EeDkA,8280
|
|
117
118
|
huggingface_hub/utils/_cache_assets.py,sha256=kai77HPQMfYpROouMBQCr_gdBCaeTm996Sqj0dExbNg,5728
|
|
118
|
-
huggingface_hub/utils/_cache_manager.py,sha256=
|
|
119
|
+
huggingface_hub/utils/_cache_manager.py,sha256=TYJcC0cibN-MztTQrqzyDPB6HI3m_rGvAuYn2ybB1K8,32992
|
|
119
120
|
huggingface_hub/utils/_chunk_utils.py,sha256=MH7-6FwCDZ8noV6dGRytCOJGSfcZmDBvsvVotdI8TvQ,2109
|
|
120
121
|
huggingface_hub/utils/_datetime.py,sha256=kCS5jaKV25kOncX1xujbXsz5iDLcjLcLw85semGNzxQ,2770
|
|
121
122
|
huggingface_hub/utils/_deprecation.py,sha256=4tWi3vBSdvnhA0z_Op-tkAQ0xrJ4TUb0HbPhMiXUnOs,4872
|
|
@@ -124,11 +125,12 @@ huggingface_hub/utils/_experimental.py,sha256=3-c8irbn9sJr2CwWbzhGkIrdXKg8_x7Bif
|
|
|
124
125
|
huggingface_hub/utils/_fixes.py,sha256=xQZzfwLqZV8-gNcw9mrZ-M1acA6NZHszI_-cSZIWN-U,3978
|
|
125
126
|
huggingface_hub/utils/_git_credential.py,sha256=4B77QzeiPxCwK6BWZgUc1avzRKpna3wYlhVg7AuSCzA,4613
|
|
126
127
|
huggingface_hub/utils/_headers.py,sha256=k_ApvA8fJGHc0yNp2IFY8wySM9MQ5UZEpjr1g-fpRJ4,8060
|
|
127
|
-
huggingface_hub/utils/_http.py,sha256=
|
|
128
|
+
huggingface_hub/utils/_http.py,sha256=ZcajY2zWUEfoumyhShqV3fKUP5pnAra305A0s4LT4pE,31423
|
|
128
129
|
huggingface_hub/utils/_lfs.py,sha256=EC0Oz6Wiwl8foRNkUOzrETXzAWlbgpnpxo5a410ovFY,3957
|
|
129
130
|
huggingface_hub/utils/_pagination.py,sha256=wEHEWhCu9vN5pv51t7ixSGe13g63kS6AJM4P53eY9M4,1894
|
|
131
|
+
huggingface_hub/utils/_parsing.py,sha256=T6UCjUh0h731A0Jh-eH5RWcqVQ5m0IyMcXHl5G2YNUs,3021
|
|
130
132
|
huggingface_hub/utils/_paths.py,sha256=WCR2WbqDJLdNlU4XZNXXNmGct3OiDwPesGYrq41T2wE,5036
|
|
131
|
-
huggingface_hub/utils/_runtime.py,sha256=
|
|
133
|
+
huggingface_hub/utils/_runtime.py,sha256=OnosxuCoOD1LOFodUb7HB3WAF8Q3udvjjXm-b-JXUuc,12593
|
|
132
134
|
huggingface_hub/utils/_safetensors.py,sha256=2_xbCsDPsCwR1tyBjJ5MoOHsX4ksocjzc4jS7oGe7_s,4439
|
|
133
135
|
huggingface_hub/utils/_subprocess.py,sha256=9qDWT1a2QF2TmXOQJDlPK6LwzYl9XjXeRadQPn15U14,4612
|
|
134
136
|
huggingface_hub/utils/_telemetry.py,sha256=a7t0jaOUPVNxbDWi4KQgVf8vSpZv0I-tK2HwlAowvEE,4884
|
|
@@ -142,9 +144,9 @@ huggingface_hub/utils/insecure_hashlib.py,sha256=z3dVUFvdBZ8kQI_8Vzvvlr3ims-EBiY
|
|
|
142
144
|
huggingface_hub/utils/logging.py,sha256=N6NXaCcbPbZSF-Oe-TY3ZnmkpmdFVyTOV8ASo-yVXLE,4916
|
|
143
145
|
huggingface_hub/utils/sha.py,sha256=OFnNGCba0sNcT2gUwaVCJnldxlltrHHe0DS_PCpV3C4,2134
|
|
144
146
|
huggingface_hub/utils/tqdm.py,sha256=-9gfgNA8bg5v5YBToSuB6noClI3a6YaGeFZP61IWmeY,10662
|
|
145
|
-
huggingface_hub-1.0.
|
|
146
|
-
huggingface_hub-1.0.
|
|
147
|
-
huggingface_hub-1.0.
|
|
148
|
-
huggingface_hub-1.0.
|
|
149
|
-
huggingface_hub-1.0.
|
|
150
|
-
huggingface_hub-1.0.
|
|
147
|
+
huggingface_hub-1.0.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
148
|
+
huggingface_hub-1.0.1.dist-info/METADATA,sha256=7SaaqlooGmJCdFQL7G20VryPtInbLcrFeHGQ47X6OVI,13506
|
|
149
|
+
huggingface_hub-1.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
150
|
+
huggingface_hub-1.0.1.dist-info/entry_points.txt,sha256=8Dw-X6nV_toOLZqujrhQMj2uTLs4wzV8EIF1y3FlzVs,153
|
|
151
|
+
huggingface_hub-1.0.1.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
|
|
152
|
+
huggingface_hub-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|