Skip to content

Commit

Permalink
[fix]
Browse files Browse the repository at this point in the history
  • Loading branch information
keenborder786 committed Jan 8, 2024
1 parent 7ce3382 commit 3ca1356
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions libs/community/langchain_community/tools/slack/get_channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ class SlackGetChannel(SlackBaseTool):
"""Tool that gets Slack channel information."""

name: str = "get_channelid_name_dict"
description: str = "Use this tool to get channelid-name dict."
description: str = (
"Use this tool to get channelid-name dict. Their is no input to this tool"
)

def _run(
self,
run_manager: Optional[CallbackManagerForToolRun] = None,
self, *args, run_manager: Optional[CallbackManagerForToolRun] = None
) -> str:
try:
logging.getLogger(__name__)
Expand Down

0 comments on commit 3ca1356

Please sign in to comment.