Skip to content

Commit 6d9fb2e

Browse files
committed
fix(docs): correct .NET package references and versions in installation guide- Fix version format from 0.4.0-dev-1 to 0.4.0-dev.1 for all packages- Remove reference to non-existent Microsoft.AutoGen.Extensions package- Add correct extension packages: Aspire, MEAI, and SemanticKernel- Fix typo: RuntimeGatewway -> RuntimeGateway- Improve documentation structure with clear section headersFixes #6244
1 parent c683175 commit 6d9fb2e

1 file changed

Lines changed: 23 additions & 9 deletions

File tree

docs/dotnet/core/installation.md

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,37 @@ Or, add via `<PackageReference>`
2626
The *Core* and *Contracts* packages will give you what you need for writing and running agents using the Core API within a single process.
2727

2828
- *Microsoft.AutoGen.AgentChat* - An implementation of the AgentChat package for building chat-centric agent orchestration on top of the Core SDK
29-
- *Microsoft.AutoGen.Agents* - a package that has a small number of default agents you can use.
30-
- *Microsoft.AutoGen.Extensions* - Extensions to support closely related projects including Aspire, Microsoft.Extensions.AI, and Semantic Kernel
29+
- *Microsoft.AutoGen.Agents* - a package that has a small number of default agents you can use.
3130

3231
```sh
33-
dotnet add package Microsoft.AutoGen.AgentChat --version 0.4.0-dev-1
34-
dotnet add package Microsoft.AutoGen.Agents --version 0.4.0-dev-1
35-
dotnet add package Microsoft.AutoGen.Extensions --version 0.4.0-dev-1
32+
dotnet add package Microsoft.AutoGen.AgentChat --version 0.4.0-dev.1
33+
dotnet add package Microsoft.AutoGen.Agents --version 0.4.0-dev.1
3634
```
3735

36+
## Extension Packages
37+
38+
Extensions to support closely related projects:
39+
40+
- *Microsoft.AutoGen.Extensions.Aspire* - Extensions for .NET Aspire integration
41+
- *Microsoft.AutoGen.Extensions.MEAI* - Extensions for Microsoft.Extensions.AI integration
42+
- *Microsoft.AutoGen.Extensions.SemanticKernel* - Extensions for Semantic Kernel integration
43+
44+
```sh
45+
dotnet add package Microsoft.AutoGen.Extensions.Aspire --version 0.4.0-dev.1
46+
dotnet add package Microsoft.AutoGen.Extensions.MEAI --version 0.4.0-dev.1
47+
dotnet add package Microsoft.AutoGen.Extensions.SemanticKernel --version 0.4.0-dev.1
48+
```
49+
50+
## Distributed System Packages
51+
3852
To enable running a system with agents in different processes that allows for x-language communication between python and .NET agents, there are additional packages:
3953

4054
- *Microsoft.AutoGen.Core.Grpc* - the .NET client runtime for agents in a distributed system. It has the same API as *Microsoft.AutoGen.Core*.
41-
- *Microsoft.AutoGen.RuntimeGatewway.Grpc* - the .NET server side of the distributed system that allows you to run multiple gateways to manage fleets of agents and enables x-language interoperability.
55+
- *Microsoft.AutoGen.RuntimeGateway.Grpc* - the .NET server side of the distributed system that allows you to run multiple gateways to manage fleets of agents and enables x-language interoperability.
4256
- *Microsoft.AutoGen.AgentHost* - A .NET Aspire project that hosts the Grpc Service
4357

4458
```sh
45-
dotnet add package Microsoft.AutoGen.Core.Grpc --version 0.4.0-dev-1
46-
dotnet add package Microsoft.AutoGen.RuntimeGateway.Grpc --version 0.4.0-dev-1
47-
dotnet add package Microsoft.AutoGen.AgentHost --version 0.4.0-dev-1
59+
dotnet add package Microsoft.AutoGen.Core.Grpc --version 0.4.0-dev.1
60+
dotnet add package Microsoft.AutoGen.RuntimeGateway.Grpc --version 0.4.0-dev.1
61+
dotnet add package Microsoft.AutoGen.AgentHost --version 0.4.0-dev.1
4862
```

0 commit comments

Comments
 (0)