FarmFreshSVG / agents /health_agent.py
taarhissian's picture
Create health_agent.py
5024167 verified
raw
history blame contribute delete
225 Bytes
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)
)