update nav

This commit is contained in:
zachary62
2025-04-04 14:03:22 -04:00
parent 2fa60fe7d5
commit 0426110e66
24 changed files with 261 additions and 32 deletions

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "LLM"
parent: "CrewAI"
nav_order: 6
---
# Chapter 6: LLM - The Agent's Brain
In the [previous chapter](05_process.md), we explored the `Process` - how the `Crew` organizes the workflow for its `Agent`s, deciding whether they work sequentially or are managed hierarchically. We now have specialized agents ([Agent](02_agent.md)), defined work ([Task](03_task.md)), useful abilities ([Tool](04_tool.md)), and a workflow strategy ([Process](05_process.md)).

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Memory"
parent: "CrewAI"
nav_order: 7
---
# Chapter 7: Memory - Giving Your Crew Recall
In the [previous chapter](06_llm.md), we looked at the Large Language Model ([LLM](06_llm.md)) the "brain" that allows each [Agent](02_agent.md) to understand, reason, and generate text. Now we have agents that can think, perform [Task](03_task.md)s using [Tool](04_tool.md)s, and follow a [Process](05_process.md).

View File

@@ -1,3 +1,10 @@
---
layout: default
title: "Knowledge"
parent: "CrewAI"
nav_order: 8
---
# Chapter 8: Knowledge - Providing External Information
In [Chapter 7: Memory](07_memory.md), we learned how to give our [Crew](01_crew.md) the ability to remember past interactions and details using `Memory`. This helps them maintain context within a single run and potentially across runs.