mirror of
				https://github.com/hwchase17/langchain.git
				synced 2025-11-04 10:10:09 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Integration test for Wikipedia API Wrapper."""
 | 
						|
from typing import List
 | 
						|
 | 
						|
import pytest
 | 
						|
from langchain_core.documents import Document
 | 
						|
 | 
						|
from langchain_community.utilities import WikipediaAPIWrapper
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture
 | 
						|
def api_client() -> WikipediaAPIWrapper:
 | 
						|
    return WikipediaAPIWrapper()
 | 
						|
 | 
						|
 | 
						|
def test_run_success(api_client: WikipediaAPIWrapper) -> None:
 | 
						|
    output = api_client.run("HUNTER X HUNTER")
 | 
						|
    assert "Yoshihiro Togashi" in output
 | 
						|
 | 
						|
 | 
						|
def test_run_no_result(api_client: WikipediaAPIWrapper) -> None:
 | 
						|
    output = api_client.run(
 | 
						|
        "NORESULTCALL_NORESULTCALL_NORESULTCALL_NORESULTCALL_NORESULTCALL_NORESULTCALL"
 | 
						|
    )
 | 
						|
    assert "No good Wikipedia Search Result was found" == output
 | 
						|
 | 
						|
 | 
						|
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", "summary", "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)
 | 
						|
 | 
						|
 | 
						|
def test_load_success(api_client: WikipediaAPIWrapper) -> None:
 | 
						|
    docs = api_client.load("HUNTER X HUNTER")
 | 
						|
    assert len(docs) > 1
 | 
						|
    assert len(docs) <= 3
 | 
						|
    assert_docs(docs, all_meta=False)
 | 
						|
 | 
						|
 | 
						|
def test_load_success_all_meta(api_client: WikipediaAPIWrapper) -> None:
 | 
						|
    api_client.load_all_available_meta = True
 | 
						|
    docs = api_client.load("HUNTER X HUNTER")
 | 
						|
    assert len(docs) > 1
 | 
						|
    assert len(docs) <= 3
 | 
						|
    assert_docs(docs, all_meta=True)
 | 
						|
 | 
						|
 | 
						|
def test_load_more_docs_success(api_client: WikipediaAPIWrapper) -> None:
 | 
						|
    top_k_results = 20
 | 
						|
    api_client = WikipediaAPIWrapper(top_k_results=top_k_results)
 | 
						|
    docs = api_client.load("HUNTER X HUNTER")
 | 
						|
    assert len(docs) > 10
 | 
						|
    assert len(docs) <= top_k_results
 | 
						|
    assert_docs(docs, all_meta=False)
 | 
						|
 | 
						|
 | 
						|
def test_load_no_result(api_client: WikipediaAPIWrapper) -> None:
 | 
						|
    docs = api_client.load(
 | 
						|
        "NORESULTCALL_NORESULTCALL_NORESULTCALL_NORESULTCALL_NORESULTCALL_NORESULTCALL"
 | 
						|
    )
 | 
						|
    assert not docs
 |