Skip to content

Commit 850377c

Browse files
bassmangjackgerritsrysweet
authored
fix: Various fixes and cleanups to dotnet autogen core (microsoft#5242)
Co-authored-by: Jack Gerrits <[email protected]> Co-authored-by: Ryan Sweet <[email protected]>
1 parent 2e83d72 commit 850377c

File tree

124 files changed

+281
-322
lines changed

Some content is hidden

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

124 files changed

+281
-322
lines changed

dotnet/AutoGen.sln

+19-60
Large diffs are not rendered by default.

dotnet/README.md

+1-1

dotnet/samples/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs dotnet/samples/AgentChat/AutoGen.Anthropic.Sample/Anthropic_Agent_With_Prompt_Caching.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using AutoGen.Anthropic.Utils;
77
using AutoGen.Core;
88

9-
namespace AutoGen.Anthropic.Samples;
9+
namespace AutoGen.Anthropic.Sample;
1010

1111
public class Anthropic_Agent_With_Prompt_Caching
1212
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<ProjectReference Include="..\..\..\src\AutoGen.Anthropic\AutoGen.Anthropic.csproj" />
13+
<ProjectReference Include="..\..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
14+
<ProjectReference Include="..\..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
15+
<ProjectReference Include="..\..\..\src\AutoGen\AutoGen.csproj" />
16+
<PackageReference Include="FluentAssertions" />
17+
</ItemGroup>
18+
19+
</Project>

dotnet/samples/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs dotnet/samples/AgentChat/AutoGen.Anthropic.Sample/Create_Anthropic_Agent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using AutoGen.Anthropic.Utils;
66
using AutoGen.Core;
77

8-
namespace AutoGen.Anthropic.Samples;
8+
namespace AutoGen.Anthropic.Sample;
99

1010
public static class Create_Anthropic_Agent
1111
{

dotnet/samples/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs dotnet/samples/AgentChat/AutoGen.Anthropic.Sample/Create_Anthropic_Agent_With_Tool.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using AutoGen.Core;
88
using FluentAssertions;
99

10-
namespace AutoGen.Anthropic.Samples;
10+
namespace AutoGen.Anthropic.Sample;
1111

1212
#region WeatherFunction
1313

dotnet/samples/AutoGen.Anthropic.Samples/Program.cs dotnet/samples/AgentChat/AutoGen.Anthropic.Sample/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Program.cs
33

4-
namespace AutoGen.Anthropic.Samples;
4+
namespace AutoGen.Anthropic.Sample;
55

66
internal static class Program
77
{

dotnet/samples/AutoGen.BasicSamples/AutoGen.BasicSample.csproj dotnet/samples/AgentChat/AutoGen.Basic.Sample/AutoGen.Basic.Sample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<ProjectReference Include="..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
14-
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
15-
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
13+
<ProjectReference Include="..\..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
14+
<ProjectReference Include="..\..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
15+
<ProjectReference Include="..\..\..\src\AutoGen\AutoGen.csproj" />
1616
<PackageReference Include="FluentAssertions" />
1717
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Web" />
1818
<PackageReference Include="Microsoft.Extensions.AI" />

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/AgentCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using AutoGen.Core;
55

6-
namespace AutoGen.BasicSample.CodeSnippet;
6+
namespace AutoGen.Basic.Sample.CodeSnippet;
77

88
internal class AgentCodeSnippet
99
{

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/BuildInMessageCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// BuildInMessageCodeSnippet.cs
33

44
using AutoGen.Core;
5-
namespace AutoGen.BasicSample.CodeSnippet;
5+
namespace AutoGen.Basic.Sample.CodeSnippet;
66

77
internal class BuildInMessageCodeSnippet
88
{

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/MiddlewareAgentCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using AutoGen.OpenAI;
77
using FluentAssertions;
88

9-
namespace AutoGen.BasicSample.CodeSnippet;
9+
namespace AutoGen.Basic.Sample.CodeSnippet;
1010

1111
public class MiddlewareAgentCodeSnippet
1212
{

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/MistralAICodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using FluentAssertions;
99
#endregion using_statement
1010

11-
namespace AutoGen.BasicSample.CodeSnippet;
11+
namespace AutoGen.Basic.Sample.CodeSnippet;
1212

1313
#region weather_function
1414
public partial class MistralAgentFunction

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/OpenAICodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using OpenAI;
1111
using OpenAI.Chat;
1212

13-
namespace AutoGen.BasicSample.CodeSnippet;
13+
namespace AutoGen.Basic.Sample.CodeSnippet;
1414
#region weather_function
1515
public partial class Functions
1616
{

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using AutoGen.OpenAI;
66
using AutoGen.OpenAI.Extension;
77

8-
namespace AutoGen.BasicSample.CodeSnippet;
8+
namespace AutoGen.Basic.Sample.CodeSnippet;
99

1010
internal class PrintMessageMiddlewareCodeSnippet
1111
{

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/RunCodeSnippetCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using AutoGen.DotnetInteractive.Extension;
88
#endregion code_snippet_0_1
99

10-
namespace AutoGen.BasicSample.CodeSnippet;
10+
namespace AutoGen.Basic.Sample.CodeSnippet;
1111
public class RunCodeSnippetCodeSnippet
1212
{
1313
public async Task CodeSnippet1()

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/SemanticKernelCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.SemanticKernel;
99
using Microsoft.SemanticKernel.ChatCompletion;
1010

11-
namespace AutoGen.BasicSample.CodeSnippet;
11+
namespace AutoGen.Basic.Sample.CodeSnippet;
1212

1313
public class SemanticKernelCodeSnippet
1414
{

dotnet/samples/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/CodeSnippet/UserProxyAgentCodeSnippet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using AutoGen.Core;
55

6-
namespace AutoGen.BasicSample.CodeSnippet;
6+
namespace AutoGen.Basic.Sample.CodeSnippet;
77

88
public class UserProxyAgentCodeSnippet
99
{

dotnet/samples/AutoGen.BasicSamples/Example01_AssistantAgent.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example01_AssistantAgent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Example01_AssistantAgent.cs
33

44
using AutoGen;
5-
using AutoGen.BasicSample;
5+
using AutoGen.Basic.Sample;
66
using AutoGen.Core;
77
using AutoGen.OpenAI;
88
using AutoGen.OpenAI.Extension;

dotnet/samples/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example02_TwoAgent_MathChat.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Example02_TwoAgent_MathChat.cs
33

4-
using AutoGen.BasicSample;
4+
using AutoGen.Basic.Sample;
55
using AutoGen.Core;
66
using AutoGen.OpenAI;
77
using AutoGen.OpenAI.Extension;

dotnet/samples/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example03_Agent_FunctionCall.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Example03_Agent_FunctionCall.cs
33

4-
using AutoGen.BasicSample;
4+
using AutoGen.Basic.Sample;
55
using AutoGen.Core;
66
using AutoGen.OpenAI;
77
using AutoGen.OpenAI.Extension;

dotnet/samples/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example04_Dynamic_GroupChat_Coding_Task.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Example04_Dynamic_GroupChat_Coding_Task.cs
33

4-
using AutoGen.BasicSample;
4+
using AutoGen.Basic.Sample;
55
using AutoGen.Core;
66
using AutoGen.DotnetInteractive;
77
using AutoGen.DotnetInteractive.Extension;

dotnet/samples/AutoGen.BasicSamples/Example06_UserProxyAgent.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example06_UserProxyAgent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using AutoGen.OpenAI;
66
using AutoGen.OpenAI.Extension;
77

8-
namespace AutoGen.BasicSample;
8+
namespace AutoGen.Basic.Sample;
99

1010
public static class Example06_UserProxyAgent
1111
{

dotnet/samples/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Text;
55
using System.Text.Json;
6-
using AutoGen.BasicSample;
6+
using AutoGen.Basic.Sample;
77
using AutoGen.Core;
88
using AutoGen.DotnetInteractive;
99
using AutoGen.DotnetInteractive.Extension;

dotnet/samples/AutoGen.BasicSamples/Example08_LMStudio.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example08_LMStudio.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using OpenAI;
1010
#endregion lmstudio_using_statements
1111

12-
namespace AutoGen.BasicSample;
12+
namespace AutoGen.Basic.Sample;
1313

1414
public class Example08_LMStudio
1515
{

dotnet/samples/AutoGen.BasicSamples/Example10_SemanticKernel.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example10_SemanticKernel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.SemanticKernel;
99
using Microsoft.SemanticKernel.ChatCompletion;
1010
using Microsoft.SemanticKernel.Connectors.OpenAI;
11-
namespace AutoGen.BasicSample;
11+
namespace AutoGen.Basic.Sample;
1212

1313
public class LightPlugin
1414
{

dotnet/samples/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example11_Sequential_GroupChat_Example.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Microsoft.SemanticKernel.Plugins.Web.Bing;
1313
#endregion using_statement
1414

15-
namespace AutoGen.BasicSample;
15+
namespace AutoGen.Basic.Sample;
1616

1717
public partial class Sequential_GroupChat_Example
1818
{

dotnet/samples/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example12_TwoAgent_Fill_Application.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using AutoGen.OpenAI;
77
using AutoGen.OpenAI.Extension;
88

9-
namespace AutoGen.BasicSample;
9+
namespace AutoGen.Basic.Sample;
1010

1111
public partial class TwoAgent_Fill_Application
1212
{

dotnet/samples/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example14_MistralClientAgent_TokenCount.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#endregion using_statements
88
using FluentAssertions;
99

10-
namespace AutoGen.BasicSample;
10+
namespace AutoGen.Basic.Sample;
1111

1212
public class Example14_MistralClientAgent_TokenCount
1313
{

dotnet/samples/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example15_GPT4V_BinaryDataImageMessage.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using AutoGen.OpenAI;
66
using AutoGen.OpenAI.Extension;
77

8-
namespace AutoGen.BasicSample;
8+
namespace AutoGen.Basic.Sample;
99

1010
/// <summary>
1111
/// This example shows usage of ImageMessage. The image is loaded as BinaryData and sent to GPT-4V

dotnet/samples/AutoGen.BasicSamples/Example17_ReActAgent.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Example17_ReActAgent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using OpenAI;
88
using OpenAI.Chat;
99

10-
namespace AutoGen.BasicSample;
10+
namespace AutoGen.Basic.Sample;
1111

1212
public class OpenAIReActAgent : IAgent
1313
{

dotnet/samples/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/Agent_Middleware.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using FluentAssertions;
1010
using OpenAI.Chat;
1111

12-
namespace AutoGen.BasicSample;
12+
namespace AutoGen.Basic.Sample;
1313

1414
public class Agent_Middleware
1515
{

dotnet/samples/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/Chat_With_Agent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using FluentAssertions;
1111

12-
namespace AutoGen.BasicSample;
12+
namespace AutoGen.Basic.Sample;
1313

1414
public class Chat_With_Agent
1515
{

dotnet/samples/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/Dynamic_Group_Chat.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.SemanticKernel;
1010
using OpenAI;
1111

12-
namespace AutoGen.BasicSample;
12+
namespace AutoGen.Basic.Sample;
1313

1414
public class Dynamic_Group_Chat
1515
{

dotnet/samples/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/FSM_Group_Chat.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using OpenAI.Chat;
1111
#endregion Using
1212

13-
namespace AutoGen.BasicSample;
13+
namespace AutoGen.Basic.Sample;
1414

1515
#region FillFormTool
1616
public partial class FillFormTool

dotnet/samples/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/Image_Chat_With_Agent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#endregion Using
99
using FluentAssertions;
1010

11-
namespace AutoGen.BasicSample;
11+
namespace AutoGen.Basic.Sample;
1212

1313
public class Image_Chat_With_Agent
1414
{

dotnet/samples/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/Streaming_Tool_Call.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using FluentAssertions;
88
using OpenAI;
99

10-
namespace AutoGen.BasicSample.GettingStart;
10+
namespace AutoGen.Basic.Sample.GettingStart;
1111

1212
internal class Streaming_Tool_Call
1313
{

dotnet/samples/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/GettingStart/Use_Tools_With_Agent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using FluentAssertions;
1010
using OpenAI;
1111

12-
namespace AutoGen.BasicSample;
12+
namespace AutoGen.Basic.Sample;
1313

1414
#region Tools
1515
public partial class Tools

dotnet/samples/AutoGen.BasicSamples/LLMConfiguration.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/LLMConfiguration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using OpenAI;
55
using OpenAI.Chat;
66

7-
namespace AutoGen.BasicSample;
7+
namespace AutoGen.Basic.Sample;
88

99
internal static class LLMConfiguration
1010
{

dotnet/samples/AutoGen.BasicSamples/Program.cs dotnet/samples/AgentChat/AutoGen.Basic.Sample/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
//await Example07_Dynamic_GroupChat_Calculate_Fibonacci.RunAsync();
55

6-
using AutoGen.BasicSample;
6+
using AutoGen.Basic.Sample;
77

88
//Define allSamples collection for all examples
99
var allSamples = new List<(string, Func<Task>)>

dotnet/samples/AutoGen.Gemini.Sample/AutoGen.Gemini.Sample.csproj dotnet/samples/AgentChat/AutoGen.Gemini.Sample/AutoGen.Gemini.Sample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
14-
<ProjectReference Include="..\..\src\AutoGen.Gemini\AutoGen.Gemini.csproj" />
15-
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
13+
<ProjectReference Include="..\..\..\src\AutoGen\AutoGen.csproj" />
14+
<ProjectReference Include="..\..\..\src\AutoGen.Gemini\AutoGen.Gemini.csproj" />
15+
<ProjectReference Include="..\..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
1616
<PackageReference Include="FluentAssertions" />
1717
</ItemGroup>
1818

dotnet/samples/AutoGen.Ollama.Sample/AutoGen.Ollama.Sample.csproj dotnet/samples/AgentChat/AutoGen.Ollama.Sample/AutoGen.Ollama.Sample.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
13-
<ProjectReference Include="..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
14-
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
15-
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
12+
<ProjectReference Include="..\..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
13+
<ProjectReference Include="..\..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
14+
<ProjectReference Include="..\..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
15+
<ProjectReference Include="..\..\..\src\AutoGen\AutoGen.csproj" />
1616
<PackageReference Include="FluentAssertions" />
1717
</ItemGroup>
1818

dotnet/samples/AutoGen.OpenAI.Sample/AutoGen.OpenAI.Sample.csproj dotnet/samples/AgentChat/AutoGen.OpenAI.Sample/AutoGen.OpenAI.Sample.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<ProjectReference Include="..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
15-
<ProjectReference Include="..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
16-
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
17-
<ProjectReference Include="..\..\src\AutoGen.OpenAI\AutoGen.OpenAI.csproj" />
14+
<ProjectReference Include="..\..\..\src\AutoGen.DotnetInteractive\AutoGen.DotnetInteractive.csproj" />
15+
<ProjectReference Include="..\..\..\src\AutoGen.Ollama\AutoGen.Ollama.csproj" />
16+
<ProjectReference Include="..\..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
17+
<ProjectReference Include="..\..\..\src\AutoGen.OpenAI\AutoGen.OpenAI.csproj" />
1818
<PackageReference Include="FluentAssertions" />
1919
<PackageReference Include="Azure.AI.OpenAI" />
2020
</ItemGroup>

0 commit comments

Comments
 (0)