__init__.py 528 Bytes
Newer Older
1
2
from . import (
    anthropic_llms,
Baber Abbasi's avatar
Baber Abbasi committed
3
    api_models,
4
5
    dummy,
    gguf,
6
    hf_vlms,
7
8
    huggingface,
    mamba_lm,
9
    nemo_lm,
10
    neuralmagic,
11
12
13
14
15
    neuron_optimum,
    openai_completions,
    optimum_lm,
    textsynth,
    vllm_causallms,
16
    vllm_vlms,
17
18
19
)


haileyschoelkopf's avatar
haileyschoelkopf committed
20
# TODO: implement __all__
Michael Feil's avatar
Michael Feil committed
21
22
23


try:
24
25
26
    # enable hf hub transfer if available
    import hf_transfer  # type: ignore # noqa
    import huggingface_hub.constants  # type: ignore
Michael Feil's avatar
Michael Feil committed
27

28
    huggingface_hub.constants.HF_HUB_ENABLE_HF_TRANSFER = True
Michael Feil's avatar
Michael Feil committed
29
30
except ImportError:
    pass