2024-01-01 22:37:35 +00:00
|
|
|
"""Test Bytedance Volcano Embedding."""
|
|
|
|
from langchain_community.embeddings import VolcanoEmbeddings
|
|
|
|
|
|
|
|
|
|
|
|
def test_embedding_documents() -> None:
|
|
|
|
"""Test embeddings for documents."""
|
|
|
|
documents = ["foo", "bar"]
|
2024-05-13 18:55:07 +00:00
|
|
|
embedding = VolcanoEmbeddings() # type: ignore[call-arg]
|
2024-01-01 22:37:35 +00:00
|
|
|
output = embedding.embed_documents(documents)
|
|
|
|
assert len(output) == 2
|
|
|
|
assert len(output[0]) == 1024
|
|
|
|
|
|
|
|
|
|
|
|
def test_embedding_query() -> None:
|
|
|
|
"""Test embeddings for query."""
|
|
|
|
document = "foo bar"
|
2024-05-13 18:55:07 +00:00
|
|
|
embedding = VolcanoEmbeddings() # type: ignore[call-arg]
|
2024-01-01 22:37:35 +00:00
|
|
|
output = embedding.embed_query(document)
|
|
|
|
assert len(output) == 1024
|