@huggingface/hub

Classes

Interfaces

Type Aliases

AccessToken

Ƭ AccessToken: `hf_${string}`

Defined in

hub/src/types/repo.d.ts:8


CommitOperation

Ƭ CommitOperation: CommitDeletedEntry | CommitFile

Defined in

hub/src/lib/commit.ts:42


RepoType

Ƭ RepoType: "space" | "dataset" | "model"

Defined in

hub/src/types/repo.d.ts:1


SpaceHardwareFlavor

Ƭ SpaceHardwareFlavor: "cpu-basic" | "cpu-upgrade" | "t4-small" | "t4-medium" | "a10g-small" | "a10g-large" | "a100-large"

Defined in

hub/src/types/repo.d.ts:14


SpaceSdk

Ƭ SpaceSdk: "streamlit" | "gradio" | "docker" | "static"

Defined in

hub/src/types/repo.d.ts:23

Functions

commit

commit(params): Promise<CommitOutput>

Parameters

Name Type
params CommitParams

Returns

Promise<CommitOutput>

Defined in

hub/src/lib/commit.ts:342


createRepo

createRepo(params): Promise<void>

Parameters

Name Type Description
params Object -
params.credentials Credentials -
params.files? { content: ArrayBuffer | Blob ; path: string }[] Only a few lightweight files are supported at repo creation
params.hubUrl? string -
params.license? string -
params.private? boolean -
params.repo RepoId -
params.sdk? SpaceSdk Required for when repo.type === “space”

Returns

Promise<void>

Defined in

hub/src/lib/create-repo.ts:6


deleteRepo

deleteRepo(params): Promise<void>

Parameters

Name Type
params Object
params.credentials Credentials
params.hubUrl? string
params.repo RepoId

Returns

Promise<void>

Defined in

hub/src/lib/delete-repo.ts:5


downloadFile

downloadFile(params): Promise<Response | null>

Parameters

Name Type Description
params Object -
params.credentials? Credentials -
params.hubUrl? string -
params.path string -
params.raw? boolean If true, will download the raw git file. For example, when calling on a file stored with Git LFS, the pointer file will be downloaded instead.
params.repo RepoId -
params.revision? string -

Returns

Promise<Response | null>

null when the file doesn’t exist

Defined in

hub/src/lib/download-file.ts:8


fileDownloadInfo

fileDownloadInfo(params): Promise<FileDownloadInfoOutput | null>

Parameters

Name Type Description
params Object -
params.credentials? Credentials -
params.hubUrl? string -
params.noContentDisposition? boolean To avoid the content-disposition header in the downloadLink for LFS files So that on browsers you can use the URL in an iframe for example
params.path string -
params.raw? boolean To get the raw pointer file behind a LFS file
params.repo RepoId -
params.revision? string -

Returns

Promise<FileDownloadInfoOutput | null>

null when the file doesn’t exist

Defined in

hub/src/lib/file-download-info.ts:16


listFiles

listFiles(params): AsyncGenerator<ListFileEntry>

List files in a folder. To list ALL files in the directory, call it with params.recursive set to true.

Parameters

Name Type Description
params Object -
params.credentials? Credentials -
params.hubUrl? string -
params.path? string Eg ‘data’ for listing all files in the ‘data’ folder. Leave it empty to list all files in the repo.
params.recursive? boolean Do we want to list files in subdirectories?
params.repo RepoId -
params.revision? string -

Returns

AsyncGenerator<ListFileEntry>

Defined in

hub/src/lib/list-files.ts:30