Spaces:
Sleeping
Sleeping
File size: 261 Bytes
567e479 |
1 2 3 4 5 6 7 8 9 |
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)
)
|