[Feature] Add support for Groq LLMs (#1284)

This commit is contained in:
Deshraj Yadav
2024-02-25 11:58:03 -08:00
committed by GitHub
parent b4bb4cf053
commit 92dd7edb57
6 changed files with 105 additions and 3 deletions

View File

@@ -23,6 +23,7 @@ class LlmFactory:
"google": "embedchain.llm.google.GoogleLlm",
"aws_bedrock": "embedchain.llm.aws_bedrock.AWSBedrockLlm",
"mistralai": "embedchain.llm.mistralai.MistralAILlm",
"groq": "embedchain.llm.groq.GroqLlm",
}
provider_to_config_class = {
"embedchain": "embedchain.config.llm.base.BaseLlmConfig",