Source code for langchain.tools.office365.base

"""Base class for Office 365 tools."""
from __future__ import annotations

from typing import TYPE_CHECKING

from pydantic import Field

from langchain.tools.base import BaseTool
from langchain.tools.office365.utils import authenticate

if TYPE_CHECKING:
    from O365 import Account


[docs]class O365BaseTool(BaseTool): """Base class for the Office 365 tools.""" account: Account = Field(default_factory=authenticate) """The account object for the Office 365 account."""