o
    {qi                     @   sh   d Z ddlmZmZ ddlmZ erddlmZmZ dddZ	ee
e	dZded	efd
dZddgZdS )a  
This module provides dynamic access to deprecated Zapier tools in LangChain.

It supports backward compatibility by forwarding references such as
`ZapierNLAListActions` and `ZapierNLARunAction` to their updated locations
in the `langchain_community.tools` package.

Developers using older import paths will continue to function, while LangChain
internally redirects access to the newer, supported module structure.
    )TYPE_CHECKINGAny)create_importer)ZapierNLAListActionsZapierNLARunActionzlangchain_community.tools)r   r   )Zdeprecated_lookupsnamereturnc                 C   s   t | S )a[  
    Dynamically retrieve attributes from the updated module path.

    This method is used to resolve deprecated attribute imports
    at runtime and forward them to their new locations.

    Args:
        name (str): The name of the attribute to import.

    Returns:
        Any: The resolved attribute from the appropriate updated module.
    )_import_attribute)r    r
   b/home/app/PaddleOCR-VL/.venv_paddleocr/lib/python3.10/site-packages/langchain/tools/zapier/tool.py__getattr__   s   r   r   r   N)__doc__typingr   r   Zlangchain._apir   Zlangchain_community.toolsr   r   ZDEPRECATED_LOOKUP__package__r	   strr   __all__r
   r
   r
   r   <module>   s    