mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-03 12:07:36 +00:00
community: toolkits
docstrings (#23286)
Added missed docstrings. Formatted docstrings to the consistent form. --------- Co-authored-by: ccurme <chester.curme@gmail.com>
This commit is contained in:
@@ -22,12 +22,24 @@ class JiraToolkit(BaseToolkit):
|
||||
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.
|
||||
"""
|
||||
|
||||
tools: List[BaseTool] = []
|
||||
|
||||
@classmethod
|
||||
def from_jira_api_wrapper(cls, jira_api_wrapper: JiraAPIWrapper) -> "JiraToolkit":
|
||||
"""Create a JiraToolkit from a JiraAPIWrapper.
|
||||
|
||||
Args:
|
||||
jira_api_wrapper: JiraAPIWrapper. The Jira API wrapper.
|
||||
|
||||
Returns:
|
||||
JiraToolkit. The Jira toolkit.
|
||||
"""
|
||||
|
||||
operations: List[Dict] = [
|
||||
{
|
||||
"mode": "jql",
|
||||
|
Reference in New Issue
Block a user