mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
110 lines
3.4 KiB
Python
110 lines
3.4 KiB
Python
from __future__ import annotations
|
|
|
|
import copy
|
|
from typing import TYPE_CHECKING, List
|
|
|
|
import pytest
|
|
from langchain_core.documents import Document
|
|
from pytest_mock import MockerFixture
|
|
|
|
from langchain_community.retrievers import ZepRetriever
|
|
|
|
if TYPE_CHECKING:
|
|
from zep_python import MemorySearchResult, ZepClient
|
|
|
|
|
|
@pytest.fixture
|
|
def search_results() -> List[MemorySearchResult]:
|
|
from zep_python import MemorySearchResult, Message
|
|
|
|
search_result = [
|
|
{
|
|
"message": {
|
|
"uuid": "66830914-19f5-490b-8677-1ba06bcd556b",
|
|
"created_at": "2023-05-18T20:40:42.743773Z",
|
|
"role": "user",
|
|
"content": "I'm looking to plan a trip to Iceland. Can you help me?",
|
|
"token_count": 17,
|
|
},
|
|
"summary": None,
|
|
"dist": 0.8734284910450115,
|
|
},
|
|
{
|
|
"message": {
|
|
"uuid": "015e618c-ba9d-45b6-95c3-77a8e611570b",
|
|
"created_at": "2023-05-18T20:40:42.743773Z",
|
|
"role": "user",
|
|
"content": "How much does a trip to Iceland typically cost?",
|
|
"token_count": 12,
|
|
},
|
|
"summary": None,
|
|
"dist": 0.8554048017463456,
|
|
},
|
|
]
|
|
|
|
return [
|
|
MemorySearchResult(
|
|
message=Message.parse_obj(result["message"]),
|
|
summary=result["summary"],
|
|
dist=result["dist"],
|
|
)
|
|
for result in search_result
|
|
]
|
|
|
|
|
|
@pytest.fixture
|
|
@pytest.mark.requires("zep_python")
|
|
def zep_retriever(
|
|
mocker: MockerFixture, search_results: List[MemorySearchResult]
|
|
) -> ZepRetriever:
|
|
mock_zep_client: ZepClient = mocker.patch("zep_python.ZepClient", autospec=True)
|
|
mock_zep_client.memory = mocker.patch(
|
|
"zep_python.memory.client.MemoryClient", autospec=True
|
|
)
|
|
mock_zep_client.memory.search_memory.return_value = copy.deepcopy( # type: ignore
|
|
search_results
|
|
)
|
|
mock_zep_client.memory.asearch_memory.return_value = copy.deepcopy( # type: ignore
|
|
search_results
|
|
)
|
|
zep = ZepRetriever(session_id="123", url="http://localhost:8000")
|
|
zep.zep_client = mock_zep_client
|
|
return zep
|
|
|
|
|
|
@pytest.mark.requires("zep_python")
|
|
def test_zep_retriever_get_relevant_documents(
|
|
zep_retriever: ZepRetriever, search_results: List[MemorySearchResult]
|
|
) -> None:
|
|
documents: List[Document] = zep_retriever.get_relevant_documents(
|
|
query="My trip to Iceland"
|
|
)
|
|
_test_documents(documents, search_results)
|
|
|
|
|
|
@pytest.mark.requires("zep_python")
|
|
async def test_zep_retriever_aget_relevant_documents(
|
|
zep_retriever: ZepRetriever, search_results: List[MemorySearchResult]
|
|
) -> None:
|
|
documents: List[Document] = await zep_retriever.aget_relevant_documents(
|
|
query="My trip to Iceland"
|
|
)
|
|
_test_documents(documents, search_results)
|
|
|
|
|
|
def _test_documents(
|
|
documents: List[Document], search_results: List[MemorySearchResult]
|
|
) -> None:
|
|
assert len(documents) == 2
|
|
for i, document in enumerate(documents):
|
|
assert document.page_content == search_results[i].message.get( # type: ignore
|
|
"content"
|
|
)
|
|
assert document.metadata.get("uuid") == search_results[i].message.get( # type: ignore
|
|
"uuid"
|
|
)
|
|
assert document.metadata.get("role") == search_results[i].message.get( # type: ignore
|
|
"role"
|
|
)
|
|
assert document.metadata.get("score") == search_results[i].dist
|