__init__.py 644 Bytes
Newer Older
1
2
from . import (
    anthropic_llms,
Baber Abbasi's avatar
Baber Abbasi committed
3
    api_models,
4
    dummy,
Baber's avatar
Baber committed
5
    gemini_api,
6
    gguf,
7
    hf_audiolm,
8
    hf_steered,
9
    hf_vlms,
10
    huggingface,
11
    ibm_watsonx_ai,
12
    mamba_lm,
13
    nemo_lm,
14
15
    neuron_optimum,
    openai_completions,
16
    optimum_ipex,
17
    optimum_lm,
18
    sglang_causallms,
19
    sglang_generate_API,
20
21
    textsynth,
    vllm_causallms,
22
    vllm_vlms,
23
24
25
)


haileyschoelkopf's avatar
haileyschoelkopf committed
26
# TODO: implement __all__
Michael Feil's avatar
Michael Feil committed
27
28
29


try:
30
31
32
    # 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
33

34
    huggingface_hub.constants.HF_HUB_ENABLE_HF_TRANSFER = True
Michael Feil's avatar
Michael Feil committed
35
36
except ImportError:
    pass