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 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
|
<!--
# WARNING
# This entire file has been generated by Typer based on the `hf` CLI implementation.
# To re-generate the code, run `make style` or `python ./utils/generate_cli_reference.py --update`.
# WARNING
-->
# `hf`
Hugging Face Hub CLI
**Usage**:
```console
$ hf [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--install-completion`: Install completion for the current shell.
* `--show-completion`: Show completion for the current shell, to copy it or customize the installation.
* `--help`: Show this message and exit.
**Commands**:
* `auth`: Manage authentication (login, logout, etc.).
* `cache`: Manage local cache directory.
* `download`: Download files from the Hub.
* `endpoints`: Manage Hugging Face Inference Endpoints.
* `env`: Print information about the environment.
* `jobs`: Run and manage Jobs on the Hub.
* `lfs-enable-largefiles`: Configure your repository to enable upload...
* `lfs-multipart-upload`: Upload large files to the Hub.
* `repo`: Manage repos on the Hub.
* `repo-files`: Manage files in a repo on the Hub.
* `upload`: Upload a file or a folder to the Hub.
* `upload-large-folder`: Upload a large folder to the Hub.
* `version`: Print information about the hf version.
## `hf auth`
Manage authentication (login, logout, etc.).
**Usage**:
```console
$ hf auth [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `list`: List all stored access tokens
* `login`: Login using a token from...
* `logout`: Logout from a specific token
* `switch`: Switch between access tokens
* `whoami`: Find out which huggingface.co account you...
### `hf auth list`
List all stored access tokens
**Usage**:
```console
$ hf auth list [OPTIONS]
```
**Options**:
* `--help`: Show this message and exit.
### `hf auth login`
Login using a token from huggingface.co/settings/tokens
**Usage**:
```console
$ hf auth login [OPTIONS]
```
**Options**:
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--add-to-git-credential / --no-add-to-git-credential`: Save to git credential helper. Useful only if you plan to run git commands directly. [default: no-add-to-git-credential]
* `--help`: Show this message and exit.
### `hf auth logout`
Logout from a specific token
**Usage**:
```console
$ hf auth logout [OPTIONS]
```
**Options**:
* `--token-name TEXT`: Name of token to logout
* `--help`: Show this message and exit.
### `hf auth switch`
Switch between access tokens
**Usage**:
```console
$ hf auth switch [OPTIONS]
```
**Options**:
* `--token-name TEXT`: Name of the token to switch to
* `--add-to-git-credential / --no-add-to-git-credential`: Save to git credential helper. Useful only if you plan to run git commands directly. [default: no-add-to-git-credential]
* `--help`: Show this message and exit.
### `hf auth whoami`
Find out which huggingface.co account you are logged in as.
**Usage**:
```console
$ hf auth whoami [OPTIONS]
```
**Options**:
* `--help`: Show this message and exit.
## `hf cache`
Manage local cache directory.
**Usage**:
```console
$ hf cache [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `ls`: List cached repositories or revisions.
* `prune`: Remove detached revisions from the cache.
* `rm`: Remove cached repositories or revisions.
* `verify`: Verify checksums for a single repo...
### `hf cache ls`
List cached repositories or revisions.
**Usage**:
```console
$ hf cache ls [OPTIONS]
```
**Options**:
* `--cache-dir TEXT`: Cache directory to scan (defaults to Hugging Face cache).
* `--revisions / --no-revisions`: Include revisions in the output instead of aggregated repositories. [default: no-revisions]
* `-f, --filter TEXT`: Filter entries (e.g. 'size>1GB', 'type=model', 'accessed>7d'). Can be used multiple times.
* `--format [table|json|csv]`: Output format. [default: table]
* `-q, --quiet`: Print only IDs (repo IDs or revision hashes).
* `--sort [accessed|accessed:asc|accessed:desc|modified|modified:asc|modified:desc|name|name:asc|name:desc|size|size:asc|size:desc]`: Sort entries by key. Supported keys: 'accessed', 'modified', 'name', 'size'. Append ':asc' or ':desc' to explicitly set the order (e.g., 'modified:asc'). Defaults: 'accessed', 'modified', 'size' default to 'desc' (newest/biggest first); 'name' defaults to 'asc' (alphabetical).
* `--limit INTEGER`: Limit the number of results returned. Returns only the top N entries after sorting.
* `--help`: Show this message and exit.
### `hf cache prune`
Remove detached revisions from the cache.
**Usage**:
```console
$ hf cache prune [OPTIONS]
```
**Options**:
* `--cache-dir TEXT`: Cache directory to scan (defaults to Hugging Face cache).
* `-y, --yes`: Skip confirmation prompt.
* `--dry-run / --no-dry-run`: Preview deletions without removing anything. [default: no-dry-run]
* `--help`: Show this message and exit.
### `hf cache rm`
Remove cached repositories or revisions.
**Usage**:
```console
$ hf cache rm [OPTIONS] TARGETS...
```
**Arguments**:
* `TARGETS...`: One or more repo IDs (e.g. model/bert-base-uncased) or revision hashes to delete. [required]
**Options**:
* `--cache-dir TEXT`: Cache directory to scan (defaults to Hugging Face cache).
* `-y, --yes`: Skip confirmation prompt.
* `--dry-run / --no-dry-run`: Preview deletions without removing anything. [default: no-dry-run]
* `--help`: Show this message and exit.
### `hf cache verify`
Verify checksums for a single repo revision from cache or a local directory.
Examples:
- Verify main revision in cache: `hf cache verify gpt2`
- Verify specific revision: `hf cache verify gpt2 --revision refs/pr/1`
- Verify dataset: `hf cache verify karpathy/fineweb-edu-100b-shuffle --repo-type dataset`
- Verify local dir: `hf cache verify deepseek-ai/DeepSeek-OCR --local-dir /path/to/repo`
**Usage**:
```console
$ hf cache verify [OPTIONS] REPO_ID
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--cache-dir TEXT`: Cache directory to use when verifying files from cache (defaults to Hugging Face cache).
* `--local-dir TEXT`: If set, verify files under this directory instead of the cache.
* `--fail-on-missing-files`: Fail if some files exist on the remote but are missing locally.
* `--fail-on-extra-files`: Fail if some files exist locally but are not present on the remote revision.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
## `hf download`
Download files from the Hub.
**Usage**:
```console
$ hf download [OPTIONS] REPO_ID [FILENAMES]...
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `[FILENAMES]...`: Files to download (e.g. `config.json`, `data/metadata.jsonl`).
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--include TEXT`: Glob patterns to include from files to download. eg: *.json
* `--exclude TEXT`: Glob patterns to exclude from files to download.
* `--cache-dir TEXT`: Directory where to save files.
* `--local-dir TEXT`: If set, the downloaded file will be placed under this directory. Check out https://huggingface.co/docs/huggingface_hub/guides/download#download-files-to-local-folder for more details.
* `--force-download / --no-force-download`: If True, the files will be downloaded even if they are already cached. [default: no-force-download]
* `--dry-run / --no-dry-run`: If True, perform a dry run without actually downloading the file. [default: no-dry-run]
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--quiet / --no-quiet`: If True, progress bars are disabled and only the path to the download files is printed. [default: no-quiet]
* `--max-workers INTEGER`: Maximum number of workers to use for downloading files. Default is 8. [default: 8]
* `--help`: Show this message and exit.
## `hf endpoints`
Manage Hugging Face Inference Endpoints.
**Usage**:
```console
$ hf endpoints [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `catalog`: Interact with the Inference Endpoints...
* `delete`: Delete an Inference Endpoint permanently.
* `deploy`: Deploy an Inference Endpoint from a Hub...
* `describe`: Get information about an existing endpoint.
* `list-catalog`: List available Catalog models.
* `ls`: Lists all Inference Endpoints for the...
* `pause`: Pause an Inference Endpoint.
* `resume`: Resume an Inference Endpoint.
* `scale-to-zero`: Scale an Inference Endpoint to zero.
* `update`: Update an existing endpoint.
### `hf endpoints catalog`
Interact with the Inference Endpoints catalog.
**Usage**:
```console
$ hf endpoints catalog [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `deploy`: Deploy an Inference Endpoint from the...
* `ls`: List available Catalog models.
#### `hf endpoints catalog deploy`
Deploy an Inference Endpoint from the Model Catalog.
**Usage**:
```console
$ hf endpoints catalog deploy [OPTIONS]
```
**Options**:
* `--repo TEXT`: The name of the model repository associated with the Inference Endpoint (e.g. 'openai/gpt-oss-120b'). [required]
* `--name TEXT`: Endpoint name.
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
#### `hf endpoints catalog ls`
List available Catalog models.
**Usage**:
```console
$ hf endpoints catalog ls [OPTIONS]
```
**Options**:
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints delete`
Delete an Inference Endpoint permanently.
**Usage**:
```console
$ hf endpoints delete [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--yes`: Skip confirmation prompts.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints deploy`
Deploy an Inference Endpoint from a Hub repository.
**Usage**:
```console
$ hf endpoints deploy [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--repo TEXT`: The name of the model repository associated with the Inference Endpoint (e.g. 'openai/gpt-oss-120b'). [required]
* `--framework TEXT`: The machine learning framework used for the model (e.g. 'vllm'). [required]
* `--accelerator TEXT`: The hardware accelerator to be used for inference (e.g. 'cpu'). [required]
* `--instance-size TEXT`: The size or type of the instance to be used for hosting the model (e.g. 'x4'). [required]
* `--instance-type TEXT`: The cloud instance type where the Inference Endpoint will be deployed (e.g. 'intel-icl'). [required]
* `--region TEXT`: The cloud region in which the Inference Endpoint will be created (e.g. 'us-east-1'). [required]
* `--vendor TEXT`: The cloud provider or vendor where the Inference Endpoint will be hosted (e.g. 'aws'). [required]
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--task TEXT`: The task on which to deploy the model (e.g. 'text-classification').
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--min-replica INTEGER`: The minimum number of replicas (instances) to keep running for the Inference Endpoint. [default: 1]
* `--max-replica INTEGER`: The maximum number of replicas (instances) to scale to for the Inference Endpoint. [default: 1]
* `--scale-to-zero-timeout INTEGER`: The duration in minutes before an inactive endpoint is scaled to zero.
* `--scaling-metric [pendingRequests|hardwareUsage]`: The metric reference for scaling.
* `--scaling-threshold FLOAT`: The scaling metric threshold used to trigger a scale up. Ignored when scaling metric is not provided.
* `--help`: Show this message and exit.
### `hf endpoints describe`
Get information about an existing endpoint.
**Usage**:
```console
$ hf endpoints describe [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints list-catalog`
List available Catalog models.
**Usage**:
```console
$ hf endpoints list-catalog [OPTIONS]
```
**Options**:
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints ls`
Lists all Inference Endpoints for the given namespace.
**Usage**:
```console
$ hf endpoints ls [OPTIONS]
```
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints pause`
Pause an Inference Endpoint.
**Usage**:
```console
$ hf endpoints pause [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints resume`
Resume an Inference Endpoint.
**Usage**:
```console
$ hf endpoints resume [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--fail-if-already-running`: If `True`, the method will raise an error if the Inference Endpoint is already running.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints scale-to-zero`
Scale an Inference Endpoint to zero.
**Usage**:
```console
$ hf endpoints scale-to-zero [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf endpoints update`
Update an existing endpoint.
**Usage**:
```console
$ hf endpoints update [OPTIONS] NAME
```
**Arguments**:
* `NAME`: Endpoint name. [required]
**Options**:
* `--namespace TEXT`: The namespace associated with the Inference Endpoint. Defaults to the current user's namespace.
* `--repo TEXT`: The name of the model repository associated with the Inference Endpoint (e.g. 'openai/gpt-oss-120b').
* `--accelerator TEXT`: The hardware accelerator to be used for inference (e.g. 'cpu').
* `--instance-size TEXT`: The size or type of the instance to be used for hosting the model (e.g. 'x4').
* `--instance-type TEXT`: The cloud instance type where the Inference Endpoint will be deployed (e.g. 'intel-icl').
* `--framework TEXT`: The machine learning framework used for the model (e.g. 'custom').
* `--revision TEXT`: The specific model revision to deploy on the Inference Endpoint (e.g. '6c0e6080953db56375760c0471a8c5f2929baf11').
* `--task TEXT`: The task on which to deploy the model (e.g. 'text-classification').
* `--min-replica INTEGER`: The minimum number of replicas (instances) to keep running for the Inference Endpoint.
* `--max-replica INTEGER`: The maximum number of replicas (instances) to scale to for the Inference Endpoint.
* `--scale-to-zero-timeout INTEGER`: The duration in minutes before an inactive endpoint is scaled to zero.
* `--scaling-metric [pendingRequests|hardwareUsage]`: The metric reference for scaling.
* `--scaling-threshold FLOAT`: The scaling metric threshold used to trigger a scale up. Ignored when scaling metric is not provided.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
## `hf env`
Print information about the environment.
**Usage**:
```console
$ hf env [OPTIONS]
```
**Options**:
* `--help`: Show this message and exit.
## `hf jobs`
Run and manage Jobs on the Hub.
**Usage**:
```console
$ hf jobs [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `cancel`: Cancel a Job
* `inspect`: Display detailed information on one or...
* `logs`: Fetch the logs of a Job
* `ps`: List Jobs
* `run`: Run a Job
* `scheduled`: Create and manage scheduled Jobs on the Hub.
* `uv`: Run UV scripts (Python with inline...
### `hf jobs cancel`
Cancel a Job
**Usage**:
```console
$ hf jobs cancel [OPTIONS] JOB_ID
```
**Arguments**:
* `JOB_ID`: Job ID [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf jobs inspect`
Display detailed information on one or more Jobs
**Usage**:
```console
$ hf jobs inspect [OPTIONS] JOB_IDS...
```
**Arguments**:
* `JOB_IDS...`: The jobs to inspect [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf jobs logs`
Fetch the logs of a Job
**Usage**:
```console
$ hf jobs logs [OPTIONS] JOB_ID
```
**Arguments**:
* `JOB_ID`: Job ID [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf jobs ps`
List Jobs
**Usage**:
```console
$ hf jobs ps [OPTIONS]
```
**Options**:
* `-a, --all`: Show all Jobs (default shows just running)
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `-f, --filter TEXT`: Filter output based on conditions provided (format: key=value)
* `--format TEXT`: Format output using a custom template
* `--help`: Show this message and exit.
### `hf jobs run`
Run a Job
**Usage**:
```console
$ hf jobs run [OPTIONS] IMAGE COMMAND...
```
**Arguments**:
* `IMAGE`: The Docker image to use. [required]
* `COMMAND...`: The command to run. [required]
**Options**:
* `-e, --env TEXT`: Set environment variables. E.g. --env ENV=value
* `-s, --secrets TEXT`: Set secret environment variables. E.g. --secrets SECRET=value or `--secrets HF_TOKEN` to pass your Hugging Face token.
* `--env-file TEXT`: Read in a file of environment variables.
* `--secrets-file TEXT`: Read in a file of secret environment variables.
* `--flavor [cpu-basic|cpu-upgrade|cpu-xl|zero-a10g|t4-small|t4-medium|l4x1|l4x4|l40sx1|l40sx4|l40sx8|a10g-small|a10g-large|a10g-largex2|a10g-largex4|a100-large|h100|h100x8]`: Flavor for the hardware, as in HF Spaces. Defaults to `cpu-basic`. Possible values: cpu-basic, cpu-upgrade, cpu-xl, t4-small, t4-medium, l4x1, l4x4, l40sx1, l40sx4, l40sx8, a10g-small, a10g-large, a10g-largex2, a10g-largex4, a100-large, h100, h100x8.
* `--timeout TEXT`: Max duration: int/float with s (seconds, default), m (minutes), h (hours) or d (days).
* `-d, --detach`: Run the Job in the background and print the Job ID.
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
### `hf jobs scheduled`
Create and manage scheduled Jobs on the Hub.
**Usage**:
```console
$ hf jobs scheduled [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `delete`: Delete a scheduled Job
* `inspect`: Display detailed information on one or...
* `ps`: List scheduled Jobs
* `resume`: Resume (unpause) a scheduled Job
* `run`: Schedule a Job
* `suspend`: Suspend (pause) a scheduled Job
* `uv`: Schedule UV scripts on HF infrastructure
#### `hf jobs scheduled delete`
Delete a scheduled Job
**Usage**:
```console
$ hf jobs scheduled delete [OPTIONS] SCHEDULED_JOB_ID
```
**Arguments**:
* `SCHEDULED_JOB_ID`: Scheduled Job ID [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
#### `hf jobs scheduled inspect`
Display detailed information on one or more scheduled Jobs
**Usage**:
```console
$ hf jobs scheduled inspect [OPTIONS] SCHEDULED_JOB_IDS...
```
**Arguments**:
* `SCHEDULED_JOB_IDS...`: The scheduled jobs to inspect [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
#### `hf jobs scheduled ps`
List scheduled Jobs
**Usage**:
```console
$ hf jobs scheduled ps [OPTIONS]
```
**Options**:
* `-a, --all`: Show all scheduled Jobs (default hides suspended)
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `-f, --filter TEXT`: Filter output based on conditions provided (format: key=value)
* `--format TEXT`: Format output using a custom template
* `--help`: Show this message and exit.
#### `hf jobs scheduled resume`
Resume (unpause) a scheduled Job
**Usage**:
```console
$ hf jobs scheduled resume [OPTIONS] SCHEDULED_JOB_ID
```
**Arguments**:
* `SCHEDULED_JOB_ID`: Scheduled Job ID [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
#### `hf jobs scheduled run`
Schedule a Job
**Usage**:
```console
$ hf jobs scheduled run [OPTIONS] SCHEDULE IMAGE COMMAND...
```
**Arguments**:
* `SCHEDULE`: One of annually, yearly, monthly, weekly, daily, hourly, or a CRON schedule expression. [required]
* `IMAGE`: The Docker image to use. [required]
* `COMMAND...`: The command to run. [required]
**Options**:
* `--suspend / --no-suspend`: Suspend (pause) the scheduled Job
* `--concurrency / --no-concurrency`: Allow multiple instances of this Job to run concurrently
* `-e, --env TEXT`: Set environment variables. E.g. --env ENV=value
* `-s, --secrets TEXT`: Set secret environment variables. E.g. --secrets SECRET=value or `--secrets HF_TOKEN` to pass your Hugging Face token.
* `--env-file TEXT`: Read in a file of environment variables.
* `--secrets-file TEXT`: Read in a file of secret environment variables.
* `--flavor [cpu-basic|cpu-upgrade|cpu-xl|zero-a10g|t4-small|t4-medium|l4x1|l4x4|l40sx1|l40sx4|l40sx8|a10g-small|a10g-large|a10g-largex2|a10g-largex4|a100-large|h100|h100x8]`: Flavor for the hardware, as in HF Spaces. Defaults to `cpu-basic`. Possible values: cpu-basic, cpu-upgrade, cpu-xl, t4-small, t4-medium, l4x1, l4x4, l40sx1, l40sx4, l40sx8, a10g-small, a10g-large, a10g-largex2, a10g-largex4, a100-large, h100, h100x8.
* `--timeout TEXT`: Max duration: int/float with s (seconds, default), m (minutes), h (hours) or d (days).
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
#### `hf jobs scheduled suspend`
Suspend (pause) a scheduled Job
**Usage**:
```console
$ hf jobs scheduled suspend [OPTIONS] SCHEDULED_JOB_ID
```
**Arguments**:
* `SCHEDULED_JOB_ID`: Scheduled Job ID [required]
**Options**:
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
#### `hf jobs scheduled uv`
Schedule UV scripts on HF infrastructure
**Usage**:
```console
$ hf jobs scheduled uv [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `run`: Run a UV script (local file or URL) on HF...
##### `hf jobs scheduled uv run`
Run a UV script (local file or URL) on HF infrastructure
**Usage**:
```console
$ hf jobs scheduled uv run [OPTIONS] SCHEDULE SCRIPT [SCRIPT_ARGS]...
```
**Arguments**:
* `SCHEDULE`: One of annually, yearly, monthly, weekly, daily, hourly, or a CRON schedule expression. [required]
* `SCRIPT`: UV script to run (local file or URL) [required]
* `[SCRIPT_ARGS]...`: Arguments for the script
**Options**:
* `--suspend / --no-suspend`: Suspend (pause) the scheduled Job
* `--concurrency / --no-concurrency`: Allow multiple instances of this Job to run concurrently
* `--image TEXT`: Use a custom Docker image with `uv` installed.
* `--repo TEXT`: Repository name for the script (creates ephemeral if not specified)
* `--flavor [cpu-basic|cpu-upgrade|cpu-xl|zero-a10g|t4-small|t4-medium|l4x1|l4x4|l40sx1|l40sx4|l40sx8|a10g-small|a10g-large|a10g-largex2|a10g-largex4|a100-large|h100|h100x8]`: Flavor for the hardware, as in HF Spaces. Defaults to `cpu-basic`. Possible values: cpu-basic, cpu-upgrade, cpu-xl, t4-small, t4-medium, l4x1, l4x4, l40sx1, l40sx4, l40sx8, a10g-small, a10g-large, a10g-largex2, a10g-largex4, a100-large, h100, h100x8.
* `-e, --env TEXT`: Set environment variables. E.g. --env ENV=value
* `-s, --secrets TEXT`: Set secret environment variables. E.g. --secrets SECRET=value or `--secrets HF_TOKEN` to pass your Hugging Face token.
* `--env-file TEXT`: Read in a file of environment variables.
* `--secrets-file TEXT`: Read in a file of secret environment variables.
* `--timeout TEXT`: Max duration: int/float with s (seconds, default), m (minutes), h (hours) or d (days).
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--with TEXT`: Run with the given packages installed
* `-p, --python TEXT`: The Python interpreter to use for the run environment
* `--help`: Show this message and exit.
### `hf jobs uv`
Run UV scripts (Python with inline dependencies) on HF infrastructure
**Usage**:
```console
$ hf jobs uv [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `run`: Run a UV script (local file or URL) on HF...
#### `hf jobs uv run`
Run a UV script (local file or URL) on HF infrastructure
**Usage**:
```console
$ hf jobs uv run [OPTIONS] SCRIPT [SCRIPT_ARGS]...
```
**Arguments**:
* `SCRIPT`: UV script to run (local file or URL) [required]
* `[SCRIPT_ARGS]...`: Arguments for the script
**Options**:
* `--image TEXT`: Use a custom Docker image with `uv` installed.
* `--repo TEXT`: Repository name for the script (creates ephemeral if not specified)
* `--flavor [cpu-basic|cpu-upgrade|cpu-xl|zero-a10g|t4-small|t4-medium|l4x1|l4x4|l40sx1|l40sx4|l40sx8|a10g-small|a10g-large|a10g-largex2|a10g-largex4|a100-large|h100|h100x8]`: Flavor for the hardware, as in HF Spaces. Defaults to `cpu-basic`. Possible values: cpu-basic, cpu-upgrade, cpu-xl, t4-small, t4-medium, l4x1, l4x4, l40sx1, l40sx4, l40sx8, a10g-small, a10g-large, a10g-largex2, a10g-largex4, a100-large, h100, h100x8.
* `-e, --env TEXT`: Set environment variables. E.g. --env ENV=value
* `-s, --secrets TEXT`: Set secret environment variables. E.g. --secrets SECRET=value or `--secrets HF_TOKEN` to pass your Hugging Face token.
* `--env-file TEXT`: Read in a file of environment variables.
* `--secrets-file TEXT`: Read in a file of secret environment variables.
* `--timeout TEXT`: Max duration: int/float with s (seconds, default), m (minutes), h (hours) or d (days).
* `-d, --detach`: Run the Job in the background and print the Job ID.
* `--namespace TEXT`: The namespace where the job will be running. Defaults to the current user's namespace.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--with TEXT`: Run with the given packages installed
* `-p, --python TEXT`: The Python interpreter to use for the run environment
* `--help`: Show this message and exit.
## `hf lfs-enable-largefiles`
Configure your repository to enable upload of files > 5GB.
**Usage**:
```console
$ hf lfs-enable-largefiles [OPTIONS] PATH
```
**Arguments**:
* `PATH`: Local path to repository you want to configure. [required]
**Options**:
* `--help`: Show this message and exit.
## `hf lfs-multipart-upload`
Upload large files to the Hub.
**Usage**:
```console
$ hf lfs-multipart-upload [OPTIONS]
```
**Options**:
* `--help`: Show this message and exit.
## `hf repo`
Manage repos on the Hub.
**Usage**:
```console
$ hf repo [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `branch`: Manage branches for a repo on the Hub.
* `create`: Create a new repo on the Hub.
* `delete`: Delete a repo from the Hub.
* `move`: Move a repository from a namespace to...
* `settings`: Update the settings of a repository.
* `tag`: Manage tags for a repo on the Hub.
### `hf repo branch`
Manage branches for a repo on the Hub.
**Usage**:
```console
$ hf repo branch [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `create`: Create a new branch for a repo on the Hub.
* `delete`: Delete a branch from a repo on the Hub.
#### `hf repo branch create`
Create a new branch for a repo on the Hub.
**Usage**:
```console
$ hf repo branch create [OPTIONS] REPO_ID BRANCH
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `BRANCH`: The name of the branch to create. [required]
**Options**:
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--exist-ok / --no-exist-ok`: If set to True, do not raise an error if branch already exists. [default: no-exist-ok]
* `--help`: Show this message and exit.
#### `hf repo branch delete`
Delete a branch from a repo on the Hub.
**Usage**:
```console
$ hf repo branch delete [OPTIONS] REPO_ID BRANCH
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `BRANCH`: The name of the branch to delete. [required]
**Options**:
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--help`: Show this message and exit.
### `hf repo create`
Create a new repo on the Hub.
**Usage**:
```console
$ hf repo create [OPTIONS] REPO_ID
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--space-sdk TEXT`: Hugging Face Spaces SDK type. Required when --type is set to 'space'.
* `--private / --no-private`: Whether to create a private repo if repo doesn't exist on the Hub. Ignored if the repo already exists. [default: no-private]
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--exist-ok / --no-exist-ok`: Do not raise an error if repo already exists. [default: no-exist-ok]
* `--resource-group-id TEXT`: Resource group in which to create the repo. Resource groups is only available for Enterprise Hub organizations.
* `--help`: Show this message and exit.
### `hf repo delete`
Delete a repo from the Hub. this is an irreversible operation.
**Usage**:
```console
$ hf repo delete [OPTIONS] REPO_ID
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--missing-ok / --no-missing-ok`: If set to True, do not raise an error if repo does not exist. [default: no-missing-ok]
* `--help`: Show this message and exit.
### `hf repo move`
Move a repository from a namespace to another namespace.
**Usage**:
```console
$ hf repo move [OPTIONS] FROM_ID TO_ID
```
**Arguments**:
* `FROM_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `TO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
**Options**:
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--help`: Show this message and exit.
### `hf repo settings`
Update the settings of a repository.
**Usage**:
```console
$ hf repo settings [OPTIONS] REPO_ID
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
**Options**:
* `--gated [auto|manual|false]`: The gated status for the repository.
* `--private / --no-private`: Whether the repository should be private.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--help`: Show this message and exit.
### `hf repo tag`
Manage tags for a repo on the Hub.
**Usage**:
```console
$ hf repo tag [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `create`: Create a tag for a repo.
* `delete`: Delete a tag for a repo.
* `list`: List tags for a repo.
#### `hf repo tag create`
Create a tag for a repo.
**Usage**:
```console
$ hf repo tag create [OPTIONS] REPO_ID TAG
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `TAG`: The name of the tag to create. [required]
**Options**:
* `-m, --message TEXT`: The description of the tag to create.
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--help`: Show this message and exit.
#### `hf repo tag delete`
Delete a tag for a repo.
**Usage**:
```console
$ hf repo tag delete [OPTIONS] REPO_ID TAG
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `TAG`: The name of the tag to delete. [required]
**Options**:
* `-y, --yes`: Answer Yes to prompt automatically
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--help`: Show this message and exit.
#### `hf repo tag list`
List tags for a repo.
**Usage**:
```console
$ hf repo tag list [OPTIONS] REPO_ID
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
**Options**:
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--help`: Show this message and exit.
## `hf repo-files`
Manage files in a repo on the Hub.
**Usage**:
```console
$ hf repo-files [OPTIONS] COMMAND [ARGS]...
```
**Options**:
* `--help`: Show this message and exit.
**Commands**:
* `delete`
### `hf repo-files delete`
**Usage**:
```console
$ hf repo-files delete [OPTIONS] REPO_ID PATTERNS...
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `PATTERNS...`: Glob patterns to match files to delete. [required]
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--commit-message TEXT`: The summary / title / first line of the generated commit.
* `--commit-description TEXT`: The description of the generated commit.
* `--create-pr / --no-create-pr`: Whether to create a new Pull Request for these changes. [default: no-create-pr]
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--help`: Show this message and exit.
## `hf upload`
Upload a file or a folder to the Hub.
**Usage**:
```console
$ hf upload [OPTIONS] REPO_ID [LOCAL_PATH] [PATH_IN_REPO]
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `[LOCAL_PATH]`: Local path to the file or folder to upload. Wildcard patterns are supported. Defaults to current directory.
* `[PATH_IN_REPO]`: Path of the file or folder in the repo. Defaults to the relative path of the file or folder.
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--private / --no-private`: Whether to create a private repo if repo doesn't exist on the Hub. Ignored if the repo already exists. [default: no-private]
* `--include TEXT`: Glob patterns to match files to upload.
* `--exclude TEXT`: Glob patterns to exclude from files to upload.
* `--delete TEXT`: Glob patterns for file to be deleted from the repo while committing.
* `--commit-message TEXT`: The summary / title / first line of the generated commit.
* `--commit-description TEXT`: The description of the generated commit.
* `--create-pr / --no-create-pr`: Whether to upload content as a new Pull Request. [default: no-create-pr]
* `--every FLOAT`: f set, a background job is scheduled to create commits every `every` minutes.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--quiet / --no-quiet`: Disable progress bars and warnings; print only the returned path. [default: no-quiet]
* `--help`: Show this message and exit.
## `hf upload-large-folder`
Upload a large folder to the Hub. Recommended for resumable uploads.
**Usage**:
```console
$ hf upload-large-folder [OPTIONS] REPO_ID LOCAL_PATH
```
**Arguments**:
* `REPO_ID`: The ID of the repo (e.g. `username/repo-name`). [required]
* `LOCAL_PATH`: Local path to the folder to upload. [required]
**Options**:
* `--repo-type [model|dataset|space]`: The type of repository (model, dataset, or space). [default: model]
* `--revision TEXT`: Git revision id which can be a branch name, a tag, or a commit hash.
* `--private / --no-private`: Whether to create a private repo if repo doesn't exist on the Hub. Ignored if the repo already exists. [default: no-private]
* `--include TEXT`: Glob patterns to match files to upload.
* `--exclude TEXT`: Glob patterns to exclude from files to upload.
* `--token TEXT`: A User Access Token generated from https://huggingface.co/settings/tokens.
* `--num-workers INTEGER`: Number of workers to use to hash, upload and commit files.
* `--no-report / --no-no-report`: Whether to disable regular status report. [default: no-no-report]
* `--no-bars / --no-no-bars`: Whether to disable progress bars. [default: no-no-bars]
* `--help`: Show this message and exit.
## `hf version`
Print information about the hf version.
**Usage**:
```console
$ hf version [OPTIONS]
```
**Options**:
* `--help`: Show this message and exit.
|