https://docs.crewai.com/en/introduction
<aside> 💡
CrewAI is an Agent Framework that allows us to create agents to help us solve simple or complex tasks. Al agents assume roles, share goals, and operate in a cohesive unit
</aside>
Setup Conda Environment
Install CrewAI
pip install crewai
pip install 'crewai[tools]'
Create Project
This Gets the boiler plate code
crewai create crew your-project-name-here
from crewai import LLM
llm = LLM(
model="gemini/gemini-2.0-flash",
temperature=0.7,
)