mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
e271f75bee
**Description** Updated the URLs in deprecation warning messages. The URLs were previously written as raw strings and are now formatted to be clickable HTML links. Example of a broken link in the current API Reference: https://api.python.langchain.com/en/latest/chains/langchain.chains.openai_functions.extraction.create_extraction_chain_pydantic.html <img width="942" alt="Screenshot 2024-06-18 at 13 21 07" src="https://github.com/langchain-ai/langchain/assets/4854600/a1b1863c-cd03-4af2-a9bc-70375407fb00">
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
"""[DEPRECATED] Zapier Toolkit."""
|
|
from typing import List
|
|
|
|
from langchain_core._api import warn_deprecated
|
|
from langchain_core.tools import BaseToolkit
|
|
|
|
from langchain_community.tools import BaseTool
|
|
from langchain_community.tools.zapier.tool import ZapierNLARunAction
|
|
from langchain_community.utilities.zapier import ZapierNLAWrapper
|
|
|
|
|
|
class ZapierToolkit(BaseToolkit):
|
|
"""Zapier Toolkit."""
|
|
|
|
tools: List[BaseTool] = []
|
|
|
|
@classmethod
|
|
def from_zapier_nla_wrapper(
|
|
cls, zapier_nla_wrapper: ZapierNLAWrapper
|
|
) -> "ZapierToolkit":
|
|
"""Create a toolkit from a ZapierNLAWrapper."""
|
|
actions = zapier_nla_wrapper.list()
|
|
tools = [
|
|
ZapierNLARunAction(
|
|
action_id=action["id"],
|
|
zapier_description=action["description"],
|
|
params_schema=action["params"],
|
|
api_wrapper=zapier_nla_wrapper,
|
|
)
|
|
for action in actions
|
|
]
|
|
return cls(tools=tools) # type: ignore[arg-type]
|
|
|
|
@classmethod
|
|
async def async_from_zapier_nla_wrapper(
|
|
cls, zapier_nla_wrapper: ZapierNLAWrapper
|
|
) -> "ZapierToolkit":
|
|
"""Create a toolkit from a ZapierNLAWrapper."""
|
|
actions = await zapier_nla_wrapper.alist()
|
|
tools = [
|
|
ZapierNLARunAction(
|
|
action_id=action["id"],
|
|
zapier_description=action["description"],
|
|
params_schema=action["params"],
|
|
api_wrapper=zapier_nla_wrapper,
|
|
)
|
|
for action in actions
|
|
]
|
|
return cls(tools=tools) # type: ignore[arg-type]
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
warn_deprecated(
|
|
since="0.0.319",
|
|
message=(
|
|
"This tool will be deprecated on 2023-11-17. See "
|
|
"<https://nla.zapier.com/sunset/> for details"
|
|
),
|
|
)
|
|
return self.tools
|