Spaces:
Runtime error
Runtime error
File size: 275 Bytes
c6421b9 57d78b2 c6421b9 57d78b2 c6421b9 | 1 2 3 4 5 6 7 8 | 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) |