mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-14 14:05:37 +00:00
Harrison/embaas (#6010)
Co-authored-by: Julius Lipp <43986145+juliuslipp@users.noreply.github.com>
This commit is contained in:
58
tests/integration_tests/embeddings/test_embaas.py
Normal file
58
tests/integration_tests/embeddings/test_embaas.py
Normal file
@@ -0,0 +1,58 @@
|
||||
"""Test embaas embeddings."""
|
||||
import responses
|
||||
|
||||
from langchain.embeddings.embaas import EMBAAS_API_URL, EmbaasEmbeddings
|
||||
|
||||
|
||||
def test_embaas_embed_documents() -> None:
|
||||
"""Test embaas embeddings with multiple texts."""
|
||||
texts = ["foo bar", "bar foo", "foo"]
|
||||
embedding = EmbaasEmbeddings()
|
||||
output = embedding.embed_documents(texts)
|
||||
assert len(output) == 3
|
||||
assert len(output[0]) == 1024
|
||||
assert len(output[1]) == 1024
|
||||
assert len(output[2]) == 1024
|
||||
|
||||
|
||||
def test_embaas_embed_query() -> None:
|
||||
"""Test embaas embeddings with multiple texts."""
|
||||
text = "foo"
|
||||
embeddings = EmbaasEmbeddings()
|
||||
output = embeddings.embed_query(text)
|
||||
assert len(output) == 1024
|
||||
|
||||
|
||||
def test_embaas_embed_query_instruction() -> None:
|
||||
"""Test embaas embeddings with a different instruction."""
|
||||
text = "Test"
|
||||
instruction = "query"
|
||||
embeddings = EmbaasEmbeddings(instruction=instruction)
|
||||
output = embeddings.embed_query(text)
|
||||
assert len(output) == 1024
|
||||
|
||||
|
||||
def test_embaas_embed_query_model() -> None:
|
||||
"""Test embaas embeddings with a different model."""
|
||||
text = "Test"
|
||||
model = "instructor-large"
|
||||
instruction = "Represent the query for retrieval"
|
||||
embeddings = EmbaasEmbeddings(model=model, instruction=instruction)
|
||||
output = embeddings.embed_query(text)
|
||||
assert len(output) == 768
|
||||
|
||||
|
||||
@responses.activate
|
||||
def test_embaas_embed_documents_response() -> None:
|
||||
"""Test embaas embeddings with multiple texts."""
|
||||
responses.add(
|
||||
responses.POST,
|
||||
EMBAAS_API_URL,
|
||||
json={"data": [{"embedding": [0.0] * 1024}]},
|
||||
status=200,
|
||||
)
|
||||
|
||||
text = "asd"
|
||||
embeddings = EmbaasEmbeddings()
|
||||
output = embeddings.embed_query(text)
|
||||
assert len(output) == 1024
|
Reference in New Issue
Block a user