mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
78 lines
2.7 KiB
Python
78 lines
2.7 KiB
Python
|
from typing import Any, Callable, Dict, List
|
||
|
|
||
|
from langchain_core.documents import Document
|
||
|
from langchain_core.pydantic_v1 import BaseModel, root_validator
|
||
|
|
||
|
from langchain_community.document_loaders.base import BaseLoader
|
||
|
|
||
|
|
||
|
class ApifyDatasetLoader(BaseLoader, BaseModel):
|
||
|
"""Load datasets from `Apify` web scraping, crawling, and data extraction platform.
|
||
|
|
||
|
For details, see https://docs.apify.com/platform/integrations/langchain
|
||
|
|
||
|
Example:
|
||
|
.. code-block:: python
|
||
|
|
||
|
from langchain_community.document_loaders import ApifyDatasetLoader
|
||
|
from langchain_core.documents import Document
|
||
|
|
||
|
loader = ApifyDatasetLoader(
|
||
|
dataset_id="YOUR-DATASET-ID",
|
||
|
dataset_mapping_function=lambda dataset_item: Document(
|
||
|
page_content=dataset_item["text"], metadata={"source": dataset_item["url"]}
|
||
|
),
|
||
|
)
|
||
|
documents = loader.load()
|
||
|
""" # noqa: E501
|
||
|
|
||
|
apify_client: Any
|
||
|
"""An instance of the ApifyClient class from the apify-client Python package."""
|
||
|
dataset_id: str
|
||
|
"""The ID of the dataset on the Apify platform."""
|
||
|
dataset_mapping_function: Callable[[Dict], Document]
|
||
|
"""A custom function that takes a single dictionary (an Apify dataset item)
|
||
|
and converts it to an instance of the Document class."""
|
||
|
|
||
|
def __init__(
|
||
|
self, dataset_id: str, dataset_mapping_function: Callable[[Dict], Document]
|
||
|
):
|
||
|
"""Initialize the loader with an Apify dataset ID and a mapping function.
|
||
|
|
||
|
Args:
|
||
|
dataset_id (str): The ID of the dataset on the Apify platform.
|
||
|
dataset_mapping_function (Callable): A function that takes a single
|
||
|
dictionary (an Apify dataset item) and converts it to an instance
|
||
|
of the Document class.
|
||
|
"""
|
||
|
super().__init__(
|
||
|
dataset_id=dataset_id, dataset_mapping_function=dataset_mapping_function
|
||
|
)
|
||
|
|
||
|
@root_validator()
|
||
|
def validate_environment(cls, values: Dict) -> Dict:
|
||
|
"""Validate environment.
|
||
|
|
||
|
Args:
|
||
|
values: The values to validate.
|
||
|
"""
|
||
|
|
||
|
try:
|
||
|
from apify_client import ApifyClient
|
||
|
|
||
|
values["apify_client"] = ApifyClient()
|
||
|
except ImportError:
|
||
|
raise ImportError(
|
||
|
"Could not import apify-client Python package. "
|
||
|
"Please install it with `pip install apify-client`."
|
||
|
)
|
||
|
|
||
|
return values
|
||
|
|
||
|
def load(self) -> List[Document]:
|
||
|
"""Load documents."""
|
||
|
dataset_items = (
|
||
|
self.apify_client.dataset(self.dataset_id).list_items(clean=True).items
|
||
|
)
|
||
|
return list(map(self.dataset_mapping_function, dataset_items))
|