huggingface-hub 0.34.4__py3-none-any.whl → 1.0.0rc0__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.

Files changed (125) hide show
  1. huggingface_hub/__init__.py +46 -45
  2. huggingface_hub/_commit_api.py +28 -28
  3. huggingface_hub/_commit_scheduler.py +11 -8
  4. huggingface_hub/_inference_endpoints.py +8 -8
  5. huggingface_hub/_jobs_api.py +167 -10
  6. huggingface_hub/_login.py +13 -39
  7. huggingface_hub/_oauth.py +8 -8
  8. huggingface_hub/_snapshot_download.py +14 -28
  9. huggingface_hub/_space_api.py +4 -4
  10. huggingface_hub/_tensorboard_logger.py +13 -14
  11. huggingface_hub/_upload_large_folder.py +15 -15
  12. huggingface_hub/_webhooks_payload.py +3 -3
  13. huggingface_hub/_webhooks_server.py +2 -2
  14. huggingface_hub/cli/_cli_utils.py +2 -2
  15. huggingface_hub/cli/auth.py +5 -6
  16. huggingface_hub/cli/cache.py +14 -20
  17. huggingface_hub/cli/download.py +4 -4
  18. huggingface_hub/cli/jobs.py +560 -11
  19. huggingface_hub/cli/lfs.py +4 -4
  20. huggingface_hub/cli/repo.py +7 -7
  21. huggingface_hub/cli/repo_files.py +2 -2
  22. huggingface_hub/cli/upload.py +4 -4
  23. huggingface_hub/cli/upload_large_folder.py +3 -3
  24. huggingface_hub/commands/_cli_utils.py +2 -2
  25. huggingface_hub/commands/delete_cache.py +13 -13
  26. huggingface_hub/commands/download.py +4 -13
  27. huggingface_hub/commands/lfs.py +4 -4
  28. huggingface_hub/commands/repo_files.py +2 -2
  29. huggingface_hub/commands/scan_cache.py +1 -1
  30. huggingface_hub/commands/tag.py +1 -3
  31. huggingface_hub/commands/upload.py +4 -4
  32. huggingface_hub/commands/upload_large_folder.py +3 -3
  33. huggingface_hub/commands/user.py +5 -6
  34. huggingface_hub/community.py +5 -5
  35. huggingface_hub/constants.py +3 -41
  36. huggingface_hub/dataclasses.py +16 -19
  37. huggingface_hub/errors.py +42 -29
  38. huggingface_hub/fastai_utils.py +8 -9
  39. huggingface_hub/file_download.py +153 -252
  40. huggingface_hub/hf_api.py +815 -600
  41. huggingface_hub/hf_file_system.py +98 -62
  42. huggingface_hub/hub_mixin.py +37 -57
  43. huggingface_hub/inference/_client.py +177 -325
  44. huggingface_hub/inference/_common.py +110 -124
  45. huggingface_hub/inference/_generated/_async_client.py +226 -432
  46. huggingface_hub/inference/_generated/types/automatic_speech_recognition.py +3 -3
  47. huggingface_hub/inference/_generated/types/base.py +10 -7
  48. huggingface_hub/inference/_generated/types/chat_completion.py +18 -16
  49. huggingface_hub/inference/_generated/types/depth_estimation.py +2 -2
  50. huggingface_hub/inference/_generated/types/document_question_answering.py +2 -2
  51. huggingface_hub/inference/_generated/types/feature_extraction.py +2 -2
  52. huggingface_hub/inference/_generated/types/fill_mask.py +2 -2
  53. huggingface_hub/inference/_generated/types/sentence_similarity.py +3 -3
  54. huggingface_hub/inference/_generated/types/summarization.py +2 -2
  55. huggingface_hub/inference/_generated/types/table_question_answering.py +4 -4
  56. huggingface_hub/inference/_generated/types/text2text_generation.py +2 -2
  57. huggingface_hub/inference/_generated/types/text_generation.py +10 -10
  58. huggingface_hub/inference/_generated/types/text_to_video.py +2 -2
  59. huggingface_hub/inference/_generated/types/token_classification.py +2 -2
  60. huggingface_hub/inference/_generated/types/translation.py +2 -2
  61. huggingface_hub/inference/_generated/types/zero_shot_classification.py +2 -2
  62. huggingface_hub/inference/_generated/types/zero_shot_image_classification.py +2 -2
  63. huggingface_hub/inference/_generated/types/zero_shot_object_detection.py +1 -3
  64. huggingface_hub/inference/_mcp/_cli_hacks.py +3 -3
  65. huggingface_hub/inference/_mcp/agent.py +3 -3
  66. huggingface_hub/inference/_mcp/cli.py +1 -1
  67. huggingface_hub/inference/_mcp/constants.py +2 -3
  68. huggingface_hub/inference/_mcp/mcp_client.py +58 -30
  69. huggingface_hub/inference/_mcp/types.py +10 -7
  70. huggingface_hub/inference/_mcp/utils.py +11 -7
  71. huggingface_hub/inference/_providers/__init__.py +2 -2
  72. huggingface_hub/inference/_providers/_common.py +49 -25
  73. huggingface_hub/inference/_providers/black_forest_labs.py +6 -6
  74. huggingface_hub/inference/_providers/cohere.py +3 -3
  75. huggingface_hub/inference/_providers/fal_ai.py +25 -25
  76. huggingface_hub/inference/_providers/featherless_ai.py +4 -4
  77. huggingface_hub/inference/_providers/fireworks_ai.py +3 -3
  78. huggingface_hub/inference/_providers/hf_inference.py +28 -20
  79. huggingface_hub/inference/_providers/hyperbolic.py +4 -4
  80. huggingface_hub/inference/_providers/nebius.py +10 -10
  81. huggingface_hub/inference/_providers/novita.py +5 -5
  82. huggingface_hub/inference/_providers/nscale.py +4 -4
  83. huggingface_hub/inference/_providers/replicate.py +15 -15
  84. huggingface_hub/inference/_providers/sambanova.py +6 -6
  85. huggingface_hub/inference/_providers/together.py +7 -7
  86. huggingface_hub/lfs.py +20 -31
  87. huggingface_hub/repocard.py +18 -18
  88. huggingface_hub/repocard_data.py +56 -56
  89. huggingface_hub/serialization/__init__.py +0 -1
  90. huggingface_hub/serialization/_base.py +9 -9
  91. huggingface_hub/serialization/_dduf.py +7 -7
  92. huggingface_hub/serialization/_torch.py +28 -28
  93. huggingface_hub/utils/__init__.py +10 -4
  94. huggingface_hub/utils/_auth.py +5 -5
  95. huggingface_hub/utils/_cache_manager.py +31 -31
  96. huggingface_hub/utils/_deprecation.py +1 -1
  97. huggingface_hub/utils/_dotenv.py +3 -3
  98. huggingface_hub/utils/_fixes.py +0 -10
  99. huggingface_hub/utils/_git_credential.py +4 -4
  100. huggingface_hub/utils/_headers.py +7 -29
  101. huggingface_hub/utils/_http.py +366 -208
  102. huggingface_hub/utils/_pagination.py +4 -4
  103. huggingface_hub/utils/_paths.py +5 -5
  104. huggingface_hub/utils/_runtime.py +15 -13
  105. huggingface_hub/utils/_safetensors.py +21 -21
  106. huggingface_hub/utils/_subprocess.py +9 -9
  107. huggingface_hub/utils/_telemetry.py +3 -3
  108. huggingface_hub/utils/_typing.py +25 -5
  109. huggingface_hub/utils/_validators.py +53 -72
  110. huggingface_hub/utils/_xet.py +16 -16
  111. huggingface_hub/utils/_xet_progress_reporting.py +32 -11
  112. huggingface_hub/utils/insecure_hashlib.py +3 -9
  113. huggingface_hub/utils/tqdm.py +3 -3
  114. {huggingface_hub-0.34.4.dist-info → huggingface_hub-1.0.0rc0.dist-info}/METADATA +18 -29
  115. huggingface_hub-1.0.0rc0.dist-info/RECORD +161 -0
  116. huggingface_hub/inference_api.py +0 -217
  117. huggingface_hub/keras_mixin.py +0 -500
  118. huggingface_hub/repository.py +0 -1477
  119. huggingface_hub/serialization/_tensorflow.py +0 -95
  120. huggingface_hub/utils/_hf_folder.py +0 -68
  121. huggingface_hub-0.34.4.dist-info/RECORD +0 -166
  122. {huggingface_hub-0.34.4.dist-info → huggingface_hub-1.0.0rc0.dist-info}/LICENSE +0 -0
  123. {huggingface_hub-0.34.4.dist-info → huggingface_hub-1.0.0rc0.dist-info}/WHEEL +0 -0
  124. {huggingface_hub-0.34.4.dist-info → huggingface_hub-1.0.0rc0.dist-info}/entry_points.txt +0 -0
  125. {huggingface_hub-0.34.4.dist-info → huggingface_hub-1.0.0rc0.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
1
1
  from dataclasses import dataclass
2
2
  from enum import Enum
3
- from typing import Dict, Optional
3
+ from typing import Optional
4
4
 
5
- import requests
5
+ import httpx
6
6
 
7
7
  from .. import constants
8
8
  from . import get_session, hf_raise_for_status, validate_hf_hub_args
@@ -27,7 +27,7 @@ class XetConnectionInfo:
27
27
 
28
28
 
29
29
  def parse_xet_file_data_from_response(
30
- response: requests.Response, endpoint: Optional[str] = None
30
+ response: httpx.Response, endpoint: Optional[str] = None
31
31
  ) -> Optional[XetFileData]:
32
32
  """
33
33
  Parse XET file metadata from an HTTP response.
@@ -36,7 +36,7 @@ def parse_xet_file_data_from_response(
36
36
  of a given response object. If the required metadata is not found, it returns `None`.
37
37
 
38
38
  Args:
39
- response (`requests.Response`):
39
+ response (`httpx.Response`):
40
40
  The HTTP response object containing headers dict and links dict to extract the XET metadata from.
41
41
  Returns:
42
42
  `Optional[XetFileData]`:
@@ -63,11 +63,11 @@ def parse_xet_file_data_from_response(
63
63
  )
64
64
 
65
65
 
66
- def parse_xet_connection_info_from_headers(headers: Dict[str, str]) -> Optional[XetConnectionInfo]:
66
+ def parse_xet_connection_info_from_headers(headers: dict[str, str]) -> Optional[XetConnectionInfo]:
67
67
  """
68
68
  Parse XET connection info from the HTTP headers or return None if not found.
69
69
  Args:
70
- headers (`Dict`):
70
+ headers (`dict`):
71
71
  HTTP headers to extract the XET metadata from.
72
72
  Returns:
73
73
  `XetConnectionInfo` or `None`:
@@ -92,7 +92,7 @@ def parse_xet_connection_info_from_headers(headers: Dict[str, str]) -> Optional[
92
92
  def refresh_xet_connection_info(
93
93
  *,
94
94
  file_data: XetFileData,
95
- headers: Dict[str, str],
95
+ headers: dict[str, str],
96
96
  ) -> XetConnectionInfo:
97
97
  """
98
98
  Utilizes the information in the parsed metadata to request the Hub xet connection information.
@@ -100,7 +100,7 @@ def refresh_xet_connection_info(
100
100
  Args:
101
101
  file_data: (`XetFileData`):
102
102
  The file data needed to refresh the xet connection information.
103
- headers (`Dict[str, str]`):
103
+ headers (`dict[str, str]`):
104
104
  Headers to use for the request, including authorization headers and user agent.
105
105
  Returns:
106
106
  `XetConnectionInfo`:
@@ -123,9 +123,9 @@ def fetch_xet_connection_info_from_repo_info(
123
123
  repo_id: str,
124
124
  repo_type: str,
125
125
  revision: Optional[str] = None,
126
- headers: Dict[str, str],
126
+ headers: dict[str, str],
127
127
  endpoint: Optional[str] = None,
128
- params: Optional[Dict[str, str]] = None,
128
+ params: Optional[dict[str, str]] = None,
129
129
  ) -> XetConnectionInfo:
130
130
  """
131
131
  Uses the repo info to request a xet access token from Hub.
@@ -138,11 +138,11 @@ def fetch_xet_connection_info_from_repo_info(
138
138
  Type of the repo to upload to: `"model"`, `"dataset"` or `"space"`.
139
139
  revision (`str`, `optional`):
140
140
  The revision of the repo to get the token for.
141
- headers (`Dict[str, str]`):
141
+ headers (`dict[str, str]`):
142
142
  Headers to use for the request, including authorization headers and user agent.
143
143
  endpoint (`str`, `optional`):
144
144
  The endpoint to use for the request. Defaults to the Hub endpoint.
145
- params (`Dict[str, str]`, `optional`):
145
+ params (`dict[str, str]`, `optional`):
146
146
  Additional parameters to pass with the request.
147
147
  Returns:
148
148
  `XetConnectionInfo`:
@@ -161,8 +161,8 @@ def fetch_xet_connection_info_from_repo_info(
161
161
  @validate_hf_hub_args
162
162
  def _fetch_xet_connection_info_with_url(
163
163
  url: str,
164
- headers: Dict[str, str],
165
- params: Optional[Dict[str, str]] = None,
164
+ headers: dict[str, str],
165
+ params: Optional[dict[str, str]] = None,
166
166
  ) -> XetConnectionInfo:
167
167
  """
168
168
  Requests the xet connection info from the supplied URL. This includes the
@@ -170,9 +170,9 @@ def _fetch_xet_connection_info_with_url(
170
170
  Args:
171
171
  url: (`str`):
172
172
  The access token endpoint URL.
173
- headers (`Dict[str, str]`):
173
+ headers (`dict[str, str]`):
174
174
  Headers to use for the request, including authorization headers and user agent.
175
- params (`Dict[str, str]`, `optional`):
175
+ params (`dict[str, str]`, `optional`):
176
176
  Additional parameters to pass with the request.
177
177
  Returns:
178
178
  `XetConnectionInfo`:
@@ -3,20 +3,29 @@ from typing import List
3
3
 
4
4
  from hf_xet import PyItemProgressUpdate, PyTotalProgressUpdate
5
5
 
6
+ from . import is_google_colab, is_notebook
6
7
  from .tqdm import tqdm
7
8
 
8
9
 
9
10
  class XetProgressReporter:
10
- def __init__(self, n_lines: int = 10, description_width: int = 40):
11
+ """
12
+ Reports on progress for Xet uploads.
13
+
14
+ Shows summary progress bars when running in notebooks or GUIs, and detailed per-file progress in console environments.
15
+ """
16
+
17
+ def __init__(self, n_lines: int = 10, description_width: int = 30):
11
18
  self.n_lines = n_lines
12
19
  self.description_width = description_width
13
20
 
21
+ self.per_file_progress = is_google_colab() or not is_notebook()
22
+
14
23
  self.tqdm_settings = {
15
24
  "unit": "B",
16
25
  "unit_scale": True,
17
26
  "leave": True,
18
27
  "unit_divisor": 1000,
19
- "nrows": n_lines + 3,
28
+ "nrows": n_lines + 3 if self.per_file_progress else 3,
20
29
  "miniters": 1,
21
30
  "bar_format": "{l_bar}{bar}| {n_fmt:>5}B / {total_fmt:>5}B{postfix:>12}",
22
31
  }
@@ -40,8 +49,13 @@ class XetProgressReporter:
40
49
  def format_desc(self, name: str, indent: bool) -> str:
41
50
  """
42
51
  if name is longer than width characters, prints ... at the start and then the last width-3 characters of the name, otherwise
43
- the whole name right justified into 20 characters. Also adds some padding.
52
+ the whole name right justified into description_width characters. Also adds some padding.
44
53
  """
54
+
55
+ if not self.per_file_progress:
56
+ # Here we just use the defaults.
57
+ return name
58
+
45
59
  padding = " " if indent else ""
46
60
  width = self.description_width - len(padding)
47
61
 
@@ -50,7 +64,7 @@ class XetProgressReporter:
50
64
 
51
65
  return f"{padding}{name.ljust(width)}"
52
66
 
53
- def update_progress(self, total_update: PyTotalProgressUpdate, item_updates: List[PyItemProgressUpdate]):
67
+ def update_progress(self, total_update: PyTotalProgressUpdate, item_updates: list[PyItemProgressUpdate]):
54
68
  # Update all the per-item values.
55
69
  for item in item_updates:
56
70
  item_name = item.item_name
@@ -74,6 +88,10 @@ class XetProgressReporter:
74
88
  self.completed_items.add(name)
75
89
  new_completed.append(name)
76
90
 
91
+ # If we're only showing summary information, then don't update the individual bars
92
+ if not self.per_file_progress:
93
+ continue
94
+
77
95
  # If we've run out of bars to use, then collapse the last ones together.
78
96
  if bar_idx >= len(self.current_bars):
79
97
  bar = self.current_bars[-1]
@@ -111,10 +129,11 @@ class XetProgressReporter:
111
129
 
112
130
  del self.item_state[name]
113
131
 
114
- # Now manually refresh each of the bars
115
- for bar in self.current_bars:
116
- if bar:
117
- bar.refresh()
132
+ if self.per_file_progress:
133
+ # Now manually refresh each of the bars
134
+ for bar in self.current_bars:
135
+ if bar:
136
+ bar.refresh()
118
137
 
119
138
  # Update overall bars
120
139
  def postfix(speed):
@@ -136,6 +155,8 @@ class XetProgressReporter:
136
155
  def close(self, _success):
137
156
  self.data_processing_bar.close()
138
157
  self.upload_bar.close()
139
- for bar in self.current_bars:
140
- if bar:
141
- bar.close()
158
+
159
+ if self.per_file_progress:
160
+ for bar in self.current_bars:
161
+ if bar:
162
+ bar.close()
@@ -25,14 +25,8 @@
25
25
  # ```
26
26
  import functools
27
27
  import hashlib
28
- import sys
29
28
 
30
29
 
31
- if sys.version_info >= (3, 9):
32
- md5 = functools.partial(hashlib.md5, usedforsecurity=False)
33
- sha1 = functools.partial(hashlib.sha1, usedforsecurity=False)
34
- sha256 = functools.partial(hashlib.sha256, usedforsecurity=False)
35
- else:
36
- md5 = hashlib.md5
37
- sha1 = hashlib.sha1
38
- sha256 = hashlib.sha256
30
+ md5 = functools.partial(hashlib.md5, usedforsecurity=False)
31
+ sha1 = functools.partial(hashlib.sha1, usedforsecurity=False)
32
+ sha256 = functools.partial(hashlib.sha256, usedforsecurity=False)
@@ -86,7 +86,7 @@ import os
86
86
  import warnings
87
87
  from contextlib import contextmanager, nullcontext
88
88
  from pathlib import Path
89
- from typing import ContextManager, Dict, Iterator, Optional, Union
89
+ from typing import ContextManager, Iterator, Optional, Union
90
90
 
91
91
  from tqdm.auto import tqdm as old_tqdm
92
92
 
@@ -102,7 +102,7 @@ from ..constants import HF_HUB_DISABLE_PROGRESS_BARS
102
102
  # progress bar visibility through code. By default, progress bars are turned on.
103
103
 
104
104
 
105
- progress_bar_states: Dict[str, bool] = {}
105
+ progress_bar_states: dict[str, bool] = {}
106
106
 
107
107
 
108
108
  def disable_progress_bars(name: Optional[str] = None) -> None:
@@ -248,7 +248,7 @@ def tqdm_stream_file(path: Union[Path, str]) -> Iterator[io.BufferedReader]:
248
248
  Example:
249
249
  ```py
250
250
  >>> with tqdm_stream_file("config.json") as f:
251
- >>> requests.put(url, data=f)
251
+ >>> httpx.put(url, data=f)
252
252
  config.json: 100%|█████████████████████████| 8.19k/8.19k [00:02<00:00, 3.72kB/s]
253
253
  ```
254
254
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huggingface-hub
3
- Version: 0.34.4
3
+ Version: 1.0.0rc0
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.
@@ -15,21 +15,20 @@ Classifier: License :: OSI Approved :: Apache Software License
15
15
  Classifier: Operating System :: OS Independent
16
16
  Classifier: Programming Language :: Python :: 3
17
17
  Classifier: Programming Language :: Python :: 3 :: Only
18
- Classifier: Programming Language :: Python :: 3.8
19
18
  Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
23
22
  Classifier: Programming Language :: Python :: 3.13
24
23
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
25
- Requires-Python: >=3.8.0
24
+ Requires-Python: >=3.9.0
26
25
  Description-Content-Type: text/markdown
27
26
  License-File: LICENSE
28
27
  Requires-Dist: filelock
29
28
  Requires-Dist: fsspec>=2023.5.0
30
29
  Requires-Dist: packaging>=20.9
31
30
  Requires-Dist: pyyaml>=5.1
32
- Requires-Dist: requests
31
+ Requires-Dist: httpx<1,>=0.23.0
33
32
  Requires-Dist: tqdm>=4.42.1
34
33
  Requires-Dist: typing-extensions>=3.7.4.3
35
34
  Requires-Dist: hf-xet<2.0.0,>=1.1.3; platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "arm64" or platform_machine == "aarch64"
@@ -42,30 +41,29 @@ Requires-Dist: httpx; extra == "all"
42
41
  Requires-Dist: itsdangerous; extra == "all"
43
42
  Requires-Dist: jedi; extra == "all"
44
43
  Requires-Dist: Jinja2; extra == "all"
45
- Requires-Dist: pytest<8.2.2,>=8.1.1; extra == "all"
44
+ Requires-Dist: pytest>=8.4.2; extra == "all"
46
45
  Requires-Dist: pytest-cov; extra == "all"
47
46
  Requires-Dist: pytest-env; extra == "all"
48
47
  Requires-Dist: pytest-xdist; extra == "all"
49
48
  Requires-Dist: pytest-vcr; extra == "all"
50
49
  Requires-Dist: pytest-asyncio; extra == "all"
51
- Requires-Dist: pytest-rerunfailures; extra == "all"
50
+ Requires-Dist: pytest-rerunfailures<16.0; extra == "all"
52
51
  Requires-Dist: pytest-mock; extra == "all"
53
52
  Requires-Dist: urllib3<2.0; extra == "all"
54
53
  Requires-Dist: soundfile; extra == "all"
55
54
  Requires-Dist: Pillow; extra == "all"
56
- Requires-Dist: gradio>=4.0.0; extra == "all"
55
+ Requires-Dist: requests; extra == "all"
57
56
  Requires-Dist: numpy; extra == "all"
58
57
  Requires-Dist: ruff>=0.9.0; extra == "all"
58
+ Requires-Dist: mypy==1.15.0; extra == "all"
59
59
  Requires-Dist: libcst>=1.4.0; extra == "all"
60
+ Requires-Dist: ty; extra == "all"
60
61
  Requires-Dist: typing-extensions>=4.8.0; extra == "all"
61
62
  Requires-Dist: types-PyYAML; extra == "all"
62
- Requires-Dist: types-requests; extra == "all"
63
63
  Requires-Dist: types-simplejson; extra == "all"
64
64
  Requires-Dist: types-toml; extra == "all"
65
65
  Requires-Dist: types-tqdm; extra == "all"
66
66
  Requires-Dist: types-urllib3; extra == "all"
67
- Requires-Dist: mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "all"
68
- Requires-Dist: mypy==1.15.0; python_version >= "3.9" and extra == "all"
69
67
  Provides-Extra: cli
70
68
  Requires-Dist: InquirerPy==0.3.4; extra == "cli"
71
69
  Provides-Extra: dev
@@ -77,30 +75,29 @@ Requires-Dist: httpx; extra == "dev"
77
75
  Requires-Dist: itsdangerous; extra == "dev"
78
76
  Requires-Dist: jedi; extra == "dev"
79
77
  Requires-Dist: Jinja2; extra == "dev"
80
- Requires-Dist: pytest<8.2.2,>=8.1.1; extra == "dev"
78
+ Requires-Dist: pytest>=8.4.2; extra == "dev"
81
79
  Requires-Dist: pytest-cov; extra == "dev"
82
80
  Requires-Dist: pytest-env; extra == "dev"
83
81
  Requires-Dist: pytest-xdist; extra == "dev"
84
82
  Requires-Dist: pytest-vcr; extra == "dev"
85
83
  Requires-Dist: pytest-asyncio; extra == "dev"
86
- Requires-Dist: pytest-rerunfailures; extra == "dev"
84
+ Requires-Dist: pytest-rerunfailures<16.0; extra == "dev"
87
85
  Requires-Dist: pytest-mock; extra == "dev"
88
86
  Requires-Dist: urllib3<2.0; extra == "dev"
89
87
  Requires-Dist: soundfile; extra == "dev"
90
88
  Requires-Dist: Pillow; extra == "dev"
91
- Requires-Dist: gradio>=4.0.0; extra == "dev"
89
+ Requires-Dist: requests; extra == "dev"
92
90
  Requires-Dist: numpy; extra == "dev"
93
91
  Requires-Dist: ruff>=0.9.0; extra == "dev"
92
+ Requires-Dist: mypy==1.15.0; extra == "dev"
94
93
  Requires-Dist: libcst>=1.4.0; extra == "dev"
94
+ Requires-Dist: ty; extra == "dev"
95
95
  Requires-Dist: typing-extensions>=4.8.0; extra == "dev"
96
96
  Requires-Dist: types-PyYAML; extra == "dev"
97
- Requires-Dist: types-requests; extra == "dev"
98
97
  Requires-Dist: types-simplejson; extra == "dev"
99
98
  Requires-Dist: types-toml; extra == "dev"
100
99
  Requires-Dist: types-tqdm; extra == "dev"
101
100
  Requires-Dist: types-urllib3; extra == "dev"
102
- Requires-Dist: mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "dev"
103
- Requires-Dist: mypy==1.15.0; python_version >= "3.9" and extra == "dev"
104
101
  Provides-Extra: fastai
105
102
  Requires-Dist: toml; extra == "fastai"
106
103
  Requires-Dist: fastai>=2.4; extra == "fastai"
@@ -122,16 +119,9 @@ Requires-Dist: httpx; extra == "oauth"
122
119
  Requires-Dist: itsdangerous; extra == "oauth"
123
120
  Provides-Extra: quality
124
121
  Requires-Dist: ruff>=0.9.0; extra == "quality"
122
+ Requires-Dist: mypy==1.15.0; extra == "quality"
125
123
  Requires-Dist: libcst>=1.4.0; extra == "quality"
126
- Requires-Dist: mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "quality"
127
- Requires-Dist: mypy==1.15.0; python_version >= "3.9" and extra == "quality"
128
- Provides-Extra: tensorflow
129
- Requires-Dist: tensorflow; extra == "tensorflow"
130
- Requires-Dist: pydot; extra == "tensorflow"
131
- Requires-Dist: graphviz; extra == "tensorflow"
132
- Provides-Extra: tensorflow-testing
133
- Requires-Dist: tensorflow; extra == "tensorflow-testing"
134
- Requires-Dist: keras<3.0; extra == "tensorflow-testing"
124
+ Requires-Dist: ty; extra == "quality"
135
125
  Provides-Extra: testing
136
126
  Requires-Dist: InquirerPy==0.3.4; extra == "testing"
137
127
  Requires-Dist: aiohttp; extra == "testing"
@@ -141,18 +131,18 @@ Requires-Dist: httpx; extra == "testing"
141
131
  Requires-Dist: itsdangerous; extra == "testing"
142
132
  Requires-Dist: jedi; extra == "testing"
143
133
  Requires-Dist: Jinja2; extra == "testing"
144
- Requires-Dist: pytest<8.2.2,>=8.1.1; extra == "testing"
134
+ Requires-Dist: pytest>=8.4.2; extra == "testing"
145
135
  Requires-Dist: pytest-cov; extra == "testing"
146
136
  Requires-Dist: pytest-env; extra == "testing"
147
137
  Requires-Dist: pytest-xdist; extra == "testing"
148
138
  Requires-Dist: pytest-vcr; extra == "testing"
149
139
  Requires-Dist: pytest-asyncio; extra == "testing"
150
- Requires-Dist: pytest-rerunfailures; extra == "testing"
140
+ Requires-Dist: pytest-rerunfailures<16.0; extra == "testing"
151
141
  Requires-Dist: pytest-mock; extra == "testing"
152
142
  Requires-Dist: urllib3<2.0; extra == "testing"
153
143
  Requires-Dist: soundfile; extra == "testing"
154
144
  Requires-Dist: Pillow; extra == "testing"
155
- Requires-Dist: gradio>=4.0.0; extra == "testing"
145
+ Requires-Dist: requests; extra == "testing"
156
146
  Requires-Dist: numpy; extra == "testing"
157
147
  Provides-Extra: torch
158
148
  Requires-Dist: torch; extra == "torch"
@@ -160,7 +150,6 @@ Requires-Dist: safetensors[torch]; extra == "torch"
160
150
  Provides-Extra: typing
161
151
  Requires-Dist: typing-extensions>=4.8.0; extra == "typing"
162
152
  Requires-Dist: types-PyYAML; extra == "typing"
163
- Requires-Dist: types-requests; extra == "typing"
164
153
  Requires-Dist: types-simplejson; extra == "typing"
165
154
  Requires-Dist: types-toml; extra == "typing"
166
155
  Requires-Dist: types-tqdm; extra == "typing"
@@ -0,0 +1,161 @@
1
+ huggingface_hub/__init__.py,sha256=2zl7Wz0HDypcB9eGvV3UEABlIRSSsZrKTnD3kEgmIug,52004
2
+ huggingface_hub/_commit_api.py,sha256=1tz3oOAd0A4797INAzIOtS3Vj9Y58wsrV3B1pXShCCY,38833
3
+ huggingface_hub/_commit_scheduler.py,sha256=Spz4u3Wpg2mz9pWkVtsLS6ljG0QD5dOD18tSRXt5YVk,14770
4
+ huggingface_hub/_inference_endpoints.py,sha256=cGiZg244nIOi2OLTqm4V8-ZUY3O0Rr7NlOmoLeHUIbY,17592
5
+ huggingface_hub/_jobs_api.py,sha256=SqybFSxQygyp8Ywem2a4WIL0kcq_hB1Dv5xV8kJFmv8,10791
6
+ huggingface_hub/_local_folder.py,sha256=2iHXNgIT3UdSt2PvCovd0NzgVxTRypKb-rvAFLK-gZU,17305
7
+ huggingface_hub/_login.py,sha256=yctn09DZiGNLJ2LGFJUUPVO7WSVhCYkEyZaS6pRxkHo,19076
8
+ huggingface_hub/_oauth.py,sha256=91zR_H235vxi-fg2YXzDgmA09j4BR3dim9VVzf6srps,18695
9
+ huggingface_hub/_snapshot_download.py,sha256=bN_Rh_DMYcPOSNjQvx3oxnJyDwOdaKNBJuNCh0z8n6w,15543
10
+ huggingface_hub/_space_api.py,sha256=aOowzC3LUytfgFrZprn9vKTQHXLpDWJKjl9X4qq_ZxQ,5464
11
+ huggingface_hub/_tensorboard_logger.py,sha256=ad0bbmIa-YzBIIt_l3aPnXUDOyRUezYEtMHIm23L_ZY,8433
12
+ huggingface_hub/_upload_large_folder.py,sha256=NLnbHTo85kSZpxNpliP8ZqFbux7XCFw60EEsqS5aCUM,30047
13
+ huggingface_hub/_webhooks_payload.py,sha256=qCZjBa5dhssg_O0yzgzxPyMpwAxLG96I4qen_HIk0Qc,3611
14
+ huggingface_hub/_webhooks_server.py,sha256=iSYiQL6fx1-tmZJvj0ntftA9-blloqEeiJEwPmjoWSw,15761
15
+ huggingface_hub/community.py,sha256=RbW37Fh8IPsTOiE6ukTdG9mjkjECdKsvcWg6wBV55mg,12192
16
+ huggingface_hub/constants.py,sha256=0wPK02ixE1drhlsEbpwi1RIQauezevkQnDB_JW3Y75c,9316
17
+ huggingface_hub/dataclasses.py,sha256=G-_CJ8UUxZANUNUd_NmJiqqlhaGt2guyIlV0v9EOwL0,17193
18
+ huggingface_hub/errors.py,sha256=K5zk02p0TZlIqYg3GEW7OvS7X0OPw16JQfDHyCl6X4o,11273
19
+ huggingface_hub/fastai_utils.py,sha256=i7x4fb35_b4UK4-PXIImn_9GuYhs3iFshsD5XgbtZSc,16647
20
+ huggingface_hub/file_download.py,sha256=C4TLrT6lzYqSa5TTbQzIB6zQGzw0nyj-YUYlrnyxu0c,74012
21
+ huggingface_hub/hf_api.py,sha256=4lCbMOiLgzsek7qmeasI6add8flB3F9c-0Emmb1eHHc,469288
22
+ huggingface_hub/hf_file_system.py,sha256=I8aB6TtBUGKCp_Gy4UocrJjK6yXTTa0s-MUILgMibVA,47916
23
+ huggingface_hub/hub_mixin.py,sha256=xQDBbxjEHVMdb333hCmjsjYsaxU7IICdgZFf8tq0toU,37063
24
+ huggingface_hub/lfs.py,sha256=zmnoEW7NLVinylPqQNuQnwqqg2sjCJTp4lOBGllvdtA,15983
25
+ huggingface_hub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ huggingface_hub/repocard.py,sha256=sg-n9CHYXJFbrwguTO2fiSgoOqn-frz1aeDlGuTPbhA,34908
27
+ huggingface_hub/repocard_data.py,sha256=DLdOKlnQCHOOpU-e_skx0YaHxoqN9ZKIOmmMjHUqb1w,34063
28
+ huggingface_hub/cli/__init__.py,sha256=xzX1qgAvrtAX4gP59WrPlvOZFLuzuTgcjvanQvcpgHc,928
29
+ huggingface_hub/cli/_cli_utils.py,sha256=AzIbYNBp5aVHeGMeP7c8pwg7jsR2w5gQiyDXG2mcgBw,2089
30
+ huggingface_hub/cli/auth.py,sha256=VxY9BvV7-jXdxBUEXlqg8GYLXO-gskkkRMrNnRyLaDw,7323
31
+ huggingface_hub/cli/cache.py,sha256=rgSytxLkwex8TsVjV5PhAtY9zn-o6PaPhIthiLPRzhQ,15849
32
+ huggingface_hub/cli/download.py,sha256=_odsNVxZxI_0OfsJhuV1KgifMOhD65n20DRbYU1Ntyg,7109
33
+ huggingface_hub/cli/hf.py,sha256=SQ73_SXEQnWVJkhKT_6bwNQBHQXGOdI5qqlTTtI0XH0,2328
34
+ huggingface_hub/cli/jobs.py,sha256=1R1jU1NB4fUeDTnCjV1T3mTmlN-xVijJsOch5xzg6_o,44316
35
+ huggingface_hub/cli/lfs.py,sha256=21J28s9Dce_5OLXeorlwDp2aIuh5YRZfkE4zNRqgkeU,7218
36
+ huggingface_hub/cli/repo.py,sha256=sdLrVEQB4XnHaizOLc9qiAMhCNiLxNbcln1SqnEz4K0,10580
37
+ huggingface_hub/cli/repo_files.py,sha256=W_gqvTxdIt6FoiW7GEIo-ZK31-ypoFK-693jubjjxOI,4825
38
+ huggingface_hub/cli/system.py,sha256=eLSYME7ywt5Ae3tYQnS43Tai2pR2JLtA1KGImzPt5pM,1707
39
+ huggingface_hub/cli/upload.py,sha256=-UoZ8-PEqMH9ALQxc6JlnBDyTMublJ1UpGpmVKNLqxQ,14343
40
+ huggingface_hub/cli/upload_large_folder.py,sha256=3dEWW2cILem216nHkPKcQ7PHJ0VOkL-aGhNGVmzGkuM,6145
41
+ huggingface_hub/commands/__init__.py,sha256=AkbM2a-iGh0Vq_xAWhK3mu3uZ44km8-X5uWjKcvcrUQ,928
42
+ huggingface_hub/commands/_cli_utils.py,sha256=5ee2T6YBBCshtZlUEqVHERY9JOHxxPnVEsQJCpze7Yw,2323
43
+ huggingface_hub/commands/delete_cache.py,sha256=ePmnQG3HTmHTEuJ_iHxSVNFDgXIWdE3Ce-4S29ZgK7E,17732
44
+ huggingface_hub/commands/download.py,sha256=hQg4iKhU8RVMqzvLWyAoO4VDfuG75JOSPQyN_9UPFfg,7881
45
+ huggingface_hub/commands/env.py,sha256=qv4SmjuzUz9exo4RDMY2HqabLCKE1oRb55cBA6LN9R4,1342
46
+ huggingface_hub/commands/huggingface_cli.py,sha256=gDi7JueyiLD0bGclTEYfHPQWpAY_WBdPfHT7vkqa5v0,2654
47
+ huggingface_hub/commands/lfs.py,sha256=DY5OsbRqYvTxLXO9jr9PeWucXEQ3PEZeEKY9QwS4HlM,7330
48
+ huggingface_hub/commands/repo.py,sha256=WcRDFqUYKB0Kz0zFopegiG614ot6VOYTAf6jht0BMss,6042
49
+ huggingface_hub/commands/repo_files.py,sha256=-BQ0kcmh3cQjiF1w1weidospl4L0YAT0QeLCicBdlAg,5048
50
+ huggingface_hub/commands/scan_cache.py,sha256=gQlhBZgWkUzH4wrIYnvgV7CA4C7rvV2SuY0x2JCB7g0,8675
51
+ huggingface_hub/commands/tag.py,sha256=f76qx6wCUWLvSYACAnf_qBB5v9ZnrO_-QqMAZ8TdB0s,6344
52
+ huggingface_hub/commands/upload.py,sha256=KOOxiVA7I18vcw4BirWvZ1v1WCYsRLv6blA-6O2dp8w,14570
53
+ huggingface_hub/commands/upload_large_folder.py,sha256=RUrZ9BMyUxh1Q2reI5Xplw8qy1kO01UO6fEojYO2RmU,6248
54
+ huggingface_hub/commands/user.py,sha256=yuG7VpyKfih4qRLf5N-Dg4JcsLpIKpchsvtHZMLws5w,7522
55
+ huggingface_hub/commands/version.py,sha256=rGpCbvxImY9eQqXrshYt609Iws27R75WARmKQrIo6Ok,1390
56
+ huggingface_hub/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ huggingface_hub/inference/_client.py,sha256=jEFiLsvhd_o8NUCQWHIOtSEufryOFyoFzGzW45sRGSY,157924
58
+ huggingface_hub/inference/_common.py,sha256=qS3i2R8Dz_VCb6sWt1ZqnmOt8jxPU6uSxlyq-0_9ytg,15350
59
+ huggingface_hub/inference/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ huggingface_hub/inference/_generated/_async_client.py,sha256=BFRGjET1um6FxwV8Eqi-WUtx1xphNC05SRi8qgY55Qo,161134
61
+ huggingface_hub/inference/_generated/types/__init__.py,sha256=9WvrGQ8aThtKSNzZF06j-CIE2ZuItne8FFnea1p1u38,6557
62
+ huggingface_hub/inference/_generated/types/audio_classification.py,sha256=Jg3mzfGhCSH6CfvVvgJSiFpkz6v4nNA0G4LJXacEgNc,1573
63
+ huggingface_hub/inference/_generated/types/audio_to_audio.py,sha256=2Ep4WkePL7oJwcp5nRJqApwviumGHbft9HhXE9XLHj4,891
64
+ huggingface_hub/inference/_generated/types/automatic_speech_recognition.py,sha256=FyViZkZqd0oo7Raqo48HESMAXHSnJap9HRWsKCi8Xz4,5509
65
+ huggingface_hub/inference/_generated/types/base.py,sha256=9sGEyvytJureiYimTb-pFIxG7jLe6okKzPamZuSiZyc,6896
66
+ huggingface_hub/inference/_generated/types/chat_completion.py,sha256=3-pAyko3ozXSsvE_nFl4wtALf3z5DVQSLjtAD-2tUe4,11242
67
+ huggingface_hub/inference/_generated/types/depth_estimation.py,sha256=c7IA81gZp5xIHol-7wlvy8V8UE--O1XF9rahauLVuoY,923
68
+ huggingface_hub/inference/_generated/types/document_question_answering.py,sha256=aJ_dC3pVLTHombqX3UwIFhKN_mFzpw4m89sfB2J488E,3196
69
+ huggingface_hub/inference/_generated/types/feature_extraction.py,sha256=A8nj27aQWF6XKQxNl0GsOnsNY--nN8Rnlh3nRXrThkU,1531
70
+ huggingface_hub/inference/_generated/types/fill_mask.py,sha256=E-dU2bmHlso1cei_ju_LQtYVvDZEqAM1-walZkMPa74,1702
71
+ huggingface_hub/inference/_generated/types/image_classification.py,sha256=A-Y024o8723_n8mGVos4TwdAkVL62McGeL1iIo4VzNs,1585
72
+ huggingface_hub/inference/_generated/types/image_segmentation.py,sha256=vrkI4SuP1Iq_iLXc-2pQhYY3SHN4gzvFBoZqbUHxU7o,1950
73
+ huggingface_hub/inference/_generated/types/image_to_image.py,sha256=HPz1uKXk_9xvgNUi3GV6n4lw-J3G6cdGTcW3Ou_N0l8,2044
74
+ huggingface_hub/inference/_generated/types/image_to_text.py,sha256=OaFEBAfgT-fOVzJ7xVermGf7VODhrc9-Jg38WrM7-2o,4810
75
+ huggingface_hub/inference/_generated/types/image_to_video.py,sha256=bC-L_cNsDhk4s_IdSiprJ9d1NeMGePLcUp7UPpco21w,2240
76
+ huggingface_hub/inference/_generated/types/object_detection.py,sha256=VuFlb1281qTXoSgJDmquGz-VNfEZLo2H0Rh_F6MF6ts,2000
77
+ huggingface_hub/inference/_generated/types/question_answering.py,sha256=zw38a9_9l2k1ifYZefjkioqZ4asfSRM9M4nU3gSCmAQ,2898
78
+ huggingface_hub/inference/_generated/types/sentence_similarity.py,sha256=5mDdTop4w6CpS-SulA03UVq5lBbzHuNMe8IQsTmAUPQ,1040
79
+ huggingface_hub/inference/_generated/types/summarization.py,sha256=eMJvNJmxdImVXLLMADmyDeB1YhJbN3Qd_fC6lPB7mTM,1481
80
+ huggingface_hub/inference/_generated/types/table_question_answering.py,sha256=kzT-BRnX6AwrkMqcofUZHLccxQPteg5wsJjfd9z5PjI,2281
81
+ huggingface_hub/inference/_generated/types/text2text_generation.py,sha256=S9as2uJKqCmRht_dFGws-KwQwEq1hD6w3gSLiGTMERI,1603
82
+ huggingface_hub/inference/_generated/types/text_classification.py,sha256=FarAjygLEfPofLfKeabzJ7PKEBItlHGoUNUOzyLRpL4,1445
83
+ huggingface_hub/inference/_generated/types/text_generation.py,sha256=g9pLc5XrWc1Ir0nmQ4xTa4ZauKHIJ9Pr7yM1FmZkX0Y,5916
84
+ huggingface_hub/inference/_generated/types/text_to_audio.py,sha256=1HR9Q6s9MXqtKGTvHPLGVMum5-eg7O-Pgv6Nd0v8_HU,4741
85
+ huggingface_hub/inference/_generated/types/text_to_image.py,sha256=sGGi1Fa0n5Pmd6G3I-F2SBJcJ1M7Gmqnng6sfi0AVzs,1903
86
+ huggingface_hub/inference/_generated/types/text_to_speech.py,sha256=ROFuR32ijROCeqbv81Jos0lmaA8SRWyIUsWrdD4yWow,4760
87
+ huggingface_hub/inference/_generated/types/text_to_video.py,sha256=xjC9Vp3eovuKEk7qhIeeC8VNJG8W0Kr8PEnOwOC1Ga4,1784
88
+ huggingface_hub/inference/_generated/types/token_classification.py,sha256=bpRwy_1knC11auZaeoVrCyYWBwyJLLKeiS-ypNkDTT8,1909
89
+ huggingface_hub/inference/_generated/types/translation.py,sha256=jfeWNGkZInGTOWP-Tq2dl1rGa8xuUQvZ40PxuOrsBpE,1757
90
+ huggingface_hub/inference/_generated/types/video_classification.py,sha256=TyydjQw2NRLK9sDGzJUVnkDeo848ebmCx588Ur8I9q0,1680
91
+ huggingface_hub/inference/_generated/types/visual_question_answering.py,sha256=AWrQ6qo4gZa3PGedaNpzDFqx5yOYyjhnUB6iuZEj_uo,1673
92
+ huggingface_hub/inference/_generated/types/zero_shot_classification.py,sha256=-PRiAdpXN0wxRrSVe3z8byEvuxcNby89mASU9CbfVzU,1732
93
+ huggingface_hub/inference/_generated/types/zero_shot_image_classification.py,sha256=1alzatw0RA88YUuHfrhRWQ5-Fix-iO3KcxfJV3WQB50,1481
94
+ huggingface_hub/inference/_generated/types/zero_shot_object_detection.py,sha256=sjdpVUN5zW9aYBymLVUs6i5HVk2qkUBO9ysEjHmsXVM,1605
95
+ huggingface_hub/inference/_mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ huggingface_hub/inference/_mcp/_cli_hacks.py,sha256=KX9HZJPa1p8ngY3mtYGGlVUXfg4vYbbBRs-8HLToP04,3284
97
+ huggingface_hub/inference/_mcp/agent.py,sha256=EgucIvjXsGqLq78oJ9WRLU19Wm1pcqGdeZKzxOoPWeE,4269
98
+ huggingface_hub/inference/_mcp/cli.py,sha256=AmSUT6wXlE6EWmI0SfQgTWYnL07322zGwwk2yMZZlBc,9640
99
+ huggingface_hub/inference/_mcp/constants.py,sha256=Ws8BujjgZWb5kPAVm4GLE_Rqse63MszHp863EWwoPCI,2487
100
+ huggingface_hub/inference/_mcp/mcp_client.py,sha256=xEBmEx8s4oLSBb5aN3EzXoqYCM2haglOltCaGyTaI98,17204
101
+ huggingface_hub/inference/_mcp/types.py,sha256=yHNfPsM9MhD06oeKdkbmrBsW-3WhUeqA26fyfRfx_bk,929
102
+ huggingface_hub/inference/_mcp/utils.py,sha256=6XBYLikJ8lknx-k1QaG_uVoVYZ0yMzyo6WgtGp7Zdds,4175
103
+ huggingface_hub/inference/_providers/__init__.py,sha256=UWL_VKr95V7l5sEkr7PYQ9O3fXHkru-6gfzHR0WUzlo,8348
104
+ huggingface_hub/inference/_providers/_common.py,sha256=lblg7JSkOns7SqxtYqwa4xHrHML2dCCGcjolAfQ-YZk,12302
105
+ huggingface_hub/inference/_providers/black_forest_labs.py,sha256=vkjK_-4epSJa2-fLnbcXFzPAgQsGKhykKwd9Np-V2iw,2846
106
+ huggingface_hub/inference/_providers/cerebras.py,sha256=QOJ-1U-os7uE7p6eUnn_P_APq-yQhx28be7c3Tq2EuA,210
107
+ huggingface_hub/inference/_providers/cohere.py,sha256=GqUyCR4j6Re-_27ItwQF2p89Yya4e__EWDP9hTSs9w0,1247
108
+ huggingface_hub/inference/_providers/fal_ai.py,sha256=XL1mZxsE6pC4xux2WinXbpwaqIMBErqXPO9uGHgupvU,9874
109
+ huggingface_hub/inference/_providers/featherless_ai.py,sha256=SceM3VsgzDSaCnzVxTFK6JepHaGStptdLlwrX-zsM2g,1376
110
+ huggingface_hub/inference/_providers/fireworks_ai.py,sha256=YfxC8wMU38qpv6xFc5HnHf6qK4x64nt-iwEDTip4C_U,1209
111
+ huggingface_hub/inference/_providers/groq.py,sha256=JTk2JV4ZOlaohho7zLAFQtk92kGVsPmLJ1hmzcwsqvQ,315
112
+ huggingface_hub/inference/_providers/hf_inference.py,sha256=dp15WQQNdbIJhLiRvH3PA651xdf7OjMx3R_1bjKqLxw,9534
113
+ huggingface_hub/inference/_providers/hyperbolic.py,sha256=LiAAiW7diy-ctrDKNYO_2N4Ght9wnvvD7hMo2NYbsNg,1979
114
+ huggingface_hub/inference/_providers/nebius.py,sha256=NQDJoNbFd9FPBA5yWTb_C42NoMeV8edpZCTRoXqtDOM,3574
115
+ huggingface_hub/inference/_providers/novita.py,sha256=AN4csxwKbRvNiaK87o9xVp9krL6mHPk6iv5iat87skA,2508
116
+ huggingface_hub/inference/_providers/nscale.py,sha256=RkyvmYtQbs2RPenF_pxDPMUMZM_botT21zqfVe2hT5Y,1796
117
+ huggingface_hub/inference/_providers/openai.py,sha256=GCVYeNdjWIgpQQ7E_Xv8IebmdhTi0S6WfFosz3nLtps,1089
118
+ huggingface_hub/inference/_providers/replicate.py,sha256=MBvjI-4IH8Antqr_8c3MRrBjAzElA3sAmEzeRVpIsPI,3814
119
+ huggingface_hub/inference/_providers/sambanova.py,sha256=t-J89tab8wut62jXSXl7pAK5mCrovwdgtvbDYK1DHis,2031
120
+ huggingface_hub/inference/_providers/together.py,sha256=q32zFvXhmRogWXMSaEFVYS8m9blXI_oy7KPdeal7Wwg,3433
121
+ huggingface_hub/serialization/__init__.py,sha256=jCiw_vVQYW52gwVfWiqgocf2Q19kGTQlRGVpf-4SLP8,963
122
+ huggingface_hub/serialization/_base.py,sha256=EeHZchLgrkO1w3Mwc0LAY8itmrS1F7-Gd6C6l1rThU4,8114
123
+ huggingface_hub/serialization/_dduf.py,sha256=eyUREtvL7od9SSYKrGcCayF29w3xcP1qXTx7RntWp9k,15411
124
+ huggingface_hub/serialization/_torch.py,sha256=IYTjHRgm2o5MQVF2n-4dKC0K6hEW-z-DFlsSRiPX2bI,45177
125
+ huggingface_hub/templates/datasetcard_template.md,sha256=W-EMqR6wndbrnZorkVv56URWPG49l7MATGeI015kTvs,5503
126
+ huggingface_hub/templates/modelcard_template.md,sha256=4AqArS3cqdtbit5Bo-DhjcnDFR-pza5hErLLTPM4Yuc,6870
127
+ huggingface_hub/utils/__init__.py,sha256=rHuaP3vQkaSEYdBxgP8a0X8h1VJi4ihwFr0nty72jD8,3821
128
+ huggingface_hub/utils/_auth.py,sha256=TAz8pjk1lP7gseit8Trl2LygKun9unMEBWg_36EeDkA,8280
129
+ huggingface_hub/utils/_cache_assets.py,sha256=kai77HPQMfYpROouMBQCr_gdBCaeTm996Sqj0dExbNg,5728
130
+ huggingface_hub/utils/_cache_manager.py,sha256=d9WULNC7NtUJgkDTbNPVpp5JFkQltkdpszLkRgA3Z5s,34490
131
+ huggingface_hub/utils/_chunk_utils.py,sha256=kRCaj5228_vKcyLWspd8Xq01f17Jz6ds5Sr9ed5d_RU,2130
132
+ huggingface_hub/utils/_datetime.py,sha256=kCS5jaKV25kOncX1xujbXsz5iDLcjLcLw85semGNzxQ,2770
133
+ huggingface_hub/utils/_deprecation.py,sha256=4tWi3vBSdvnhA0z_Op-tkAQ0xrJ4TUb0HbPhMiXUnOs,4872
134
+ huggingface_hub/utils/_dotenv.py,sha256=2LLdzpA-LzLxO15GLb9WKT5IGrTurIRmFPrMX1yDzsU,2011
135
+ huggingface_hub/utils/_experimental.py,sha256=3-c8irbn9sJr2CwWbzhGkIrdXKg8_x7BifhHFy32ei8,2470
136
+ huggingface_hub/utils/_fixes.py,sha256=xQZzfwLqZV8-gNcw9mrZ-M1acA6NZHszI_-cSZIWN-U,3978
137
+ huggingface_hub/utils/_git_credential.py,sha256=4B77QzeiPxCwK6BWZgUc1avzRKpna3wYlhVg7AuSCzA,4613
138
+ huggingface_hub/utils/_headers.py,sha256=k_ApvA8fJGHc0yNp2IFY8wySM9MQ5UZEpjr1g-fpRJ4,8060
139
+ huggingface_hub/utils/_http.py,sha256=DBu0ARYfIdC3WwxTy_Hgm-ZNzbxuOuiAaJltN1meDvA,31163
140
+ huggingface_hub/utils/_lfs.py,sha256=EC0Oz6Wiwl8foRNkUOzrETXzAWlbgpnpxo5a410ovFY,3957
141
+ huggingface_hub/utils/_pagination.py,sha256=wEHEWhCu9vN5pv51t7ixSGe13g63kS6AJM4P53eY9M4,1894
142
+ huggingface_hub/utils/_paths.py,sha256=WCR2WbqDJLdNlU4XZNXXNmGct3OiDwPesGYrq41T2wE,5036
143
+ huggingface_hub/utils/_runtime.py,sha256=ppfRLzIGTLnkavjA3w63xOpj562byGTe-RZbcziJ-MQ,11467
144
+ huggingface_hub/utils/_safetensors.py,sha256=2_xbCsDPsCwR1tyBjJ5MoOHsX4ksocjzc4jS7oGe7_s,4439
145
+ huggingface_hub/utils/_subprocess.py,sha256=9qDWT1a2QF2TmXOQJDlPK6LwzYl9XjXeRadQPn15U14,4612
146
+ huggingface_hub/utils/_telemetry.py,sha256=a7t0jaOUPVNxbDWi4KQgVf8vSpZv0I-tK2HwlAowvEE,4884
147
+ huggingface_hub/utils/_typing.py,sha256=cC9p6E8hG2LId8sFWJ9H-cpQozv3asuoww_XiA1-XWI,3617
148
+ huggingface_hub/utils/_validators.py,sha256=Cf0ovPuhiOICoYIIks83rNL7x5N-PVZrotk87HzKyTM,8361
149
+ huggingface_hub/utils/_xet.py,sha256=P9b4lc4bJfOSZ7OVO-fg26_ayN0ESb_f1nQ7Bx9ZLfg,7297
150
+ huggingface_hub/utils/_xet_progress_reporting.py,sha256=bxwanhLxigDASflFZVt7S8eENIviguyVg1Q9vFtmDf8,6169
151
+ huggingface_hub/utils/endpoint_helpers.py,sha256=9VtIAlxQ5H_4y30sjCAgbu7XCqAtNLC7aRYxaNn0hLI,2366
152
+ huggingface_hub/utils/insecure_hashlib.py,sha256=z3dVUFvdBZ8kQI_8Vzvvlr3ims-EBiY-SYPdnzIKOkw,1008
153
+ huggingface_hub/utils/logging.py,sha256=0A8fF1yh3L9Ka_bCDX2ml4U5Ht0tY8Dr3JcbRvWFuwo,4909
154
+ huggingface_hub/utils/sha.py,sha256=OFnNGCba0sNcT2gUwaVCJnldxlltrHHe0DS_PCpV3C4,2134
155
+ huggingface_hub/utils/tqdm.py,sha256=-9gfgNA8bg5v5YBToSuB6noClI3a6YaGeFZP61IWmeY,10662
156
+ huggingface_hub-1.0.0rc0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
157
+ huggingface_hub-1.0.0rc0.dist-info/METADATA,sha256=-4f1m9oenCxTuOYpZXqbcg7ZQ-5W1a3XzM21It9lhNw,13960
158
+ huggingface_hub-1.0.0rc0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
159
+ huggingface_hub-1.0.0rc0.dist-info/entry_points.txt,sha256=HIzLhjwPTO7U_ncpW4AkmzAuaadr1ajmYagW5mdb5TM,217
160
+ huggingface_hub-1.0.0rc0.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
161
+ huggingface_hub-1.0.0rc0.dist-info/RECORD,,