EmailAgentwithMemory / app /agents /email_writing_agent.py
Gaykar's picture
made changes in tools and graph
57d78b2
raw
history blame contribute delete
275 Bytes
from langchain_groq import ChatGroq
from app.tools.email_writing_agent_tools import create_gmail_draft, send_draft
base_llm = ChatGroq(
model="qwen/qwen3-32b",
temperature=0.1,
)
tools = [create_gmail_draft, send_draft]
email_agent = base_llm.bind_tools(tools)