mirror of
https://github.com/langchain-ai/agents-from-scratch-ts.git
synced 2026-07-01 21:34:00 -04:00
18 lines
419 B
Python
18 lines
419 B
Python
"""Gmail tools for email assistant."""
|
|
|
|
from src.email_assistant.tools.gmail.gmail_tools import (
|
|
fetch_emails_tool,
|
|
send_email_tool,
|
|
check_calendar_tool,
|
|
schedule_meeting_tool
|
|
)
|
|
|
|
from src.email_assistant.tools.gmail.prompt_templates import GMAIL_TOOLS_PROMPT
|
|
|
|
__all__ = [
|
|
"fetch_emails_tool",
|
|
"send_email_tool",
|
|
"check_calendar_tool",
|
|
"schedule_meeting_tool",
|
|
"GMAIL_TOOLS_PROMPT"
|
|
] |