mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-24 08:27:50 +00:00
20 lines
603 B
Python
20 lines
603 B
Python
"""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
|