This crates aims to emulate and be compatible with the huggingface_hub python package.
compatible means the Api should reuse the same files skipping downloads if they are already present and whenever this crate downloads or modifies this cache it should be consistent with huggingface_hub
At this time only a limited subset of the functionality is present, the goal is to add new features over time. We are currently treating this as an internel/external tool, meaning we will are currently modifying everything at will for out internal needs. This will eventually stabilize as it matures to accomodate most of our needs.
If you're interested in using this, you're welcome to do it but be warned about potential changing grounds.
If you want to contribute, you are more than welcome.
However allowing new features or creating new features might be denied by lack of maintainability time. We're focusing on what we currently internally need. Hopefully that subset is already interesting to more users.
Add the dependency
cargo add hf-hub # --features tokio
tokio
feature will enable an async (and potentially faster) API.
Use the crate:
use hf_hub::api::sync::Api;
let api = Api::new().unwrap();
let repo = api.model("bert-base-uncased".to_string());
let _filename = repo.get("config.json").unwrap();
// filename is now the local location within hf cache of the config.json file
When using the ureq
feature, you will always use its default TLS backend which is rustls.
When using tokio
, by default default-tls
will be enabled, which means OpenSSL. If you want/need to use rustls, disable the default features and use rustls-tls
in conjunction with tokio
.