mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
69 lines
1.7 KiB
Python
69 lines
1.7 KiB
Python
|
from typing import List, Optional, Type
|
||
|
|
||
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
||
|
from langchain_core.pydantic_v1 import BaseModel, Field
|
||
|
|
||
|
from langchain_community.tools.office365.base import O365BaseTool
|
||
|
|
||
|
|
||
|
class SendMessageSchema(BaseModel):
|
||
|
"""Input for SendMessageTool."""
|
||
|
|
||
|
body: str = Field(
|
||
|
...,
|
||
|
description="The message body to be sent.",
|
||
|
)
|
||
|
to: List[str] = Field(
|
||
|
...,
|
||
|
description="The list of recipients.",
|
||
|
)
|
||
|
subject: str = Field(
|
||
|
...,
|
||
|
description="The subject of the message.",
|
||
|
)
|
||
|
cc: Optional[List[str]] = Field(
|
||
|
None,
|
||
|
description="The list of CC recipients.",
|
||
|
)
|
||
|
bcc: Optional[List[str]] = Field(
|
||
|
None,
|
||
|
description="The list of BCC recipients.",
|
||
|
)
|
||
|
|
||
|
|
||
|
class O365SendMessage(O365BaseTool):
|
||
|
"""Tool for sending an email in Office 365."""
|
||
|
|
||
|
name: str = "send_email"
|
||
|
description: str = (
|
||
|
"Use this tool to send an email with the provided message fields."
|
||
|
)
|
||
|
args_schema: Type[SendMessageSchema] = SendMessageSchema
|
||
|
|
||
|
def _run(
|
||
|
self,
|
||
|
body: str,
|
||
|
to: List[str],
|
||
|
subject: str,
|
||
|
cc: Optional[List[str]] = None,
|
||
|
bcc: Optional[List[str]] = None,
|
||
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
||
|
) -> str:
|
||
|
# Get mailbox object
|
||
|
mailbox = self.account.mailbox()
|
||
|
message = mailbox.new_message()
|
||
|
|
||
|
# Assign message values
|
||
|
message.body = body
|
||
|
message.subject = subject
|
||
|
message.to.add(to)
|
||
|
if cc is not None:
|
||
|
message.cc.add(cc)
|
||
|
if bcc is not None:
|
||
|
message.bcc.add(bcc)
|
||
|
|
||
|
message.send()
|
||
|
|
||
|
output = "Message sent: " + str(message)
|
||
|
return output
|