mirror of
https://github.com/aljazceru/Tutorial-Codebase-Knowledge.git
synced 2026-02-03 05:34:30 +01:00
init push
This commit is contained in:
46
docs/CrewAI/index.md
Normal file
46
docs/CrewAI/index.md
Normal file
@@ -0,0 +1,46 @@
|
||||
# Tutorial: CrewAI
|
||||
|
||||
**CrewAI** is a framework for orchestrating *autonomous AI agents*.
|
||||
Think of it like building a specialized team (a **Crew**) where each member (**Agent**) has a role, goal, and tools.
|
||||
You assign **Tasks** to Agents, defining what needs to be done. The **Crew** manages how these Agents collaborate, following a specific **Process** (like sequential steps).
|
||||
Agents use their "brain" (an **LLM**) and can utilize **Tools** (like web search) and access shared **Memory** or external **Knowledge** bases to complete their tasks effectively.
|
||||
|
||||
|
||||
**Source Repository:** [https://github.com/crewAIInc/crewAI/tree/e723e5ca3fb7e4cb890c4befda47746aedbd7408/src/crewai](https://github.com/crewAIInc/crewAI/tree/e723e5ca3fb7e4cb890c4befda47746aedbd7408/src/crewai)
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
A0["Agent"]
|
||||
A1["Task"]
|
||||
A2["Crew"]
|
||||
A3["Tool"]
|
||||
A4["Process"]
|
||||
A5["LLM"]
|
||||
A6["Memory"]
|
||||
A7["Knowledge"]
|
||||
A2 -- "Manages" --> A0
|
||||
A2 -- "Orchestrates" --> A1
|
||||
A2 -- "Defines workflow" --> A4
|
||||
A2 -- "Manages shared" --> A6
|
||||
A0 -- "Executes" --> A1
|
||||
A0 -- "Uses" --> A3
|
||||
A0 -- "Uses as brain" --> A5
|
||||
A0 -- "Queries" --> A7
|
||||
A1 -- "Assigned to" --> A0
|
||||
```
|
||||
|
||||
## Chapters
|
||||
|
||||
1. [Crew](01_crew.md)
|
||||
2. [Agent](02_agent.md)
|
||||
3. [Task](03_task.md)
|
||||
4. [Tool](04_tool.md)
|
||||
5. [Process](05_process.md)
|
||||
6. [LLM](06_llm.md)
|
||||
7. [Memory](07_memory.md)
|
||||
8. [Knowledge](08_knowledge.md)
|
||||
|
||||
|
||||
---
|
||||
|
||||
Generated by [AI Codebase Knowledge Builder](https://github.com/The-Pocket/Tutorial-Codebase-Knowledge)
|
||||
Reference in New Issue
Block a user