ClickupToolkit#

class langchain_community.agent_toolkits.clickup.toolkit.ClickupToolkit[source]#

Bases: BaseToolkit

Clickup Toolkit.

Security Note: This toolkit contains tools that can read and modify

the state of a service; e.g., by reading, creating, updating, deleting data associated with this service.

See https://python.langchain.com/docs/security for more information.

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.

param tools: List[BaseTool] = []#
classmethod from_clickup_api_wrapper(clickup_api_wrapper: ClickupAPIWrapper) ClickupToolkit[source]#

Create a ClickupToolkit from a ClickupAPIWrapper.

Parameters:

clickup_api_wrapper (ClickupAPIWrapper) – ClickupAPIWrapper. The Clickup API wrapper.

Returns:

ClickupToolkit. The Clickup toolkit.

Return type:

ClickupToolkit

get_tools() List[BaseTool][source]#

Get the tools in the toolkit.

Return type:

List[BaseTool]

Examples using ClickupToolkit