mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-03 23:15:37 +00:00
24 lines
767 B
Python
24 lines
767 B
Python
from application.llm.openai import OpenAILLM, AzureOpenAILLM
|
|
from application.llm.sagemaker import SagemakerAPILLM
|
|
from application.llm.huggingface import HuggingFaceLLM
|
|
from application.llm.llama_cpp import LlamaCpp
|
|
from application.llm.anthropic import AnthropicLLM
|
|
|
|
|
|
|
|
class LLMCreator:
|
|
llms = {
|
|
'openai': OpenAILLM,
|
|
'azure_openai': AzureOpenAILLM,
|
|
'sagemaker': SagemakerAPILLM,
|
|
'huggingface': HuggingFaceLLM,
|
|
'llama.cpp': LlamaCpp,
|
|
'anthropic': AnthropicLLM
|
|
}
|
|
|
|
@classmethod
|
|
def create_llm(cls, type, *args, **kwargs):
|
|
llm_class = cls.llms.get(type.lower())
|
|
if not llm_class:
|
|
raise ValueError(f"No LLM class found for type {type}")
|
|
return llm_class(*args, **kwargs) |