You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/tests/integration_tests/embeddings/test_tensorflow_hub.py

20 lines
607 B
Python

"""Test TensorflowHub embeddings."""
from langchain.embeddings import TensorflowHubEmbeddings
def test_tensorflowhub_embedding_documents() -> None:
"""Test tensorflowhub embeddings."""
documents = ["foo bar"]
embedding = TensorflowHubEmbeddings()
output = embedding.embed_documents(documents)
assert len(output) == 1
assert len(output[0]) == 512
def test_tensorflowhub_embedding_query() -> None:
"""Test tensorflowhub embeddings."""
document = "foo bar"
embedding = TensorflowHubEmbeddings()
output = embedding.embed_query(document)
assert len(output) == 512