summaryrefslogtreecommitdiff
path: root/server/continuedev/libs/llm/__init__.py
blob: 829ffede4877b0b4ee095c5034c42e2b176204db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .anthropic import AnthropicLLM  # noqa: F401
from .ggml import GGML  # noqa: F401
from .google_palm_api import GooglePaLMAPI  # noqa: F401
from .hf_inference_api import HuggingFaceInferenceAPI  # noqa: F401
from .hf_tgi import HuggingFaceTGI  # noqa: F401
from .llamacpp import LlamaCpp  # noqa: F401
from .ollama import Ollama  # noqa: F401
from .openai import OpenAI  # noqa: F401
from .openai_free_trial import OpenAIFreeTrial  # noqa: F401
from .proxy_server import ProxyServer  # noqa: F401
from .queued import QueuedLLM  # noqa: F401
from .replicate import ReplicateLLM  # noqa: F401
from .text_gen_interface import TextGenUI  # noqa: F401
from .together import TogetherLLM  # noqa: F401