update nav

This commit is contained in:
zachary62
2025-04-04 13:48:54 -04:00
parent 14df136587
commit 2fa60fe7d5
38 changed files with 159 additions and 286 deletions

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Crew"
parent: "CrewAI"
nav_order: 1
---
# Chapter 1: Crew - Your AI Team Manager
Welcome to the world of CrewAI! We're excited to help you build teams of AI agents that can work together to accomplish complex tasks.

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Agent"
parent: "CrewAI"
nav_order: 2
---
# Chapter 2: Agent - Your Specialized AI Worker
In [Chapter 1](01_crew.md), we learned about the `Crew` the manager that organizes our AI team. But a manager needs a team to manage! That's where `Agent`s come in.

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Task"
parent: "CrewAI"
nav_order: 3
---
# Chapter 3: Task - Defining the Work
In [Chapter 1](01_crew.md), we met the `Crew` - our AI team manager. In [Chapter 2](02_agent.md), we met the `Agent`s - our specialized AI workers. Now, we need to tell these agents *exactly* what to do. How do we give them specific assignments?

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Tool"
parent: "CrewAI"
nav_order: 4
---
# Chapter 4: Tool - Equipping Your Agents
In [Chapter 3: Task](03_task.md), we learned how to define specific assignments (`Task`s) for our AI `Agent`s. We told the 'Travel Researcher' agent to find sunny cities and the 'Activity Planner' agent to create an itinerary.

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Process"
parent: "CrewAI"
nav_order: 5
---
# Chapter 5: Process - Orchestrating the Workflow
In [Chapter 4: Tool](04_tool.md), we learned how to give our [Agent](02_agent.md)s special abilities using `Tool`s, like searching the web. Now we have specialized agents, defined tasks, and equipped agents. But how do they actually *work together*? Does Agent 1 finish its work before Agent 2 starts? Or is there a manager overseeing everything?

View File

@@ -34,20 +34,4 @@ flowchart TD
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)
```