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
117 lines
3.1 KiB
Python
117 lines
3.1 KiB
Python
"""Integration test for Outline API Wrapper."""
|
|
from typing import List
|
|
|
|
import pytest
|
|
import responses
|
|
from langchain_core.documents import Document
|
|
|
|
from langchain_community.utilities import OutlineAPIWrapper
|
|
|
|
OUTLINE_INSTANCE_TEST_URL = "https://app.getoutline.com"
|
|
OUTLINE_SUCCESS_RESPONSE = {
|
|
"data": [
|
|
{
|
|
"ranking": 0.3911583,
|
|
"context": "Testing Context",
|
|
"document": {
|
|
"id": "abb2bf15-a597-4255-8b19-b742e3d037bf",
|
|
"url": "/doc/quick-start-jGuGGGOTuL",
|
|
"title": "Test Title",
|
|
"text": "Testing Content",
|
|
"createdBy": {"name": "John Doe"},
|
|
"revision": 3,
|
|
"collectionId": "93f182a4-a591-4d47-83f0-752e7bb2065c",
|
|
"parentDocumentId": None,
|
|
},
|
|
},
|
|
],
|
|
"status": 200,
|
|
"ok": True,
|
|
}
|
|
|
|
OUTLINE_EMPTY_RESPONSE = {
|
|
"data": [],
|
|
"status": 200,
|
|
"ok": True,
|
|
}
|
|
|
|
OUTLINE_ERROR_RESPONSE = {
|
|
"ok": False,
|
|
"error": "authentication_required",
|
|
"status": 401,
|
|
"message": "Authentication error",
|
|
}
|
|
|
|
|
|
@pytest.fixture
|
|
def api_client() -> OutlineAPIWrapper:
|
|
return OutlineAPIWrapper(
|
|
outline_api_key="api_key", outline_instance_url=OUTLINE_INSTANCE_TEST_URL
|
|
)
|
|
|
|
|
|
def assert_docs(docs: List[Document], all_meta: bool = False) -> None:
|
|
for doc in docs:
|
|
assert doc.page_content
|
|
assert doc.metadata
|
|
main_meta = {"title", "source"}
|
|
assert set(doc.metadata).issuperset(main_meta)
|
|
if all_meta:
|
|
assert len(set(doc.metadata)) > len(main_meta)
|
|
else:
|
|
assert len(set(doc.metadata)) == len(main_meta)
|
|
|
|
|
|
@responses.activate
|
|
def test_run_success(api_client: OutlineAPIWrapper) -> None:
|
|
responses.add(
|
|
responses.POST,
|
|
api_client.outline_instance_url + api_client.outline_search_endpoint,
|
|
json=OUTLINE_SUCCESS_RESPONSE,
|
|
status=200,
|
|
)
|
|
|
|
docs = api_client.run("Testing")
|
|
assert_docs(docs, all_meta=False)
|
|
|
|
|
|
@responses.activate
|
|
def test_run_success_all_meta(api_client: OutlineAPIWrapper) -> None:
|
|
api_client.load_all_available_meta = True
|
|
responses.add(
|
|
responses.POST,
|
|
api_client.outline_instance_url + api_client.outline_search_endpoint,
|
|
json=OUTLINE_SUCCESS_RESPONSE,
|
|
status=200,
|
|
)
|
|
|
|
docs = api_client.run("Testing")
|
|
assert_docs(docs, all_meta=True)
|
|
|
|
|
|
@responses.activate
|
|
def test_run_no_result(api_client: OutlineAPIWrapper) -> None:
|
|
responses.add(
|
|
responses.POST,
|
|
api_client.outline_instance_url + api_client.outline_search_endpoint,
|
|
json=OUTLINE_EMPTY_RESPONSE,
|
|
status=200,
|
|
)
|
|
|
|
docs = api_client.run("No Result Test")
|
|
assert not docs
|
|
|
|
|
|
@responses.activate
|
|
def test_run_error(api_client: OutlineAPIWrapper) -> None:
|
|
responses.add(
|
|
responses.POST,
|
|
api_client.outline_instance_url + api_client.outline_search_endpoint,
|
|
json=OUTLINE_ERROR_RESPONSE,
|
|
status=401,
|
|
)
|
|
try:
|
|
api_client.run("Testing")
|
|
except Exception as e:
|
|
assert "Outline API returned an error:" in str(e)
|