[Bug Fix] Fix issue related to using embedding model from huggingface (#1242)

This commit is contained in:
Deshraj Yadav
2024-02-06 10:54:58 -08:00
committed by GitHub
parent 0e66261644
commit fa78c972be
2 changed files with 2 additions and 1 deletions

View File

@@ -59,6 +59,7 @@ class EmbedderFactory:
"openai": "embedchain.config.embedder.base.BaseEmbedderConfig", "openai": "embedchain.config.embedder.base.BaseEmbedderConfig",
"gpt4all": "embedchain.config.embedder.base.BaseEmbedderConfig", "gpt4all": "embedchain.config.embedder.base.BaseEmbedderConfig",
"google": "embedchain.config.embedder.google.GoogleAIEmbedderConfig", "google": "embedchain.config.embedder.google.GoogleAIEmbedderConfig",
"huggingface": "embedchain.config.embedder.base.BaseEmbedderConfig",
} }
@classmethod @classmethod

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "embedchain" name = "embedchain"
version = "0.1.72" version = "0.1.73"
description = "Simplest open source retrieval(RAG) framework" description = "Simplest open source retrieval(RAG) framework"
authors = [ authors = [
"Taranjeet Singh <taranjeet@embedchain.ai>", "Taranjeet Singh <taranjeet@embedchain.ai>",