You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/community/tests/integration_tests/vectorstores/test_yellowbrick.py

65 lines
2.1 KiB
Python

from typing import List, Optional
import pytest
from langchain_community.docstore.document import Document
from langchain_community.vectorstores import Yellowbrick
from tests.integration_tests.vectorstores.fake_embeddings import (
FakeEmbeddings,
fake_texts,
)
YELLOWBRICK_URL = "postgres://username:password@host:port/database"
YELLOWBRICK_TABLE = "test_table"
def _yellowbrick_vector_from_texts(
metadatas: Optional[List[dict]] = None, drop: bool = True
) -> Yellowbrick:
return Yellowbrick.from_texts(
fake_texts,
FakeEmbeddings(),
metadatas,
YELLOWBRICK_URL,
YELLOWBRICK_TABLE,
)
@pytest.mark.requires("yb-vss")
def test_yellowbrick() -> None:
"""Test end to end construction and search."""
docsearch = _yellowbrick_vector_from_texts()
output = docsearch.similarity_search("foo", k=1)
docsearch.drop(YELLOWBRICK_TABLE)
assert output == [Document(page_content="foo", metadata={})]
@pytest.mark.requires("yb-vss")
def test_yellowbrick_with_score() -> None:
"""Test end to end construction and search with scores and IDs."""
texts = ["foo", "bar", "baz"]
metadatas = [{"page": i} for i in range(len(texts))]
docsearch = _yellowbrick_vector_from_texts(metadatas=metadatas)
output = docsearch.similarity_search_with_score("foo", k=3)
docs = [o[0] for o in output]
distances = [o[1] for o in output]
docsearch.drop(YELLOWBRICK_TABLE)
assert docs == [
Document(page_content="foo", metadata={"page": 0}),
Document(page_content="bar", metadata={"page": 1}),
Document(page_content="baz", metadata={"page": 2}),
]
assert distances[0] > distances[1] > distances[2]
@pytest.mark.requires("yb-vss")
def test_yellowbrick_add_extra() -> None:
"""Test end to end construction and MRR search."""
texts = ["foo", "bar", "baz"]
metadatas = [{"page": i} for i in range(len(texts))]
docsearch = _yellowbrick_vector_from_texts(metadatas=metadatas)
docsearch.add_texts(texts, metadatas)
output = docsearch.similarity_search("foo", k=10)
docsearch.drop(YELLOWBRICK_TABLE)
assert len(output) == 6