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
156 lines
4.8 KiB
Python
156 lines
4.8 KiB
Python
from pathlib import Path
|
|
from typing import Any
|
|
|
|
import pytest
|
|
|
|
from langchain_community.document_loaders import SitemapLoader
|
|
from langchain_community.document_loaders.sitemap import _extract_scheme_and_domain
|
|
|
|
|
|
def test_sitemap() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader("https://api.python.langchain.com/sitemap.xml")
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "LangChain Python API" in documents[0].page_content
|
|
|
|
|
|
def test_sitemap_block() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml", blocksize=1, blocknum=1
|
|
)
|
|
documents = loader.load()
|
|
assert len(documents) == 1
|
|
assert "LangChain Python API" in documents[0].page_content
|
|
|
|
|
|
def test_sitemap_block_only_one() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml", blocksize=1000000, blocknum=0
|
|
)
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "LangChain Python API" in documents[0].page_content
|
|
|
|
|
|
def test_sitemap_block_blocknum_default() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml", blocksize=1000000
|
|
)
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "LangChain Python API" in documents[0].page_content
|
|
|
|
|
|
def test_sitemap_block_size_to_small() -> None:
|
|
"""Test sitemap loader."""
|
|
with pytest.raises(ValueError, match="Sitemap blocksize should be at least 1"):
|
|
SitemapLoader("https://api.python.langchain.com/sitemap.xml", blocksize=0)
|
|
|
|
|
|
def test_sitemap_block_num_to_small() -> None:
|
|
"""Test sitemap loader."""
|
|
with pytest.raises(ValueError, match="Sitemap blocknum can not be lower then 0"):
|
|
SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml",
|
|
blocksize=1000000,
|
|
blocknum=-1,
|
|
)
|
|
|
|
|
|
def test_sitemap_block_does_not_exists() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml", blocksize=1000000, blocknum=15
|
|
)
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="Selected sitemap does not contain enough blocks for given blocknum",
|
|
):
|
|
loader.load()
|
|
|
|
|
|
def test_filter_sitemap() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml",
|
|
filter_urls=["https://api.python.langchain.com/en/stable/"],
|
|
)
|
|
documents = loader.load()
|
|
assert len(documents) == 1
|
|
assert "LangChain Python API" in documents[0].page_content
|
|
|
|
|
|
def test_sitemap_metadata() -> None:
|
|
def sitemap_metadata_one(meta: dict, _content: None) -> dict:
|
|
return {**meta, "mykey": "Super Important Metadata"}
|
|
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml",
|
|
meta_function=sitemap_metadata_one,
|
|
)
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "mykey" in documents[0].metadata
|
|
assert "Super Important Metadata" in documents[0].metadata["mykey"]
|
|
|
|
|
|
def test_sitemap_metadata_extraction() -> None:
|
|
def sitemap_metadata_two(meta: dict, content: Any) -> dict:
|
|
title = content.find("title")
|
|
if title:
|
|
return {**meta, "title": title.get_text()}
|
|
return meta
|
|
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader(
|
|
"https://api.python.langchain.com/sitemap.xml",
|
|
meta_function=sitemap_metadata_two,
|
|
)
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "title" in documents[0].metadata
|
|
assert "LangChain" in documents[0].metadata["title"]
|
|
|
|
|
|
def test_sitemap_metadata_default() -> None:
|
|
"""Test sitemap loader."""
|
|
loader = SitemapLoader("https://api.python.langchain.com/sitemap.xml")
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "source" in documents[0].metadata
|
|
assert "loc" in documents[0].metadata
|
|
|
|
|
|
def test_local_sitemap() -> None:
|
|
"""Test sitemap loader."""
|
|
file_path = Path(__file__).parent.parent / "examples/sitemap.xml"
|
|
loader = SitemapLoader(str(file_path), is_local=True)
|
|
documents = loader.load()
|
|
assert len(documents) > 1
|
|
assert "🦜️🔗" in documents[0].page_content
|
|
|
|
|
|
def test_extract_domain() -> None:
|
|
"""Test domain extraction."""
|
|
assert _extract_scheme_and_domain("https://js.langchain.com/sitemap.xml") == (
|
|
"https",
|
|
"js.langchain.com",
|
|
)
|
|
assert _extract_scheme_and_domain("http://example.com/path/to/page") == (
|
|
"http",
|
|
"example.com",
|
|
)
|
|
assert _extract_scheme_and_domain("ftp://files.example.com") == (
|
|
"ftp",
|
|
"files.example.com",
|
|
)
|
|
assert _extract_scheme_and_domain("https://deep.subdomain.example.com") == (
|
|
"https",
|
|
"deep.subdomain.example.com",
|
|
)
|