Quick Start
Install the Dead Simple Email package with LangChain support:
pip install deadsimple[langchain] langchain langchain-openai
Initialize the toolkit and get your tools in two lines:
from deadsimple.integrations.langchain import DeadSimpleEmailToolkit toolkit = DeadSimpleEmailToolkit(api_key="dse_your_api_key") tools = toolkit.get_tools()
That gives you a list of LangChain-compatible tools ready to pass into any agent. The toolkit handles authentication and API calls under the hood.