anthropic working

This commit is contained in:
Alex
2023-10-28 19:51:12 +01:00
parent e54d46aae1
commit 04b4001277
6 changed files with 105 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ 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
@@ -11,7 +12,8 @@ class LLMCreator:
'azure_openai': AzureOpenAILLM,
'sagemaker': SagemakerAPILLM,
'huggingface': HuggingFaceLLM,
'llama.cpp': LlamaCpp
'llama.cpp': LlamaCpp,
'anthropic': AnthropicLLM
}
@classmethod