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.
22 lines
728 B
Python
22 lines
728 B
Python
"""Test edenai embeddings."""
|
|
|
|
from langchain_community.embeddings.edenai import EdenAiEmbeddings
|
|
|
|
|
|
def test_edenai_embedding_documents() -> None:
|
|
"""Test edenai embeddings with openai."""
|
|
documents = ["foo bar", "test text"]
|
|
embedding = EdenAiEmbeddings(provider="openai") # type: ignore[call-arg]
|
|
output = embedding.embed_documents(documents)
|
|
assert len(output) == 2
|
|
assert len(output[0]) == 1536
|
|
assert len(output[1]) == 1536
|
|
|
|
|
|
def test_edenai_embedding_query() -> None:
|
|
"""Test eden ai embeddings with google."""
|
|
document = "foo bar"
|
|
embedding = EdenAiEmbeddings(provider="google") # type: ignore[call-arg]
|
|
output = embedding.embed_query(document)
|
|
assert len(output) == 768
|