ZapierToolkit#
- class langchain_community.agent_toolkits.zapier.toolkit.ZapierToolkit[source]#
Bases:
BaseToolkit
Zapier Toolkit.
- Parameters:
tools – List[BaseTool]. The tools in the toolkit. Default is an empty list.
Create a new model by parsing and validating input data from keyword arguments.
Raises ValidationError if the input data cannot be parsed to form a valid model.
- async classmethod async_from_zapier_nla_wrapper(zapier_nla_wrapper: ZapierNLAWrapper) ZapierToolkit [source]#
Async create a toolkit from a ZapierNLAWrapper.
- Parameters:
zapier_nla_wrapper (ZapierNLAWrapper) – ZapierNLAWrapper. The Zapier NLA wrapper.
- Returns:
ZapierToolkit. The Zapier toolkit.
- Return type:
- classmethod from_zapier_nla_wrapper(zapier_nla_wrapper: ZapierNLAWrapper) ZapierToolkit [source]#
Create a toolkit from a ZapierNLAWrapper.
- Parameters:
zapier_nla_wrapper (ZapierNLAWrapper) – ZapierNLAWrapper. The Zapier NLA wrapper.
- Returns:
ZapierToolkit. The Zapier toolkit.
- Return type:
Examples using ZapierToolkit