Skip to content

Commit d59e9f1

Browse files
authored
Merge pull request #707 from MicrosoftDocs/main
10/01 Publish
2 parents 16ddade + 3213c72 commit d59e9f1

64 files changed

Lines changed: 12553 additions & 439 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

agent-framework/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ items:
1717
- name: Workflows
1818
href: user-guide/workflows/TOC.yml
1919
- name: Migration Guide
20-
href: migration-guide/index.md
20+
href: migration-guide/TOC.yml
2121
- name: API Reference Guide
2222
items:

agent-framework/index.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@ productDirectory:
2525
- title: Quick Start
2626
imageSrc: /agent-framework/media/quick-start.svg
2727
links:
28-
- url: /agent-framework/get-started/quick-start-guide
28+
- url: /agent-framework/tutorials/quick-start
29+
text: Agent Framework Quick Start
30+
- url: /agent-framework/tutorials/overview
2931
text: Learn how to use Agent Framework
30-
- url: /agent-framework/get-started/detailed-samples
31-
text: Check out samples for Agent Framework
32+
- url: https://github.com/microsoft/agent-framework/tree/main/python/samples
33+
text: Check out Python samples for Agent Framework
34+
- url: https://github.com/microsoft/agent-framework/tree/main/dotnet/samples
35+
text: Check out C# samples for Agent Framework
3236
- title: Migration Guide
3337
imageSrc: /agent-framework/media/migration-guide.svg
3438
links:
35-
- url: /agent-framework/migration-guide/index
39+
- url: /agent-framework/migration-guide/from-autogen/index
40+
text: Migrate from Autogen to Agent Framework
41+
- url: /agent-framework/migration-guide/from-semantic-kernel/index
3642
text: Migrate from Semantic Kernel to Agent Framework

agent-framework/media/agent.mmd

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
sequenceDiagram
2+
participant User
3+
participant Agent
4+
participant LLM
5+
participant Tools/MCP
6+
7+
User->>Agent: User Message
8+
Agent->>Agent: Initialize with Prompt Instruction
9+
10+
rect rgb(240, 248, 255)
11+
Note over Agent,Tools/MCP: Agentic Loop (iterative until task complete)
12+
13+
Agent->>LLM: Send Request + Prompt + Context
14+
LLM->>LLM: Process & Decide Next Action
15+
16+
alt Tool/MCP Call Required
17+
LLM->>Agent: Return Tool/MCP Call Request
18+
Agent->>Tools/MCP: Execute Tool/MCP Function
19+
Tools/MCP->>Agent: Return Result
20+
Agent->>LLM: Send Tool Result + Updated Context
21+
Note over Agent,LLM: Loop continues with tool results
22+
else Task Complete
23+
LLM->>Agent: Return Final Response
24+
end
25+
end
26+
27+
Agent->>User: Final Response

agent-framework/media/agent.svg

Lines changed: 1 addition & 0 deletions
Loading

agent-framework/media/workflow.mmd

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
sequenceDiagram
2+
participant User
3+
participant Agent A
4+
participant Agent B
5+
participant Function C
6+
7+
User->>Agent A: Initial Input Task
8+
9+
rect rgb(240, 248, 255)
10+
Note over Agent A,Function C: Workflow Execution
11+
12+
Agent A->>Agent A: Process Task
13+
Agent A->>Agent B: Sub-task
14+
15+
Agent B->>Agent B: Process Task
16+
Agent B->>Function C: Sub-task
17+
18+
Function C->>Function C: Execute
19+
Function C->>User: Final Output
20+
end

agent-framework/media/workflow.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- name: Migrating from Autogen
2+
href: from-autogen/TOC.yml
3+
- name: Migrating from Semantic Kernel
4+
href: from-semantic-kernel/TOC.yml
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: Overview
2+
href: index.md

0 commit comments

Comments
 (0)