File size: 16,889 Bytes
5e9fb2f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | # Copyright 2025 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Contains commands to interact with repositories on the Hugging Face Hub.
Usage:
# create a new dataset repo on the Hub
hf repos create my-cool-dataset --repo-type=dataset
# create a private model repo on the Hub
hf repos create my-cool-model --private
# delete files from a repo on the Hub
hf repos delete-files my-model file.txt
"""
import enum
from typing import Annotated
import typer
from huggingface_hub import SpaceHardware, SpaceStorage
from huggingface_hub.errors import CLIError, HfHubHTTPError, RepositoryNotFoundError, RevisionNotFoundError
from ._cli_utils import (
EnvFileOpt,
EnvOpt,
FormatWithAutoOpt,
PrivateOpt,
RepoIdArg,
RepoType,
RepoTypeOpt,
RevisionOpt,
SecretsFileOpt,
SecretsOpt,
TokenOpt,
VolumesOpt,
env_map_to_key_value_list,
get_hf_api,
parse_env_map,
parse_volumes,
typer_factory,
)
from ._output import OutputFormatWithAuto, out
repos_cli = typer_factory(help="Manage repos on the Hub.")
@repos_cli.callback(invoke_without_command=True)
def _repos_callback(ctx: typer.Context) -> None:
if ctx.info_name == "repo":
out.warning("`hf repo` is deprecated in favor of `hf repos`.")
tag_cli = typer_factory(help="Manage tags for a repo on the Hub.")
branch_cli = typer_factory(help="Manage branches for a repo on the Hub.")
repos_cli.add_typer(tag_cli, name="tag")
repos_cli.add_typer(branch_cli, name="branch")
class GatedChoices(str, enum.Enum):
auto = "auto"
manual = "manual"
false = "false"
PublicOpt = Annotated[
bool | None,
typer.Option(
"--public",
help="Whether to make the repo public. Ignored if the repo already exists.",
),
]
ProtectedOpt = Annotated[
bool | None,
typer.Option(
"--protected",
help="Whether to make the Space protected (Spaces only). Ignored if the repo already exists.",
),
]
SpaceHardwareOpt = Annotated[
SpaceHardware | None,
typer.Option(
"--flavor",
help="Space hardware flavor (e.g. 'cpu-basic', 't4-medium', 'l4x4'). Only for Spaces.",
),
]
SpaceStorageOpt = Annotated[
SpaceStorage | None,
typer.Option(
"--storage",
help="(Deprecated, use volumes instead) Space persistent storage tier ('small', 'medium', or 'large'). Only for Spaces.",
),
]
SpaceSleepTimeOpt = Annotated[
int | None,
typer.Option(
"--sleep-time",
help="Seconds of inactivity before the Space is put to sleep. Use -1 to disable. Only for Spaces.",
),
]
@repos_cli.command(
"create",
examples=[
"hf repos create my-model",
"hf repos create my-dataset --repo-type dataset --private",
"hf repos create my-space --type space --space-sdk gradio --flavor t4-medium --secrets HF_TOKEN -e THEME=dark --protected",
"hf repos create my-space --type space --space-sdk gradio -v hf://gpt2:/models -v hf://buckets/org/b:/data",
],
)
def repo_create(
repo_id: RepoIdArg,
repo_type: RepoTypeOpt = RepoType.model,
space_sdk: Annotated[
str | None,
typer.Option(
help="Hugging Face Spaces SDK type. Required when --type is set to 'space'.",
),
] = None,
private: PrivateOpt = None,
public: PublicOpt = None,
protected: ProtectedOpt = None,
token: TokenOpt = None,
exist_ok: Annotated[
bool,
typer.Option(
help="Do not raise an error if repo already exists.",
),
] = False,
resource_group_id: Annotated[
str | None,
typer.Option(
help="Resource group in which to create the repo. Resource groups is only available for Enterprise Hub organizations.",
),
] = None,
hardware: SpaceHardwareOpt = None,
storage: SpaceStorageOpt = None,
sleep_time: SpaceSleepTimeOpt = None,
secrets: SecretsOpt = None,
secrets_file: SecretsFileOpt = None,
env: EnvOpt = None,
env_file: EnvFileOpt = None,
volume: VolumesOpt = None,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Create a new repo on the Hub."""
api = get_hf_api(token=token)
repo_url = api.create_repo(
repo_id=repo_id,
repo_type=repo_type.value,
visibility="private" if private else "public" if public else "protected" if protected else None, # type: ignore [arg-type]
token=token,
exist_ok=exist_ok,
resource_group_id=resource_group_id,
space_sdk=space_sdk,
space_hardware=hardware,
space_storage=storage,
space_sleep_time=sleep_time,
space_secrets=env_map_to_key_value_list(parse_env_map(secrets, secrets_file)),
space_variables=env_map_to_key_value_list(parse_env_map(env, env_file)),
space_volumes=parse_volumes(volume),
)
out.result("Repo created", repo_id=repo_url.repo_id, url=str(repo_url))
@repos_cli.command(
"duplicate",
examples=[
"hf repos duplicate openai/gdpval --type dataset",
"hf repos duplicate multimodalart/dreambooth-training my-dreambooth --type space --flavor l4x4 --secrets HF_TOKEN --private",
"hf repos duplicate org/my-space my-space --type space -v hf://gpt2:/models -v hf://buckets/org/b:/data",
],
)
def repo_duplicate(
from_id: RepoIdArg,
to_id: Annotated[
str | None,
typer.Argument(
help="Destination repo ID (e.g. `myorg/my-copy`). Defaults to your namespace with the same repo name.",
),
] = None,
repo_type: RepoTypeOpt = RepoType.model,
private: PrivateOpt = None,
public: PublicOpt = None,
protected: ProtectedOpt = None,
token: TokenOpt = None,
exist_ok: Annotated[
bool,
typer.Option(
help="Do not raise an error if repo already exists.",
),
] = False,
hardware: SpaceHardwareOpt = None,
storage: SpaceStorageOpt = None,
sleep_time: SpaceSleepTimeOpt = None,
secrets: SecretsOpt = None,
secrets_file: SecretsFileOpt = None,
env: EnvOpt = None,
env_file: EnvFileOpt = None,
volume: VolumesOpt = None,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Duplicate a repo on the Hub (model, dataset, or Space)."""
api = get_hf_api(token=token)
repo_url = api.duplicate_repo(
from_id=from_id,
to_id=to_id,
repo_type=repo_type.value,
visibility="private" if private else "public" if public else "protected" if protected else None, # type: ignore [arg-type]
token=token,
exist_ok=exist_ok,
space_hardware=hardware,
space_storage=storage,
space_sleep_time=sleep_time,
space_secrets=env_map_to_key_value_list(parse_env_map(secrets, secrets_file)),
space_variables=env_map_to_key_value_list(parse_env_map(env, env_file)),
space_volumes=parse_volumes(volume),
)
out.result("Repo duplicated", from_id=from_id, to_id=repo_url.repo_id, url=str(repo_url))
@repos_cli.command("delete", examples=["hf repos delete my-model"])
def repo_delete(
repo_id: RepoIdArg,
repo_type: RepoTypeOpt = RepoType.model,
token: TokenOpt = None,
missing_ok: Annotated[
bool,
typer.Option(
help="If set to True, do not raise an error if repo does not exist.",
),
] = False,
yes: Annotated[
bool,
typer.Option(
"-y",
"--yes",
help="Answer Yes to prompt automatically.",
),
] = False,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Delete a repo from the Hub. This is an irreversible operation."""
out.confirm(f"You are about to permanently delete {repo_type.value} '{repo_id}'. Proceed?", yes=yes)
api = get_hf_api(token=token)
api.delete_repo(
repo_id=repo_id,
repo_type=repo_type.value,
missing_ok=missing_ok,
)
out.result("Repo deleted", repo_id=repo_id)
@repos_cli.command("move", examples=["hf repos move old-namespace/my-model new-namespace/my-model"])
def repo_move(
from_id: RepoIdArg,
to_id: RepoIdArg,
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Move a repository from a namespace to another namespace."""
api = get_hf_api(token=token)
api.move_repo(
from_id=from_id,
to_id=to_id,
repo_type=repo_type.value,
)
out.result("Repo moved", from_id=from_id, to_id=to_id)
@repos_cli.command(
"settings",
examples=[
"hf repos settings my-model --private",
"hf repos settings my-model --gated auto",
"hf repos settings my-space --repo-type space --protected",
],
)
def repo_settings(
repo_id: RepoIdArg,
gated: Annotated[
GatedChoices | None,
typer.Option(
help="The gated status for the repository.",
),
] = None,
private: PrivateOpt = None,
public: PublicOpt = None,
protected: ProtectedOpt = None,
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Update the settings of a repository."""
api = get_hf_api(token=token)
api.update_repo_settings(
repo_id=repo_id,
gated=(None if gated is None else False if gated is GatedChoices.false else gated.value),
visibility="private" if private else "public" if public else "protected" if protected else None, # type: ignore [arg-type]
repo_type=repo_type.value,
)
out.result("Repo settings updated", repo_id=repo_id)
@repos_cli.command(
"delete-files",
examples=[
"hf repos delete-files my-model file.txt",
'hf repos delete-files my-model "*.json"',
"hf repos delete-files my-model folder/",
],
)
def repo_delete_files(
repo_id: RepoIdArg,
patterns: Annotated[
list[str],
typer.Argument(
help="Glob patterns to match files to delete. Based on fnmatch, '*' matches files recursively.",
),
],
repo_type: RepoTypeOpt = RepoType.model,
revision: RevisionOpt = None,
commit_message: Annotated[
str | None,
typer.Option(
help="The summary / title / first line of the generated commit.",
),
] = None,
commit_description: Annotated[
str | None,
typer.Option(
help="The description of the generated commit.",
),
] = None,
create_pr: Annotated[
bool,
typer.Option(
help="Whether to create a new Pull Request for these changes.",
),
] = False,
token: TokenOpt = None,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Delete files from a repo on the Hub."""
api = get_hf_api(token=token)
url = api.delete_files(
delete_patterns=patterns,
repo_id=repo_id,
repo_type=repo_type.value,
revision=revision,
commit_message=commit_message,
commit_description=commit_description,
create_pr=create_pr,
)
out.result("Files deleted", repo_id=repo_id, commit_url=url)
@branch_cli.command(
"create",
examples=[
"hf repos branch create my-model dev",
"hf repos branch create my-model dev --revision abc123",
],
)
def branch_create(
repo_id: RepoIdArg,
branch: Annotated[
str,
typer.Argument(
help="The name of the branch to create.",
),
],
revision: RevisionOpt = None,
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
exist_ok: Annotated[
bool,
typer.Option(
help="If set to True, do not raise an error if branch already exists.",
),
] = False,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Create a new branch for a repo on the Hub."""
api = get_hf_api(token=token)
api.create_branch(
repo_id=repo_id,
branch=branch,
revision=revision,
repo_type=repo_type.value,
exist_ok=exist_ok,
)
out.result("Branch created", branch=branch, repo_type=repo_type.value, repo_id=repo_id)
@branch_cli.command("delete", examples=["hf repos branch delete my-model dev"])
def branch_delete(
repo_id: RepoIdArg,
branch: Annotated[
str,
typer.Argument(
help="The name of the branch to delete.",
),
],
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Delete a branch from a repo on the Hub."""
api = get_hf_api(token=token)
api.delete_branch(
repo_id=repo_id,
branch=branch,
repo_type=repo_type.value,
)
out.result("Branch deleted", branch=branch, repo_type=repo_type.value, repo_id=repo_id)
@tag_cli.command(
"create",
examples=[
"hf repos tag create my-model v1.0",
'hf repos tag create my-model v1.0 -m "First release"',
],
)
def tag_create(
repo_id: RepoIdArg,
tag: Annotated[
str,
typer.Argument(
help="The name of the tag to create.",
),
],
message: Annotated[
str | None,
typer.Option(
"-m",
"--message",
help="The description of the tag to create.",
),
] = None,
revision: RevisionOpt = None,
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Create a tag for a repo."""
repo_type_str = repo_type.value
api = get_hf_api(token=token)
try:
api.create_tag(repo_id=repo_id, tag=tag, tag_message=message, revision=revision, repo_type=repo_type_str)
except RepositoryNotFoundError as e:
raise CLIError(f"{repo_type_str.capitalize()} '{repo_id}' not found.") from e
except RevisionNotFoundError as e:
raise CLIError(f"Revision '{revision}' not found.") from e
except HfHubHTTPError as e:
if e.response.status_code == 409:
raise CLIError(f"Tag '{tag}' already exists on '{repo_id}'.") from e
raise
out.result("Tag created", tag=tag, repo_type=repo_type_str, repo_id=repo_id)
@tag_cli.command("list | ls", examples=["hf repos tag list my-model"])
def tag_list(
repo_id: RepoIdArg,
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""List tags for a repo."""
repo_type_str = repo_type.value
api = get_hf_api(token=token)
try:
refs = api.list_repo_refs(repo_id=repo_id, repo_type=repo_type_str)
except RepositoryNotFoundError as e:
raise CLIError(f"{repo_type_str.capitalize()} '{repo_id}' not found.") from e
items = [{"name": t.name, "target_commit": t.target_commit, "ref": t.ref} for t in refs.tags]
out.table(items)
@tag_cli.command("delete", examples=["hf repos tag delete my-model v1.0"])
def tag_delete(
repo_id: RepoIdArg,
tag: Annotated[
str,
typer.Argument(
help="The name of the tag to delete.",
),
],
yes: Annotated[
bool,
typer.Option(
"-y",
"--yes",
help="Answer Yes to prompt automatically",
),
] = False,
token: TokenOpt = None,
repo_type: RepoTypeOpt = RepoType.model,
format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
) -> None:
"""Delete a tag for a repo."""
repo_type_str = repo_type.value
out.text(f"You are about to delete tag {tag} on {repo_type_str} {repo_id}")
out.confirm("Proceed?", yes=yes)
api = get_hf_api(token=token)
try:
api.delete_tag(repo_id=repo_id, tag=tag, repo_type=repo_type_str)
except RepositoryNotFoundError as e:
raise CLIError(f"{repo_type_str.capitalize()} '{repo_id}' not found.") from e
except RevisionNotFoundError as e:
raise CLIError(f"Tag '{tag}' not found on '{repo_id}'.") from e
out.result("Tag deleted", tag=tag, repo_type=repo_type_str, repo_id=repo_id)
|