
    Ng                        d dl mZ d dlmZmZ d dlmZ d dlmZ d dl	m
Z
mZ d dlmZ d dlmZ d dlmZ d d	lmZ d d
lmZ d dlmZ erd dlmZ n	 d dlmZ n# e$ r Y nw xY wdgZ G d de          ZdS )    )annotations)TYPE_CHECKINGList)BaseTool)BaseToolkit)
ConfigDictField)GmailCreateDraft)GmailGetMessage)GmailGetThread)GmailSearch)GmailSendMessage)build_resource_service)Resourcezhttps://mail.google.com/c                  V    e Zd ZU dZ ee          Zded<    ed          Z	dd	Z
d
S )GmailToolkitaY  Toolkit for interacting with Gmail.

    *Security Note*: This toolkit contains tools that can read and modify
        the state of a service; e.g., by reading, creating, updating, deleting
        data associated with this service.

        For example, this toolkit can be used to send emails on behalf of the
        associated account.

        See https://python.langchain.com/docs/security for more information.

    Setup:
        You will need a Google credentials.json file to use this toolkit.
        See instructions here: https://python.langchain.com/docs/integrations/tools/gmail/#setup

    Key init args:
        api_resource: Optional. The Google API resource. Default is None.

    Instantiate:
        .. code-block:: python

            from langchain_google_community import GmailToolkit

            toolkit = GmailToolkit()

    Tools:
        .. code-block:: python

            toolkit.get_tools()

        .. code-block:: none

            [GmailCreateDraft(api_resource=<googleapiclient.discovery.Resource object at 0x1094509d0>),
            GmailSendMessage(api_resource=<googleapiclient.discovery.Resource object at 0x1094509d0>),
            GmailSearch(api_resource=<googleapiclient.discovery.Resource object at 0x1094509d0>),
            GmailGetMessage(api_resource=<googleapiclient.discovery.Resource object at 0x1094509d0>),
            GmailGetThread(api_resource=<googleapiclient.discovery.Resource object at 0x1094509d0>)]

    Use within an agent:
        .. code-block:: python

            from langchain_openai import ChatOpenAI
            from langgraph.prebuilt import create_react_agent

            llm = ChatOpenAI(model="gpt-4o-mini")

            agent_executor = create_react_agent(llm, tools)

            example_query = "Draft an email to fake@fake.com thanking them for coffee."

            events = agent_executor.stream(
                {"messages": [("user", example_query)]},
                stream_mode="values",
            )
            for event in events:
                event["messages"][-1].pretty_print()

        .. code-block:: none

             ================================[1m Human Message [0m=================================

            Draft an email to fake@fake.com thanking them for coffee.
            ==================================[1m Ai Message [0m==================================
            Tool Calls:
            create_gmail_draft (call_slGkYKZKA6h3Mf1CraUBzs6M)
            Call ID: call_slGkYKZKA6h3Mf1CraUBzs6M
            Args:
                message: Dear Fake,

            I wanted to take a moment to thank you for the coffee yesterday. It was a pleasure catching up with you. Let's do it again soon!

            Best regards,
            [Your Name]
                to: ['fake@fake.com']
                subject: Thank You for the Coffee
            =================================[1m Tool Message [0m=================================
            Name: create_gmail_draft

            Draft created. Draft Id: r-7233782721440261513
            ==================================[1m Ai Message [0m==================================

            I have drafted an email to fake@fake.com thanking them for the coffee. You can review and send it from your email draft with the subject "Thank You for the Coffee".

    Parameters:
        api_resource: Optional. The Google API resource. Default is None.
    )default_factoryr   api_resourceT)arbitrary_types_allowedreturnList[BaseTool]c                    t          | j                  t          | j                  t          | j                  t	          | j                  t          | j                  gS )zGet the tools in the toolkit.)r   )r
   r   r   r   r   r   )selfs    l/var/www/html/ai-engine/env/lib/python3.11/site-packages/langchain_community/agent_toolkits/gmail/toolkit.py	get_toolszGmailToolkit.get_tools|   sc     $*;<<<$*;<<<T%6777):;;;(9:::
 	
    N)r   r   )__name__
__module____qualname____doc__r	   r   r   __annotations__r   model_configr    r   r   r   r      sq         U Un #U3IJJJLJJJJ: $  L
 
 
 
 
 
r   r   N)
__future__r   typingr   r   langchain_core.toolsr   langchain_core.tools.baser   pydanticr   r	   ,langchain_community.tools.gmail.create_draftr
   +langchain_community.tools.gmail.get_messager   *langchain_community.tools.gmail.get_threadr   &langchain_community.tools.gmail.searchr   ,langchain_community.tools.gmail.send_messager   %langchain_community.tools.gmail.utilsr   googleapiclient.discoveryr   ImportErrorSCOPESr   r#   r   r   <module>r2      sv   " " " " " " & & & & & & & & ) ) ) ) ) ) 1 1 1 1 1 1 & & & & & & & & I I I I I I G G G G G G E E E E E E > > > > > > I I I I I I H H H H H H 22222226666666    %	%f
 f
 f
 f
 f
; f
 f
 f
 f
 f
s   A A A 