Documentation

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>


Jargon


Initializing Project

  1. Setup Conda Environment

    Conda

  2. Install CrewAI

    pip install crewai
    pip install 'crewai[tools]'
    
  3. Create Project

    This Gets the boiler plate code

    crewai create crew your-project-name-here
    

Configuring Gemini

from crewai import LLM

llm = LLM(
    model="gemini/gemini-2.0-flash",
    temperature=0.7,
)

Problems in Crew AI