File size: 225 Bytes
5024167
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from smolai import SmolAgent
from langchain.chat_models import ChatOpenAI

health_agent = SmolAgent(
    name="HealthAgent",
    description="Provides health benefits of various crops.",
    llm=ChatOpenAI(temperature=0.7)
)