mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-01 02:50:47 +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:
@@ -28,6 +28,9 @@ class ClickupToolkit(BaseToolkit):
|
||||
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.
|
||||
"""
|
||||
|
||||
tools: List[BaseTool] = []
|
||||
@@ -36,6 +39,14 @@ class ClickupToolkit(BaseToolkit):
|
||||
def from_clickup_api_wrapper(
|
||||
cls, clickup_api_wrapper: ClickupAPIWrapper
|
||||
) -> "ClickupToolkit":
|
||||
"""Create a ClickupToolkit from a ClickupAPIWrapper.
|
||||
|
||||
Args:
|
||||
clickup_api_wrapper: ClickupAPIWrapper. The Clickup API wrapper.
|
||||
|
||||
Returns:
|
||||
ClickupToolkit. The Clickup toolkit.
|
||||
"""
|
||||
operations: List[Dict] = [
|
||||
{
|
||||
"mode": "get_task",
|
||||
|
Reference in New Issue
Block a user