FarmFreshSVG / agents /advisor_agent.py
taarhissian's picture
Create advisor_agent.py
d34c53e verified
raw
history blame
239 Bytes
from smolai import SmolAgent
from langchain.chat_models import ChatOpenAI
advisor_agent = SmolAgent(
name="FarmingAdvisorAgent",
description="Gives farming tips and advice based on queries.",
llm=ChatOpenAI(temperature=0.7)
)