langchain/tests/integration_tests/embeddings/test_huggingface.py

20 lines
603 B
Python
Raw Normal View History

"""Test huggingface embeddings."""
from langchain.embeddings.huggingface import HuggingFaceEmbeddings
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
def test_huggingface_embedding_query() -> None:
"""Test huggingface embeddings."""
document = "foo bar"
embedding = HuggingFaceEmbeddings()
output = embedding.embed_query(document)
assert len(output) == 768