-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathProgram.cs
99 lines (83 loc) · 3.49 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using AutoGen.Core;
using AutoGen.DotnetInteractive;
using AutoGen.DotnetInteractive.Extension;
using AutoGen.OpenAI;
using AutoGen.OpenAI.Extension;
using Util;
var chatClient = ChatClientProvider.Create("gpt-4o-mini");
// Define a code executor to run dotnet code
// Here we use the dotnet interactive as the code executor
// NOTE:
// GPT is much better at writing python code than dotnet code given the rich python training data.
// And the code execution feature in dotnet AutoGen is very limited if we asks agent to resolve tasks using C#.
// Therefore, this example is more of a demonstration of how to use dotnet interactive as code executor.
// It is not the apple-to-apple comparison with the corresponding python example.
// setup dotnet interactive
using var kernel = DotnetInteractiveKernelBuilder
.CreateEmptyInProcessKernelBuilder()
.AddCSharpKernel()
.Build();
// Agent with code executor configuration
var codeExecutorAgent = new DefaultReplyAgent(
name: "code_executor_agent",
defaultReply: "no code to execute")
.RegisterMiddleware(async (msgs, option, next, ct) =>
{
// check if the last message contain csharp code blcok
var lastMsg = msgs.LastOrDefault();
if (lastMsg?.ExtractCodeBlock("```csharp", "```") is string csharpCode)
{
var result = await kernel.RunSubmitCodeCommandAsync(csharpCode, "csharp");
return new TextMessage(Role.Assistant, result ?? string.Empty, from: next.Name);
}
return await next.GenerateReplyAsync(msgs, option, ct);
})
.RegisterPrintMessage();
// Agent with dotnet coding writing capability
var coderAgent = new OpenAIChatAgent(
chatClient: chatClient,
name: "code_writer_agent",
systemMessage: """
You act as dotnet coder, you write dotnet code to resolve task. Once you finish writing code, ask runner to run the code for you.
Here're some rules to follow on writing dotnet code:
- put code between ```csharp and ```
- When creating http client, use `var httpClient = new HttpClient()`. Don't use `using var httpClient = new HttpClient()` because it will cause error when running the code.
- Try to use `var` instead of explicit type.
- Try avoid using external library, use .NET Core library instead.
- Use top level statement to write code.
- Always print out the result to console. Don't write code that doesn't print out anything.
If you need to install nuget packages, put nuget packages in the following format:
```nuget
nuget_package_name
```
If your code is incorrect, Fix the error and send the code again.
Once the task is resolved, say 'task completed' to finish the task.
""",
temperature: 0.4f)
.RegisterMessageConnector()
.RegisterPrintMessage();
// The task!
var task = """
calculate the 39th fibonacci number and save the result to result.txt
""";
// Start the conversation
var chatHistory = new List<IMessage>()
{
new TextMessage(Role.Assistant, task, from: codeExecutorAgent.Name),
};
await foreach(var reply in coderAgent.SendAsync(receiver: codeExecutorAgent, chatHistory: chatHistory, maxRound: 10))
{
if (reply.GetContent()?.ToLower().Contains("task completed") == true)
{
break;
}
else
{
chatHistory.Add(reply);
}
}
// Read the result from result.txt
var resultPath = Path.Combine("result.txt");
var result = File.ReadAllText(resultPath);
Console.WriteLine(result);
// User-Defined functions are not supported in C# AutoGen yet.