mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
20 lines
460 B
Python
20 lines
460 B
Python
|
"""Base class for Slack tools."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from typing import TYPE_CHECKING
|
||
|
|
||
|
from langchain_core.pydantic_v1 import Field
|
||
|
from langchain_core.tools import BaseTool
|
||
|
|
||
|
from langchain_community.tools.slack.utils import login
|
||
|
|
||
|
if TYPE_CHECKING:
|
||
|
from slack_sdk import WebClient
|
||
|
|
||
|
|
||
|
class SlackBaseTool(BaseTool):
|
||
|
"""Base class for Slack tools."""
|
||
|
|
||
|
client: WebClient = Field(default_factory=login)
|
||
|
"""The WebClient object."""
|