mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-23 19:39:58 +00:00
community: Repair embeddings/llamacpp's embed_query method (#29935)
**Description:** As commented on the commit [41b6a86
](41b6a86bbe
) it introduced a bug for when we do an embedding request and the model returns a non-nested list. Typically it's the case for model **_nomic-embed-text_**. - I added the unit test, and ran `make format`, `make lint` and `make test` from the `community` package. - No new dependency. --------- Co-authored-by: Chester Curme <chester.curme@gmail.com>
This commit is contained in:
@@ -139,7 +139,7 @@ class LlamaCppEmbeddings(BaseModel, Embeddings):
|
||||
Embeddings for the text.
|
||||
"""
|
||||
embedding = self.client.embed(text)
|
||||
if not isinstance(embedding, list):
|
||||
return list(map(float, embedding))
|
||||
else:
|
||||
if embedding and isinstance(embedding, list) and isinstance(embedding[0], list):
|
||||
return list(map(float, embedding[0]))
|
||||
else:
|
||||
return list(map(float, embedding))
|
||||
|
Reference in New Issue
Block a user