chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
"""A centralized registry of all existing loaders."""
|
||||
|
||||
from typing import Any, Dict # noqa: UP035
|
||||
|
||||
from .huggingface_loader import HuggingFaceLoader
|
||||
|
||||
Loader = Any
|
||||
|
||||
LOADER: Dict[str, Any] = { # noqa: UP006
|
||||
"huggingface-torch": HuggingFaceLoader,
|
||||
"huggingface-safetensor": HuggingFaceLoader,
|
||||
"awq": HuggingFaceLoader,
|
||||
}
|
||||
Reference in New Issue
Block a user