mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
25fbe356b4
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
"""Test LASER embeddings."""
|
|
import pytest
|
|
|
|
from langchain_community.embeddings.laser import LaserEmbeddings
|
|
|
|
|
|
@pytest.mark.filterwarnings("ignore::UserWarning:")
|
|
@pytest.mark.parametrize("lang", [None, "lus_Latn", "english"])
|
|
def test_laser_embedding_documents(lang: str) -> None:
|
|
"""Test laser embeddings for documents.
|
|
User warning is returned by LASER library implementation
|
|
so will ignore in testing."""
|
|
documents = ["hello", "world"]
|
|
embedding = LaserEmbeddings(lang=lang) # type: ignore[call-arg]
|
|
output = embedding.embed_documents(documents)
|
|
assert len(output) == 2 # type: ignore[arg-type]
|
|
assert len(output[0]) == 1024 # type: ignore[index]
|
|
|
|
|
|
@pytest.mark.filterwarnings("ignore::UserWarning:")
|
|
@pytest.mark.parametrize("lang", [None, "lus_Latn", "english"])
|
|
def test_laser_embedding_query(lang: str) -> None:
|
|
"""Test laser embeddings for query.
|
|
User warning is returned by LASER library implementation
|
|
so will ignore in testing."""
|
|
query = "hello world"
|
|
embedding = LaserEmbeddings(lang=lang) # type: ignore[call-arg]
|
|
output = embedding.embed_query(query)
|
|
assert len(output) == 1024
|