Spaces:
Sleeping
Sleeping
| from smolai import SmolAgent | |
| from langchain.chat_models import ChatOpenAI | |
| advisor_agent = SmolAgent( | |
| name="FarmingAdvisorAgent", | |
| description="Gives farming tips and advice based on queries.", | |
| llm=ChatOpenAI(temperature=0.7) | |
| ) | |