FarmFreshSVG / agents /marketplace_agent.py
taarhissian's picture
Create marketplace_agent.py
567e479 verified
raw
history blame contribute delete
261 Bytes
from smolai import SmolAgent
from langchain.chat_models import ChatOpenAI
marketplace_agent = SmolAgent(
name="MarketplaceAgent",
description="Assists customers in searching for crops and making recommendations.",
llm=ChatOpenAI(temperature=0.7)
)