usestd::path::{Path, PathBuf};usecrate::error::BoxedError;/// Represents a repository that contains a model or tokenizer.
pubtraitRepo
where
Self: Sized,
{/// Get a repository file.
////// * `path` - The path to the file within the repository.
////// Returns: The local file path.
fnfile(&self, path: impl AsRef<Path>)->Result<Option<PathBuf>, BoxedError>;}