Add Litellm support (#1493)

This commit is contained in:
Dev Khant
2024-07-18 12:19:48 +05:30
committed by GitHub
parent fb5a3bfd95
commit c411dc294e
6 changed files with 899 additions and 3 deletions

View File

@@ -13,7 +13,8 @@ class LlmFactory:
"openai": "mem0.llms.openai.OpenAILLM",
"groq": "mem0.llms.groq.GroqLLM",
"together": "mem0.llms.together.TogetherLLM",
"aws_bedrock": "mem0.llms.aws_bedrock.AWSBedrockLLM"
"aws_bedrock": "mem0.llms.aws_bedrock.AWSBedrockLLM",
"litellm": "mem0.llms.litellm.LiteLLM",
}
@classmethod