Spaces:
Sleeping
Sleeping
File size: 230 Bytes
242d0cb |
1 2 3 4 5 6 7 8 9 |
from smolai import SmolAgent
from langchain.chat_models import ChatOpenAI
farmer_agent = SmolAgent(
name="FarmerAgent",
description="Handles farmer registrations and crop listings.",
llm=ChatOpenAI(temperature=0.7)
)
|