Add Huggingface embeddings and Cohere embeddings (#63)
* Add huggingface embeddings and cohere embeddings * Update openai interface and the mock for newer OpenAI SDK --------- Co-authored-by: trducng <trungduc1992@gmail.com>
This commit is contained in:
12
knowledgehub/embeddings/cohere.py
Normal file
12
knowledgehub/embeddings/cohere.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from langchain.embeddings import CohereEmbeddings as LCCohereEmbeddings
|
||||
|
||||
from kotaemon.embeddings.base import LangchainEmbeddings
|
||||
|
||||
|
||||
class CohereEmbdeddings(LangchainEmbeddings):
|
||||
"""Cohere embeddings.
|
||||
|
||||
This class wraps around the Langchain CohereEmbeddings class.
|
||||
"""
|
||||
|
||||
_lc_class = LCCohereEmbeddings
|
Reference in New Issue
Block a user