JiraToolkit#

class langchain_community.agent_toolkits.jira.toolkit.JiraToolkit[source]#

Bases: BaseToolkit

Jira Toolkit.

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

the state of a service; e.g., by creating, deleting, or updating, reading underlying data.

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_jira_api_wrapper(jira_api_wrapper: JiraAPIWrapper) JiraToolkit[source]#

Create a JiraToolkit from a JiraAPIWrapper.

Parameters:

jira_api_wrapper (JiraAPIWrapper) – JiraAPIWrapper. The Jira API wrapper.

Returns:

JiraToolkit. The Jira toolkit.

Return type:

JiraToolkit

get_tools() List[BaseTool][source]#

Get the tools in the toolkit.

Return type:

List[BaseTool]

Examples using JiraToolkit