mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-05 06:33:20 +00:00
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
import json
|
|
import logging
|
|
from typing import Optional, Type
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from pydantic import BaseModel, Field
|
|
|
|
from langchain_community.tools.slack.base import SlackBaseTool
|
|
|
|
|
|
class SlackGetMessageSchema(BaseModel):
|
|
"""Input schema for SlackGetMessages."""
|
|
|
|
channel_id: str = Field(
|
|
...,
|
|
description="The channel id, private group, or IM channel to send message to.",
|
|
)
|
|
|
|
|
|
class SlackGetMessage(SlackBaseTool):
|
|
"""Tool that gets Slack messages."""
|
|
|
|
name: str = "get_messages"
|
|
description: str = "Use this tool to get messages from a channel."
|
|
|
|
args_schema: Type[SlackGetMessageSchema] = SlackGetMessageSchema
|
|
|
|
def _run(
|
|
self,
|
|
channel_id: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
logging.getLogger(__name__)
|
|
try:
|
|
result = self.client.conversations_history(channel=channel_id)
|
|
messages = result["messages"]
|
|
filtered_messages = [
|
|
{key: message[key] for key in ("user", "text", "ts")}
|
|
for message in messages
|
|
if "user" in message and "text" in message and "ts" in message
|
|
]
|
|
return json.dumps(filtered_messages, ensure_ascii=False)
|
|
except Exception as e:
|
|
return "Error creating conversation: {}".format(e)
|