huggingface-hub 0.31.4__py3-none-any.whl → 0.32.0rc1__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 (41) hide show
  1. huggingface_hub/__init__.py +42 -4
  2. huggingface_hub/_local_folder.py +8 -0
  3. huggingface_hub/_oauth.py +464 -0
  4. huggingface_hub/_snapshot_download.py +11 -3
  5. huggingface_hub/_upload_large_folder.py +16 -36
  6. huggingface_hub/commands/huggingface_cli.py +2 -0
  7. huggingface_hub/commands/repo.py +147 -0
  8. huggingface_hub/commands/user.py +2 -108
  9. huggingface_hub/constants.py +9 -1
  10. huggingface_hub/dataclasses.py +2 -2
  11. huggingface_hub/file_download.py +13 -11
  12. huggingface_hub/hf_api.py +48 -19
  13. huggingface_hub/hub_mixin.py +2 -2
  14. huggingface_hub/inference/_client.py +8 -7
  15. huggingface_hub/inference/_generated/_async_client.py +8 -7
  16. huggingface_hub/inference/_generated/types/__init__.py +4 -1
  17. huggingface_hub/inference/_generated/types/chat_completion.py +43 -9
  18. huggingface_hub/inference/_mcp/__init__.py +0 -0
  19. huggingface_hub/inference/_mcp/agent.py +99 -0
  20. huggingface_hub/inference/_mcp/cli.py +154 -0
  21. huggingface_hub/inference/_mcp/constants.py +80 -0
  22. huggingface_hub/inference/_mcp/mcp_client.py +322 -0
  23. huggingface_hub/inference/_mcp/utils.py +123 -0
  24. huggingface_hub/inference/_providers/__init__.py +13 -1
  25. huggingface_hub/inference/_providers/_common.py +1 -0
  26. huggingface_hub/inference/_providers/cerebras.py +1 -1
  27. huggingface_hub/inference/_providers/cohere.py +20 -3
  28. huggingface_hub/inference/_providers/fireworks_ai.py +18 -0
  29. huggingface_hub/inference/_providers/hf_inference.py +8 -1
  30. huggingface_hub/inference/_providers/nebius.py +28 -0
  31. huggingface_hub/inference/_providers/nscale.py +44 -0
  32. huggingface_hub/inference/_providers/sambanova.py +14 -0
  33. huggingface_hub/inference/_providers/together.py +15 -0
  34. huggingface_hub/utils/_experimental.py +7 -5
  35. huggingface_hub/utils/insecure_hashlib.py +8 -4
  36. {huggingface_hub-0.31.4.dist-info → huggingface_hub-0.32.0rc1.dist-info}/METADATA +30 -8
  37. {huggingface_hub-0.31.4.dist-info → huggingface_hub-0.32.0rc1.dist-info}/RECORD +41 -32
  38. {huggingface_hub-0.31.4.dist-info → huggingface_hub-0.32.0rc1.dist-info}/entry_points.txt +1 -0
  39. {huggingface_hub-0.31.4.dist-info → huggingface_hub-0.32.0rc1.dist-info}/LICENSE +0 -0
  40. {huggingface_hub-0.31.4.dist-info → huggingface_hub-0.32.0rc1.dist-info}/WHEEL +0 -0
  41. {huggingface_hub-0.31.4.dist-info → huggingface_hub-0.32.0rc1.dist-info}/top_level.txt +0 -0
@@ -9,6 +9,20 @@ class SambanovaConversationalTask(BaseConversationalTask):
9
9
  def __init__(self):
10
10
  super().__init__(provider="sambanova", base_url="https://api.sambanova.ai")
11
11
 
12
+ def _prepare_payload_as_dict(
13
+ self, inputs: Any, parameters: Dict, provider_mapping_info: InferenceProviderMapping
14
+ ) -> Optional[Dict]:
15
+ response_format_config = parameters.get("response_format")
16
+ if isinstance(response_format_config, dict):
17
+ if response_format_config.get("type") == "json_schema":
18
+ json_schema_config = response_format_config.get("json_schema", {})
19
+ strict = json_schema_config.get("strict")
20
+ if isinstance(json_schema_config, dict) and (strict is True or strict is None):
21
+ json_schema_config["strict"] = False
22
+
23
+ payload = super()._prepare_payload_as_dict(inputs, parameters, provider_mapping_info)
24
+ return payload
25
+
12
26
 
13
27
  class SambanovaFeatureExtractionTask(TaskProviderHelper):
14
28
  def __init__(self):
@@ -51,6 +51,21 @@ class TogetherConversationalTask(BaseConversationalTask):
51
51
  def __init__(self):
52
52
  super().__init__(provider=_PROVIDER, base_url=_BASE_URL)
53
53
 
54
+ def _prepare_payload_as_dict(
55
+ self, inputs: Any, parameters: Dict, provider_mapping_info: InferenceProviderMapping
56
+ ) -> Optional[Dict]:
57
+ payload = super()._prepare_payload_as_dict(inputs, parameters, provider_mapping_info)
58
+ response_format = parameters.get("response_format")
59
+ if isinstance(response_format, dict) and response_format.get("type") == "json_schema":
60
+ json_schema_details = response_format.get("json_schema")
61
+ if isinstance(json_schema_details, dict) and "schema" in json_schema_details:
62
+ payload["response_format"] = { # type: ignore [index]
63
+ "type": "json_object",
64
+ "schema": json_schema_details["schema"],
65
+ }
66
+
67
+ return payload
68
+
54
69
 
55
70
  class TogetherTextToImageTask(TogetherTask):
56
71
  def __init__(self):
@@ -24,8 +24,10 @@ from .. import constants
24
24
  def experimental(fn: Callable) -> Callable:
25
25
  """Decorator to flag a feature as experimental.
26
26
 
27
- An experimental feature trigger a warning when used as it might be subject to breaking changes in the future.
28
- Warnings can be disabled by setting the environment variable `HF_EXPERIMENTAL_WARNING` to `0`.
27
+ An experimental feature triggers a warning when used as it might be subject to breaking changes without prior notice
28
+ in the future.
29
+
30
+ Warnings can be disabled by setting `HF_HUB_DISABLE_EXPERIMENTAL_WARNING=1` as environment variable.
29
31
 
30
32
  Args:
31
33
  fn (`Callable`):
@@ -44,8 +46,8 @@ def experimental(fn: Callable) -> Callable:
44
46
  ... print("Hello world!")
45
47
 
46
48
  >>> my_function()
47
- UserWarning: 'my_function' is experimental and might be subject to breaking changes in the future. You can disable
48
- this warning by setting `HF_HUB_DISABLE_EXPERIMENTAL_WARNING=1` as environment variable.
49
+ UserWarning: 'my_function' is experimental and might be subject to breaking changes in the future without prior
50
+ notice. You can disable this warning by setting `HF_HUB_DISABLE_EXPERIMENTAL_WARNING=1` as environment variable.
49
51
  Hello world!
50
52
  ```
51
53
  """
@@ -56,7 +58,7 @@ def experimental(fn: Callable) -> Callable:
56
58
  def _inner_fn(*args, **kwargs):
57
59
  if not constants.HF_HUB_DISABLE_EXPERIMENTAL_WARNING:
58
60
  warnings.warn(
59
- f"'{name}' is experimental and might be subject to breaking changes in the future."
61
+ f"'{name}' is experimental and might be subject to breaking changes in the future without prior notice."
60
62
  " You can disable this warning by setting `HF_HUB_DISABLE_EXPERIMENTAL_WARNING=1` as environment"
61
63
  " variable.",
62
64
  UserWarning,
@@ -28,7 +28,11 @@ import hashlib
28
28
  import sys
29
29
 
30
30
 
31
- _kwargs = {"usedforsecurity": False} if sys.version_info >= (3, 9) else {}
32
- md5 = functools.partial(hashlib.md5, **_kwargs)
33
- sha1 = functools.partial(hashlib.sha1, **_kwargs)
34
- sha256 = functools.partial(hashlib.sha256, **_kwargs)
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huggingface-hub
3
- Version: 0.31.4
3
+ Version: 0.32.0rc1
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.
@@ -32,9 +32,14 @@ Requires-Dist: pyyaml>=5.1
32
32
  Requires-Dist: requests
33
33
  Requires-Dist: tqdm>=4.42.1
34
34
  Requires-Dist: typing-extensions>=3.7.4.3
35
+ Requires-Dist: hf-xet<2.0.0,>=1.1.2; platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "arm64" or platform_machine == "aarch64"
35
36
  Provides-Extra: all
36
37
  Requires-Dist: InquirerPy==0.3.4; extra == "all"
37
38
  Requires-Dist: aiohttp; extra == "all"
39
+ Requires-Dist: authlib>=1.3.2; extra == "all"
40
+ Requires-Dist: fastapi; extra == "all"
41
+ Requires-Dist: httpx; extra == "all"
42
+ Requires-Dist: itsdangerous; extra == "all"
38
43
  Requires-Dist: jedi; extra == "all"
39
44
  Requires-Dist: Jinja2; extra == "all"
40
45
  Requires-Dist: pytest<8.2.2,>=8.1.1; extra == "all"
@@ -50,9 +55,7 @@ Requires-Dist: soundfile; extra == "all"
50
55
  Requires-Dist: Pillow; extra == "all"
51
56
  Requires-Dist: gradio>=4.0.0; extra == "all"
52
57
  Requires-Dist: numpy; extra == "all"
53
- Requires-Dist: fastapi; extra == "all"
54
58
  Requires-Dist: ruff>=0.9.0; extra == "all"
55
- Requires-Dist: mypy==1.5.1; extra == "all"
56
59
  Requires-Dist: libcst==1.4.0; extra == "all"
57
60
  Requires-Dist: typing-extensions>=4.8.0; extra == "all"
58
61
  Requires-Dist: types-PyYAML; extra == "all"
@@ -61,11 +64,17 @@ Requires-Dist: types-simplejson; extra == "all"
61
64
  Requires-Dist: types-toml; extra == "all"
62
65
  Requires-Dist: types-tqdm; extra == "all"
63
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"
64
69
  Provides-Extra: cli
65
70
  Requires-Dist: InquirerPy==0.3.4; extra == "cli"
66
71
  Provides-Extra: dev
67
72
  Requires-Dist: InquirerPy==0.3.4; extra == "dev"
68
73
  Requires-Dist: aiohttp; extra == "dev"
74
+ Requires-Dist: authlib>=1.3.2; extra == "dev"
75
+ Requires-Dist: fastapi; extra == "dev"
76
+ Requires-Dist: httpx; extra == "dev"
77
+ Requires-Dist: itsdangerous; extra == "dev"
69
78
  Requires-Dist: jedi; extra == "dev"
70
79
  Requires-Dist: Jinja2; extra == "dev"
71
80
  Requires-Dist: pytest<8.2.2,>=8.1.1; extra == "dev"
@@ -81,9 +90,7 @@ Requires-Dist: soundfile; extra == "dev"
81
90
  Requires-Dist: Pillow; extra == "dev"
82
91
  Requires-Dist: gradio>=4.0.0; extra == "dev"
83
92
  Requires-Dist: numpy; extra == "dev"
84
- Requires-Dist: fastapi; extra == "dev"
85
93
  Requires-Dist: ruff>=0.9.0; extra == "dev"
86
- Requires-Dist: mypy==1.5.1; extra == "dev"
87
94
  Requires-Dist: libcst==1.4.0; extra == "dev"
88
95
  Requires-Dist: typing-extensions>=4.8.0; extra == "dev"
89
96
  Requires-Dist: types-PyYAML; extra == "dev"
@@ -92,6 +99,8 @@ Requires-Dist: types-simplejson; extra == "dev"
92
99
  Requires-Dist: types-toml; extra == "dev"
93
100
  Requires-Dist: types-tqdm; extra == "dev"
94
101
  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"
95
104
  Provides-Extra: fastai
96
105
  Requires-Dist: toml; extra == "fastai"
97
106
  Requires-Dist: fastai>=2.4; extra == "fastai"
@@ -99,13 +108,23 @@ Requires-Dist: fastcore>=1.3.27; extra == "fastai"
99
108
  Provides-Extra: hf_transfer
100
109
  Requires-Dist: hf-transfer>=0.1.4; extra == "hf-transfer"
101
110
  Provides-Extra: hf_xet
102
- Requires-Dist: hf-xet<2.0.0,>=1.1.1; extra == "hf-xet"
111
+ Requires-Dist: hf-xet<2.0.0,>=1.1.2; extra == "hf-xet"
103
112
  Provides-Extra: inference
104
113
  Requires-Dist: aiohttp; extra == "inference"
114
+ Provides-Extra: mcp
115
+ Requires-Dist: mcp>=1.8.0; extra == "mcp"
116
+ Requires-Dist: typer; extra == "mcp"
117
+ Requires-Dist: aiohttp; extra == "mcp"
118
+ Provides-Extra: oauth
119
+ Requires-Dist: authlib>=1.3.2; extra == "oauth"
120
+ Requires-Dist: fastapi; extra == "oauth"
121
+ Requires-Dist: httpx; extra == "oauth"
122
+ Requires-Dist: itsdangerous; extra == "oauth"
105
123
  Provides-Extra: quality
106
124
  Requires-Dist: ruff>=0.9.0; extra == "quality"
107
- Requires-Dist: mypy==1.5.1; extra == "quality"
108
125
  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"
109
128
  Provides-Extra: tensorflow
110
129
  Requires-Dist: tensorflow; extra == "tensorflow"
111
130
  Requires-Dist: pydot; extra == "tensorflow"
@@ -116,6 +135,10 @@ Requires-Dist: keras<3.0; extra == "tensorflow-testing"
116
135
  Provides-Extra: testing
117
136
  Requires-Dist: InquirerPy==0.3.4; extra == "testing"
118
137
  Requires-Dist: aiohttp; extra == "testing"
138
+ Requires-Dist: authlib>=1.3.2; extra == "testing"
139
+ Requires-Dist: fastapi; extra == "testing"
140
+ Requires-Dist: httpx; extra == "testing"
141
+ Requires-Dist: itsdangerous; extra == "testing"
119
142
  Requires-Dist: jedi; extra == "testing"
120
143
  Requires-Dist: Jinja2; extra == "testing"
121
144
  Requires-Dist: pytest<8.2.2,>=8.1.1; extra == "testing"
@@ -131,7 +154,6 @@ Requires-Dist: soundfile; extra == "testing"
131
154
  Requires-Dist: Pillow; extra == "testing"
132
155
  Requires-Dist: gradio>=4.0.0; extra == "testing"
133
156
  Requires-Dist: numpy; extra == "testing"
134
- Requires-Dist: fastapi; extra == "testing"
135
157
  Provides-Extra: torch
136
158
  Requires-Dist: torch; extra == "torch"
137
159
  Requires-Dist: safetensors[torch]; extra == "torch"
@@ -1,24 +1,25 @@
1
- huggingface_hub/__init__.py,sha256=2VWIBxiEg99DVr7A7njOdsnJPgm3Y1Jb_4YePTfA1dk,49368
1
+ huggingface_hub/__init__.py,sha256=YkOYKjWB2DkIuauxhRnt48FZYg296N2BWwxV2FKVaj4,50648
2
2
  huggingface_hub/_commit_api.py,sha256=ZbmuIhFdF8B3F_cvGtxorka7MmIQOk8oBkCtYltnCvI,39456
3
3
  huggingface_hub/_commit_scheduler.py,sha256=tfIoO1xWHjTJ6qy6VS6HIoymDycFPg0d6pBSZprrU2U,14679
4
4
  huggingface_hub/_inference_endpoints.py,sha256=qXR0utAYRaEWTI8EXzAsDpVDcYpp8bJPEBbcOxRS52E,17413
5
- huggingface_hub/_local_folder.py,sha256=ScpCJUITFC0LMkiebyaGiBhAU6fvQK8w7pVV6L8rhmc,16575
5
+ huggingface_hub/_local_folder.py,sha256=7Uce_z51D7ZZ58GF7eUOtcq1cCuYQMOEF-W4p85iQTo,16885
6
6
  huggingface_hub/_login.py,sha256=ssf4viT5BhHI2ZidnSuAZcrwSxzaLOrf8xgRVKuvu_A,20298
7
- huggingface_hub/_snapshot_download.py,sha256=oL2TgO0RpH_KJOQpKF-ttvPRDldeFc7JYvBPktXb_ps,15015
7
+ huggingface_hub/_oauth.py,sha256=YNbSSZCNZLiCqwMoYboSAfI3XjEsbyAADJcwgRAdhBc,18802
8
+ huggingface_hub/_snapshot_download.py,sha256=RqhfsESBHwXAoZxVvw68W7vGhmXSbl7RoEFOPLvw3Ls,15186
8
9
  huggingface_hub/_space_api.py,sha256=jb6rF8qLtjaNU12D-8ygAPM26xDiHCu8CHXHowhGTmg,5470
9
10
  huggingface_hub/_tensorboard_logger.py,sha256=ZkYcAUiRC8RGL214QUYtp58O8G5tn-HF6DCWha9imcA,8358
10
- huggingface_hub/_upload_large_folder.py,sha256=mDKZv7MIieKlTCbTv0jccHIM4smCqK-Y0ZDfMXsXTqo,24685
11
+ huggingface_hub/_upload_large_folder.py,sha256=elY5Rv2YVJECVpdZ9PM1zdO8kG-jmi8DifLOa7aC3EU,24178
11
12
  huggingface_hub/_webhooks_payload.py,sha256=Xm3KaK7tCOGBlXkuZvbym6zjHXrT1XCrbUFWuXiBmNY,3617
12
13
  huggingface_hub/_webhooks_server.py,sha256=5J63wk9MUGKBNJVsOD9i60mJ-VMp0YYmlf87vQsl-L8,15767
13
14
  huggingface_hub/community.py,sha256=4MtcoxEI9_0lmmilBEnvUEi8_O1Ivfa8p6eKxYU5-ts,12198
14
- huggingface_hub/constants.py,sha256=ZYu0fEhPhrs12BVCZ_ygCdVvil6Sz4DLq9oMFsDkzNg,9766
15
- huggingface_hub/dataclasses.py,sha256=gegl8I9N8SbGoCUAVbQejQ6CNImwzYbbDwlua5m-PH8,17170
15
+ huggingface_hub/constants.py,sha256=1RdXbeORR-21auyKLsLbOJDIC9Cd70tYEAVWzP64BJc,10239
16
+ huggingface_hub/dataclasses.py,sha256=sgPdEi2UDprhNPP2PPkiSlzsHdC1WcpwVTLwlHAEcr0,17224
16
17
  huggingface_hub/errors.py,sha256=D7Lw0Jjrf8vfmD0B26LEvg-JWkU8Zq0KDPJOzFY4QLw,11201
17
18
  huggingface_hub/fastai_utils.py,sha256=DpeH9d-6ut2k_nCAAwglM51XmRmgfbRe2SPifpVL5Yk,16745
18
- huggingface_hub/file_download.py,sha256=Kh7Lg7C-Zn2U-zhF_mLw75ifiM28b9lSIODPvO4hGlA,78453
19
- huggingface_hub/hf_api.py,sha256=RB9LjZjncC9Ox1TZPuYUL_X8-YnDhzWdg3gP0oNenb4,441435
19
+ huggingface_hub/file_download.py,sha256=R0nIB8_zG9nE0imhDmsB62r3aGLrUD3iqBhnMtNRv14,78541
20
+ huggingface_hub/hf_api.py,sha256=qZiemvNF7ltFNcfu5JTYyARzfMfrQhW3eVmfP4uoLFI,443010
20
21
  huggingface_hub/hf_file_system.py,sha256=U6IY_QLNzZfvpsbvKEiakOBS2U6cduZw5t0x8wBPUn4,47531
21
- huggingface_hub/hub_mixin.py,sha256=fdAhdDujpUBZPUB6AfzzMRBeQ_Ua9tgQkhHE_ao5n2k,38062
22
+ huggingface_hub/hub_mixin.py,sha256=LpbggOPIlr7L2QVi3DOfWsGYsde9OMlwxT5LZfcSdSQ,38115
22
23
  huggingface_hub/inference_api.py,sha256=b4-NhPSn9b44nYKV8tDKXodmE4JVdEymMWL4CVGkzlE,8323
23
24
  huggingface_hub/keras_mixin.py,sha256=3d2oW35SALXHq-WHoLD_tbq0UrcabGKj3HidtPRx51U,19574
24
25
  huggingface_hub/lfs.py,sha256=n-TIjK7J7aXG3zi__0nkd6aNkE4djOf9CD6dYQOQ5P8,16649
@@ -31,26 +32,27 @@ huggingface_hub/commands/_cli_utils.py,sha256=Nt6CjbkYqQQRuh70bUXVA6rZpbZt_Sa1Wq
31
32
  huggingface_hub/commands/delete_cache.py,sha256=6UahqCex_3qyxDltn4GcaiuwzxfInPlXCK10o33eZVU,17623
32
33
  huggingface_hub/commands/download.py,sha256=1YXKttB8YBX7SJ0Jxg0t1n8yp2BUZXtY0ck6DhCg-XE,8183
33
34
  huggingface_hub/commands/env.py,sha256=yYl4DSS14V8t244nAi0t77Izx5LIdgS_dy6xiV5VQME,1226
34
- huggingface_hub/commands/huggingface_cli.py,sha256=ZwW_nwgppyj-GA6iM3mgmbXMZ63bgtpGl_yIQDyWS4A,2414
35
+ huggingface_hub/commands/huggingface_cli.py,sha256=ZAJqalBtjhMrLm_Yk9_cP_tjVkimrLbsx_-C8E1j0A8,2523
35
36
  huggingface_hub/commands/lfs.py,sha256=xdbnNRO04UuQemEhUGT809jFgQn9Rj-SnyT_0Ph-VYg,7342
37
+ huggingface_hub/commands/repo.py,sha256=E0Nsh6bvSwllSOHWD-zUoWTNOFyYKuMTlocYswqmSAU,5923
36
38
  huggingface_hub/commands/repo_files.py,sha256=Nfv8TjuaZVOrj7TZjrojtjdD8Wf54aZvYPDEOevh7tA,4923
37
39
  huggingface_hub/commands/scan_cache.py,sha256=xdD_zRKd49hRuATyptG-zaY08h1f9CAjB5zZBKe0YEo,8563
38
40
  huggingface_hub/commands/tag.py,sha256=0LNQZyK-WKi0VIL9i1xWzKxJ1ILw1jxMF_E6t2weJss,6288
39
41
  huggingface_hub/commands/upload.py,sha256=3mcBBo2pNO99NHzNu6o-VcEHjDp7mtyQYeKE9eVao0w,14453
40
42
  huggingface_hub/commands/upload_large_folder.py,sha256=P-EO44JWVl39Ax4b0E0Z873d0a6S38Qas8P6DaL1EwI,6129
41
- huggingface_hub/commands/user.py,sha256=M6Ef045YcyV4mFCbLaTRPciQDC6xtV9MMheeen69D0E,11168
43
+ huggingface_hub/commands/user.py,sha256=_4rjCrP84KqtqCMn-r3YWLuGLrnklOWTdJFVTNFMLuU,7096
42
44
  huggingface_hub/commands/version.py,sha256=vfCJn7GO1m-DtDmbdsty8_RTVtnZ7lX6MJsx0Bf4e-s,1266
43
45
  huggingface_hub/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- huggingface_hub/inference/_client.py,sha256=Wb3ZKdJpNCCwN80mOZF3RK5eLBq6FWW1_vgYDVuAN9M,161386
46
+ huggingface_hub/inference/_client.py,sha256=o0R0Nkz11vhCjBWqDvMbGXU_MqZS1RHQOYr7QZDgML8,161570
45
47
  huggingface_hub/inference/_common.py,sha256=iwCkq2fWE1MVoPTeeXN7UN5FZi7g5fZ3K8PHSOCi5dU,14591
46
48
  huggingface_hub/inference/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- huggingface_hub/inference/_generated/_async_client.py,sha256=lFukg5o-hOr2EurwsLYTyKElo9N71y6ekyh2ODZcIdM,167546
48
- huggingface_hub/inference/_generated/types/__init__.py,sha256=--r3nBmBRtgyQR9TkdQl53_crcKYJhWfTkFK2VE2gUk,6307
49
+ huggingface_hub/inference/_generated/_async_client.py,sha256=CjGkQrFu4LX9JA056rEXmdokFmO7iZk98ND1D9ib1hg,167730
50
+ huggingface_hub/inference/_generated/types/__init__.py,sha256=qI8Eu9WcBcKhVkLli6YniGHpfiJ9MLqtzmwXX35E7bA,6443
49
51
  huggingface_hub/inference/_generated/types/audio_classification.py,sha256=Jg3mzfGhCSH6CfvVvgJSiFpkz6v4nNA0G4LJXacEgNc,1573
50
52
  huggingface_hub/inference/_generated/types/audio_to_audio.py,sha256=2Ep4WkePL7oJwcp5nRJqApwviumGHbft9HhXE9XLHj4,891
51
53
  huggingface_hub/inference/_generated/types/automatic_speech_recognition.py,sha256=8CEphr6rvRHgq1L5Md3tq14V0tEAmzJkemh1_7gSswo,5515
52
54
  huggingface_hub/inference/_generated/types/base.py,sha256=4XG49q0-2SOftYQ8HXQnWLxiJktou-a7IoG3kdOv-kg,6751
53
- huggingface_hub/inference/_generated/types/chat_completion.py,sha256=V_C-fCHBycTWlwqFsTk4KGyBQTGRbyMykyIKOh1cTfg,10242
55
+ huggingface_hub/inference/_generated/types/chat_completion.py,sha256=6EqWnpbeT0zsiLNZjoJDzrmZ34M2j01S99oMMayZg9Y,11182
54
56
  huggingface_hub/inference/_generated/types/depth_estimation.py,sha256=rcpe9MhYMeLjflOwBs3KMZPr6WjOH3FYEThStG-FJ3M,929
55
57
  huggingface_hub/inference/_generated/types/document_question_answering.py,sha256=6BEYGwJcqGlah4RBJDAvWFTEXkO0mosBiMy82432nAM,3202
56
58
  huggingface_hub/inference/_generated/types/feature_extraction.py,sha256=NMWVL_TLSG5SS5bdt1-fflkZ75UMlMKeTMtmdnUTADc,1537
@@ -78,21 +80,28 @@ huggingface_hub/inference/_generated/types/visual_question_answering.py,sha256=A
78
80
  huggingface_hub/inference/_generated/types/zero_shot_classification.py,sha256=BAiebPjsqoNa8EU35Dx0pfIv8W2c4GSl-TJckV1MaxQ,1738
79
81
  huggingface_hub/inference/_generated/types/zero_shot_image_classification.py,sha256=8J9n6VqFARkWvPfAZNWEG70AlrMGldU95EGQQwn06zI,1487
80
82
  huggingface_hub/inference/_generated/types/zero_shot_object_detection.py,sha256=GUd81LIV7oEbRWayDlAVgyLmY596r1M3AW0jXDp1yTA,1630
81
- huggingface_hub/inference/_providers/__init__.py,sha256=duCzIuoRy6YiJXlO37xXASuJiEpcccplN_69b9nANUs,7351
82
- huggingface_hub/inference/_providers/_common.py,sha256=YPt96TdVnUNrZOfe3e1wdVm6hjmH5ivz_Lg_4iU58R8,10113
83
+ huggingface_hub/inference/_mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ huggingface_hub/inference/_mcp/agent.py,sha256=RDpqy2rcVKy0euIK43OAAczLlx0UH1QIACHMFjTItq0,4077
85
+ huggingface_hub/inference/_mcp/cli.py,sha256=7vvP0TcSWOR2GBU8ApG7zpdtGI4cnB_R1ehr6XrZMdo,5177
86
+ huggingface_hub/inference/_mcp/constants.py,sha256=tE_V6qcvsmvVoJa4eg04jhoTR2Cx1cNHieY2ENrm1_M,2511
87
+ huggingface_hub/inference/_mcp/mcp_client.py,sha256=MwoovV2UTf7F8rxxQucAd4WSnIiJ71wx09QCrXDrP0Q,13477
88
+ huggingface_hub/inference/_mcp/utils.py,sha256=K7rr4FxCh9OYWwYNlnvQraNLy9y3z-5yVMBIaoCQMjA,4052
89
+ huggingface_hub/inference/_providers/__init__.py,sha256=IrLTMERrbRuPiVdBQEMK9TMvXrsGId4-u2ucMkG-vTU,7671
90
+ huggingface_hub/inference/_providers/_common.py,sha256=Octgz-PbHw62iW3Oa8rF7rxvBJR0ZmL4ouv3NoX-weE,10131
83
91
  huggingface_hub/inference/_providers/black_forest_labs.py,sha256=wO7qgRyNyrIKlZtvL3vJEbS4-D19kfoXZk6PDh1dTis,2842
84
- huggingface_hub/inference/_providers/cerebras.py,sha256=YT1yFhXvDJiKZcqcJcA_7VZJFZVkABnv6QiEb0S90rE,246
85
- huggingface_hub/inference/_providers/cohere.py,sha256=GkFsuKSaqsyfeerPx0ewv-EX44MtJ8a3XXEfmAiTpb0,419
92
+ huggingface_hub/inference/_providers/cerebras.py,sha256=QOJ-1U-os7uE7p6eUnn_P_APq-yQhx28be7c3Tq2EuA,210
93
+ huggingface_hub/inference/_providers/cohere.py,sha256=O3tC-qIUL91mx_mE8bOHCtDWcQuKOUauhUoXSUBUCZ8,1253
86
94
  huggingface_hub/inference/_providers/fal_ai.py,sha256=gGWPsvQIsuk3kTIXHwpOqA0R1ZsPEo5MYc7OwUoFjxY,7162
87
- huggingface_hub/inference/_providers/fireworks_ai.py,sha256=6uDsaxJRaN2xWNQX8u1bvF8zO-8J31TAnHdsrf_TO5g,337
88
- huggingface_hub/inference/_providers/hf_inference.py,sha256=NaCS6Q7cGjxYn61km_UBgRVuFRzZIGsnNiBZuxZPGjg,8062
95
+ huggingface_hub/inference/_providers/fireworks_ai.py,sha256=Id226ITfPkOcFMFzly3MW9l-dZl9l4qizL4JEHWkBFk,1215
96
+ huggingface_hub/inference/_providers/hf_inference.py,sha256=ZfVB6KIWvYA4aQ_R6A0OqTsLXwvBMYVxny8DKz1DVIQ,8406
89
97
  huggingface_hub/inference/_providers/hyperbolic.py,sha256=OQIBi2j3aNvuaSQ8BUK1K1PVeRXdrxc80G-6YmBa-ns,1985
90
- huggingface_hub/inference/_providers/nebius.py,sha256=9X5Er-M29sjJpeFAVuegjnd4ssRe8GQH5iAKMCkeL_E,2141
98
+ huggingface_hub/inference/_providers/nebius.py,sha256=VJpTF2JZ58rznc9wxdk-57vwF8sV2vESw_WkXjXqCho,3580
91
99
  huggingface_hub/inference/_providers/novita.py,sha256=HGVC8wPraRQUuI5uBoye1Y4Wqe4X116B71GhhbWy5yM,2514
100
+ huggingface_hub/inference/_providers/nscale.py,sha256=qWUsWinQmUbNUqehyKn34tVoWehu8gd-OZ2F4uj2SWM,1802
92
101
  huggingface_hub/inference/_providers/openai.py,sha256=2TJPEwcbq1DKPYKB8roJKnMDiXTcCEquSqGPmibc6tQ,1048
93
102
  huggingface_hub/inference/_providers/replicate.py,sha256=zFQnnAaNmRruqTvZUG_8It8xkKePHLGKRomSkwjrUuk,3157
94
- huggingface_hub/inference/_providers/sambanova.py,sha256=yDPORdQnkGKSkbgrOLQEz_kGv5ntp_k0lonsKX3TIeM,1284
95
- huggingface_hub/inference/_providers/together.py,sha256=5p-HUKzNXlA4r2dD_TMnQlo8Mq_ZUGz_4p9fscC3hGQ,2661
103
+ huggingface_hub/inference/_providers/sambanova.py,sha256=Unt3H3jr_kgI9vzRjmmW1DFyoEuPkKCcgIIloiOj3j8,2037
104
+ huggingface_hub/inference/_providers/together.py,sha256=KHF19CS3qXS7G1-CwcMiD8Z5wzPKEKi4F2DzqAthbBE,3439
96
105
  huggingface_hub/serialization/__init__.py,sha256=kn-Fa-m4FzMnN8lNsF-SwFcfzug4CucexybGKyvZ8S0,1041
97
106
  huggingface_hub/serialization/_base.py,sha256=Df3GwGR9NzeK_SD75prXLucJAzPiNPgHbgXSw-_LTk8,8126
98
107
  huggingface_hub/serialization/_dduf.py,sha256=s42239rLiHwaJE36QDEmS5GH7DSmQ__BffiHJO5RjIg,15424
@@ -107,7 +116,7 @@ huggingface_hub/utils/_cache_manager.py,sha256=GhiuVQsEkWU55uYkkgiGJV1_naeciyk8u
107
116
  huggingface_hub/utils/_chunk_utils.py,sha256=kRCaj5228_vKcyLWspd8Xq01f17Jz6ds5Sr9ed5d_RU,2130
108
117
  huggingface_hub/utils/_datetime.py,sha256=kCS5jaKV25kOncX1xujbXsz5iDLcjLcLw85semGNzxQ,2770
109
118
  huggingface_hub/utils/_deprecation.py,sha256=HZhRGGUX_QMKBBBwHHlffLtmCSK01TOpeXHefZbPfwI,4872
110
- huggingface_hub/utils/_experimental.py,sha256=crCPH6k6-11wwH2GZuZzZzZbjUotay49ywV1SSJhMHM,2395
119
+ huggingface_hub/utils/_experimental.py,sha256=3-c8irbn9sJr2CwWbzhGkIrdXKg8_x7BifhHFy32ei8,2470
111
120
  huggingface_hub/utils/_fixes.py,sha256=xQV1QkUn2WpLqLjtXNiyn9gh-454K6AF-Q3kwkYAQD8,4437
112
121
  huggingface_hub/utils/_git_credential.py,sha256=SDdsiREr1TcAR2Ze2TB0E5cYzVJgvDZrs60od9lAsMc,4596
113
122
  huggingface_hub/utils/_headers.py,sha256=3tKQN5ciAt1683nZXEpPyQOS7oWnfYI0t_N_aJU-bms,8876
@@ -124,13 +133,13 @@ huggingface_hub/utils/_typing.py,sha256=Dgp6TQUlpzStfVLoSvXHCBP4b3NzHZ8E0Gg9mYAo
124
133
  huggingface_hub/utils/_validators.py,sha256=dDsVG31iooTYrIyi5Vwr1DukL0fEmJwu3ceVNduhsuE,9204
125
134
  huggingface_hub/utils/_xet.py,sha256=JXgVCli8lD7O1MsvkgqnWY6S9giq1XMrHmtOPPeLmDQ,7020
126
135
  huggingface_hub/utils/endpoint_helpers.py,sha256=9VtIAlxQ5H_4y30sjCAgbu7XCqAtNLC7aRYxaNn0hLI,2366
127
- huggingface_hub/utils/insecure_hashlib.py,sha256=OjxlvtSQHpbLp9PWSrXBDJ0wHjxCBU-SQJgucEEXDbU,1058
136
+ huggingface_hub/utils/insecure_hashlib.py,sha256=iAaepavFZ5Dhfa5n8KozRfQprKmvcjSnt3X58OUl9fQ,1142
128
137
  huggingface_hub/utils/logging.py,sha256=0A8fF1yh3L9Ka_bCDX2ml4U5Ht0tY8Dr3JcbRvWFuwo,4909
129
138
  huggingface_hub/utils/sha.py,sha256=OFnNGCba0sNcT2gUwaVCJnldxlltrHHe0DS_PCpV3C4,2134
130
139
  huggingface_hub/utils/tqdm.py,sha256=xAKcyfnNHsZ7L09WuEM5Ew5-MDhiahLACbbN2zMmcLs,10671
131
- huggingface_hub-0.31.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
132
- huggingface_hub-0.31.4.dist-info/METADATA,sha256=naPG2RYybD8kKAtDWELKWHNXZteaBG1RNXe-X9Jt98A,13558
133
- huggingface_hub-0.31.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
134
- huggingface_hub-0.31.4.dist-info/entry_points.txt,sha256=Y3Z2L02rBG7va_iE6RPXolIgwOdwUFONyRN3kXMxZ0g,131
135
- huggingface_hub-0.31.4.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
136
- huggingface_hub-0.31.4.dist-info/RECORD,,
140
+ huggingface_hub-0.32.0rc1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
141
+ huggingface_hub-0.32.0rc1.dist-info/METADATA,sha256=vJ0eUDTcx6H_mI1vNATLw1wgnIl0BeHmg-yVvYNwahY,14780
142
+ huggingface_hub-0.32.0rc1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
143
+ huggingface_hub-0.32.0rc1.dist-info/entry_points.txt,sha256=uelw0-fu0kd-CxIuOsR1bsjLIFnAaMQ6AIqluJYDhQw,184
144
+ huggingface_hub-0.32.0rc1.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
145
+ huggingface_hub-0.32.0rc1.dist-info/RECORD,,
@@ -1,5 +1,6 @@
1
1
  [console_scripts]
2
2
  huggingface-cli = huggingface_hub.commands.huggingface_cli:main
3
+ tiny-agents = huggingface_hub.inference._mcp.cli:app
3
4
 
4
5
  [fsspec.specs]
5
6
  hf=huggingface_hub.HfFileSystem