__init__.py 588 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
    huggingface,
8
    ibm_watsonx_ai,
9
    mamba_lm,
10
    nemo_lm,
11
    neuralmagic,
12
13
    neuron_optimum,
    openai_completions,
14
    optimum_ipex,
15
    optimum_lm,
16
    sglang_causallms,
17
18
    textsynth,
    vllm_causallms,
19
    vllm_vlms,
20
21
22
)


haileyschoelkopf's avatar
haileyschoelkopf committed
23
# TODO: implement __all__
Michael Feil's avatar
Michael Feil committed
24
25
26


try:
27
28
29
    # 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
30

31
    huggingface_hub.constants.HF_HUB_ENABLE_HF_TRANSFER = True
Michael Feil's avatar
Michael Feil committed
32
33
except ImportError:
    pass