mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-29 21:30:18 +00:00
Harrison/jina (#2043)
Co-authored-by: numb3r3 <wangfelix87@gmail.com> Co-authored-by: felix-wang <35718120+numb3r3@users.noreply.github.com>
This commit is contained in:
19
tests/integration_tests/embeddings/test_jina.py
Normal file
19
tests/integration_tests/embeddings/test_jina.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""Test jina embeddings."""
|
||||
from langchain.embeddings.jina import JinaEmbeddings
|
||||
|
||||
|
||||
def test_jina_embedding_documents() -> None:
|
||||
"""Test jina embeddings for documents."""
|
||||
documents = ["foo bar", "bar foo"]
|
||||
embedding = JinaEmbeddings()
|
||||
output = embedding.embed_documents(documents)
|
||||
assert len(output) == 2
|
||||
assert len(output[0]) == 512
|
||||
|
||||
|
||||
def test_jina_embedding_query() -> None:
|
||||
"""Test jina embeddings for query."""
|
||||
document = "foo bar"
|
||||
embedding = JinaEmbeddings()
|
||||
output = embedding.embed_query(document)
|
||||
assert len(output) == 512
|
||||
Reference in New Issue
Block a user