Skip to content

Commit 14df136

Browse files
committed
update nav
1 parent 9213f1e commit 14df136

35 files changed

+239
-1
lines changed

docs/AutoGen Core/01_agent.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "Agent"
4+
parent: "AutoGen Core"
5+
nav_order: 1
6+
---
7+
18
# Chapter 1: Agent - The Workers of AutoGen
29

310
Welcome to the AutoGen Core tutorial! We're excited to guide you through building powerful applications with autonomous agents.

docs/AutoGen Core/02_messaging_system__topic___subscription_.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "Messaging System"
4+
parent: "AutoGen Core"
5+
nav_order: 2
6+
---
7+
18
# Chapter 2: Messaging System (Topic & Subscription)
29

310
In [Chapter 1: Agent](01_agent.md), we learned about Agents as individual workers. But how do they coordinate when one agent doesn't know exactly *who* needs the information it produces? Imagine our Researcher finds some facts. Maybe the Writer needs them, but maybe a Fact-Checker agent or a Summary agent also needs them later. How can the Researcher just announce "Here are the facts!" without needing a specific mailing list?

docs/AutoGen Core/03_agentruntime.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "AgentRuntime"
4+
parent: "AutoGen Core"
5+
nav_order: 3
6+
---
7+
18
# Chapter 3: AgentRuntime - The Office Manager
29

310
In [Chapter 1: Agent](01_agent.md), we met the workers (`Agent`) of our system. In [Chapter 2: Messaging System](02_messaging_system__topic___subscription_.md), we saw how they can communicate broadly using topics and subscriptions. But who hires these agents? Who actually delivers the messages, whether direct or published? And who keeps the whole system running smoothly?

docs/AutoGen Core/04_tool.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "Tool"
4+
parent: "AutoGen Core"
5+
nav_order: 4
6+
---
7+
18
# Chapter 4: Tool - Giving Agents Specific Capabilities
29

310
In the previous chapters, we learned about Agents as workers ([Chapter 1](01_agent.md)), how they can communicate directly or using announcements ([Chapter 2](02_messaging_system__topic___subscription_.md)), and the `AgentRuntime` that manages them ([Chapter 3](03_agentruntime.md)).

docs/AutoGen Core/05_chatcompletionclient.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "ChatCompletionClient"
4+
parent: "AutoGen Core"
5+
nav_order: 5
6+
---
7+
18
# Chapter 5: ChatCompletionClient - Talking to the Brains
29

310
So far, we've learned about:

docs/AutoGen Core/06_chatcompletioncontext.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "ChatCompletionContext"
4+
parent: "AutoGen Core"
5+
nav_order: 6
6+
---
7+
18
# Chapter 6: ChatCompletionContext - Remembering the Conversation
29

310
In [Chapter 5: ChatCompletionClient](05_chatcompletionclient.md), we learned how agents talk to Large Language Models (LLMs) using a `ChatCompletionClient`. We saw that we need to send a list of `messages` (the conversation history) to the LLM so it knows the context.

docs/AutoGen Core/07_memory.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "Memory"
4+
parent: "AutoGen Core"
5+
nav_order: 7
6+
---
7+
18
# Chapter 7: Memory - The Agent's Notebook
29

310
In [Chapter 6: ChatCompletionContext](06_chatcompletioncontext.md), we saw how agents manage the *short-term* history of a single conversation before talking to an LLM. It's like remembering what was just said in the last few minutes.

docs/AutoGen Core/08_component.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "Component"
4+
parent: "AutoGen Core"
5+
nav_order: 8
6+
---
7+
18
# Chapter 8: Component - The Standardized Building Blocks
29

310
Welcome to Chapter 8! In our journey so far, we've met several key players in AutoGen Core:

docs/AutoGen Core/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "AutoGen Core"
4+
nav_order: 3
5+
has_children: true
6+
---
7+
18
# Tutorial: AutoGen Core
29

310
AutoGen Core helps you build applications with multiple **_Agents_** that can work together.

docs/Browser Use/01_agent.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
layout: default
3+
title: "Agent"
4+
parent: "Browser Use"
5+
nav_order: 1
6+
---
7+
18
# Chapter 1: The Agent - Your Browser Assistant's Brain
29

310
Welcome to the `Browser Use` tutorial! We're excited to help you learn how to automate web tasks using the power of Large Language Models (LLMs).

0 commit comments

Comments
 (0)