forked from Archives/langchain
95dd2f140e
This fixes Issue #104 The tests for HF Embeddings is skipped because of the segfault issue mentioned there. Perhaps, a new issue should be created for that?
24 lines
714 B
Python
24 lines
714 B
Python
"""Test huggingface embeddings."""
|
|
import unittest
|
|
|
|
from langchain.embeddings.huggingface import HuggingFaceEmbeddings
|
|
|
|
|
|
@unittest.skip("This test causes a segfault.")
|
|
def test_huggingface_embedding_documents() -> None:
|
|
"""Test huggingface embeddings."""
|
|
documents = ["foo bar"]
|
|
embedding = HuggingFaceEmbeddings()
|
|
output = embedding.embed_documents(documents)
|
|
assert len(output) == 1
|
|
assert len(output[0]) == 768
|
|
|
|
|
|
@unittest.skip("This test causes a segfault.")
|
|
def test_huggingface_embedding_query() -> None:
|
|
"""Test huggingface embeddings."""
|
|
document = "foo bar"
|
|
embedding = HuggingFaceEmbeddings()
|
|
output = embedding.embed_query(document)
|
|
assert len(output) == 768
|