|
1 | 1 | ### AutoGen for .NET
|
2 | 2 |
|
3 | 3 | [](https://github.com/microsoft/autogen/actions/workflows/dotnet-build.yml)
|
| 4 | +[](https://badge.fury.io/nu/AutoGen.Core) |
4 | 5 |
|
5 |
| -#### Get start with AutoGen for dotnet |
6 |
| -Firstly, select one of the following package feed to consume AutoGen packages: |
7 |
| --   : https://nuget.pkg.github.com/microsoft/index.json |
8 |
| --   : https://www.myget.org/F/agentchat/api/v3/index.json |
9 |
| --    : https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/AutoGen/nuget/v3/index.json |
| 6 | +> [!NOTE] |
| 7 | +> Nightly build is available at: |
| 8 | +> -   : https://nuget.pkg.github.com/microsoft/index.json |
| 9 | +> -   : https://www.myget.org/F/agentchat/api/v3/index.json |
| 10 | +> -    : https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/AutoGen/nuget/v3/index.json |
10 | 11 |
|
11 | 12 |
|
12 |
| -Then, add the following to your project file: |
13 |
| -```xml |
14 |
| -<ItemGroup> |
15 |
| - <PackageReference Include="AutoGen" /> |
| 13 | +Firstly, following the [installation guide](./website/articles/Installation.md) to install AutoGen packages. |
16 | 14 |
|
17 |
| - <!-- Optional: This package carries a source generator that adds support for type-safe function definition generation. --> |
18 |
| - <!-- For more information, please check out AutoGen.SourceGenerator README --> |
19 |
| - <PackageReference Include="AutoGen.SourceGenerator" /> |
20 |
| - |
21 |
| - <!-- Optional: This packages carries dotnet interactive support to execute dotnet code snippet --> |
22 |
| - <PackageReference Include="AutoGen.DotnetInteractive" /> |
23 |
| -</ItemGroup> |
24 |
| -``` |
25 |
| - |
26 |
| -Then, start using AutoGen in your code: |
| 15 | +Then you can start with the following code snippet to create a conversable agent and chat with it. |
27 | 16 |
|
28 | 17 | ```csharp
|
29 | 18 | using AutoGen;
|
|
0 commit comments