Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* Loads a given module for a given ID.
*/
export interface ModuleLoader {
load<M = any>(id: string): Promise<M>
}