Tutorial
Tip
If you'd prefer to just see the code the entire sample is available as a project here.
In this tutorial we are going to define two agents, Modifier
and Checker
, that will count down from 10 to 1. The Modifier
agent will modify the count and the Checker
agent will check the count and stop the application when the count reaches 1.
Defining the message types
The first thing we need to do is to define the messages that will be passed between the agents, we're simply going to define them as classes.
We're going to use CountMessage
to pass the current count and CountUpdate
to pass the updated count.
namespace GettingStartedSample;
public class CountMessage
{
public int Content { get; set; }
}
namespace GettingStartedSample;
public class CountUpdate
{
public int NewCount { get; set; }
}
By separating out the message types into strongly typed classes, we can build a workflow where agents react to certain types and produce certain types.
Creating the agents
Inherit from BaseAgent
In AutoGen an agent is a class that can receive and send messages. The agent defines its own logic of what to do with the messages it receives. To define an agent, create a class that inherits from Base
using Microsoft.AutoGen.Contracts;
using Microsoft.AutoGen.Core;
public class Modifier(
AgentId id,
IAgentRuntime runtime,
) :
BaseAgent(id, runtime, "MyAgent", null),
{
}
We will see how to pass arguments to an agent when it is constructed, but for now you just need to know that Agent
Learn more about what an Agent ID is here.
Create a handler
Now, we want Modifier
to receive CountMessage
and produce CountUpdate
after it modifies the count. To do this, we need to implement the IHandle<CountMessage>
interface:
public class Modifier(
// ...
) :
BaseAgent(...),
IHandle<CountMessage>
{
public async ValueTask HandleAsync(CountMessage item, MessageContext messageContext)
{
// ...
}
}
Add a subscription
We've defined a function that will be called when a CountMessage
is delivered to this agent, but there is still one step before the message will actually be delivered to the agent. The agent must subscribe to the topic to the message is published to. We can do this by adding the TypeSubscription
attribute to the class:
[TypeSubscription("default")]
public class Modifier(
// ...
Learn more about topics and subscriptions here.
Publish a message
Now that we have a handler for CountMessage
, and we have the subscription in place we can publish a result out of the handler.
public async ValueTask HandleAsync(CountMessage item, MessageContext messageContext)
{
int newValue = item.Content - 1;
Console.WriteLine($"\nModifier:\nModified {item.Content} to {newValue}");
CountUpdate updateMessage = new CountUpdate { NewCount = newValue };
await this.PublishMessageAsync(updateMessage, topic: new TopicId("default"));
}
You'll notice that when we publish the message, we specify the topic to publish to. We're using a topic called default
in this case, which is the same topic which we subscribed to. We could have used a different topic, but in this case we're keeping it simple.
Passing arguments to the agent
Let's extend our agent to make what we do to the count configurable. We'll do this by passing a function to the agent that will be used to modify the count.
using ModifyF = System.Func<int, int>;
// ...
[TypeSubscription("default")]
public class Modifier(
AgentId id,
IAgentRuntime runtime,
ModifyF modifyFunc // <-- Add this
) :
BaseAgent(...),
IHandle<CountMessage>
{
public async ValueTask HandleAsync(CountMessage item, MessageContext messageContext)
{
int newValue = modifyFunc(item.Content); // <-- use it here
// ...
}
}
Final Modifier implementation
Here is the final implementation of the Modifier agent:
using Microsoft.AutoGen.Contracts;
using Microsoft.AutoGen.Core;
using ModifyF = System.Func<int, int>;
namespace GettingStartedSample;
[TypeSubscription("default")]
public class Modifier(
AgentId id,
IAgentRuntime runtime,
ModifyF modifyFunc
) :
BaseAgent(id, runtime, "Modifier", null),
IHandle<CountMessage>
{
public async ValueTask HandleAsync(CountMessage item, MessageContext messageContext)
{
int newValue = modifyFunc(item.Content);
Console.WriteLine($"\nModifier:\nModified {item.Content} to {newValue}");
CountUpdate updateMessage = new CountUpdate { NewCount = newValue };
await this.PublishMessageAsync(updateMessage, topic: new TopicId("default"));
}
}
Checker
We'll also define a Checker agent that will check the count and stop the application when the count reaches 1. Additionally, we'll use dependency injection to get a reference to the IHostApplicationLifetime
service, which we can use to stop the application.
using Microsoft.AutoGen.Contracts;
using Microsoft.AutoGen.Core;
using Microsoft.Extensions.Hosting;
using TerminationF = System.Func<int, bool>;
namespace GettingStartedSample;
[TypeSubscription("default")]
public class Checker(
AgentId id,
IAgentRuntime runtime,
IHostApplicationLifetime hostApplicationLifetime,
TerminationF runUntilFunc
) :
BaseAgent(id, runtime, "Modifier", null),
IHandle<CountUpdate>
{
public async ValueTask HandleAsync(CountUpdate item, MessageContext messageContext)
{
if (!runUntilFunc(item.NewCount))
{
Console.WriteLine($"\nChecker:\n{item.NewCount} passed the check, continue.");
await this.PublishMessageAsync(new CountMessage { Content = item.NewCount }, new TopicId("default"));
}
else
{
Console.WriteLine($"\nChecker:\n{item.NewCount} failed the check, stopping.");
hostApplicationLifetime.StopApplication();
}
}
}
Putting it all together
Now that we have our agents defined, we can put them together in a simple application that will count down from 10 to 1.
After includes, the first thing to do is to define the two functions for modifying and checking for completion.
using GettingStartedSample;
using Microsoft.AutoGen.Contracts;
using Microsoft.AutoGen.Core;
using Microsoft.Extensions.DependencyInjection.Extensions;
using ModifyF = System.Func<int, int>;
using TerminationF = System.Func<int, bool>;
ModifyF modifyFunc = (int x) => x - 1;
TerminationF runUntilFunc = (int x) =>
{
return x <= 1;
};
Then, we create a builder and do the following things:
- Specify that we are using the in process runtime
- Register our functions as services
- Register the agent classes we defined earlier
- Finally, build and start our app
AgentsAppBuilder appBuilder = new AgentsAppBuilder();
appBuilder.UseInProcessRuntime();
appBuilder.Services.TryAddSingleton(modifyFunc);
appBuilder.Services.TryAddSingleton(runUntilFunc);
appBuilder.AddAgent<Checker>("Checker");
appBuilder.AddAgent<Modifier>("Modifier");
var app = await appBuilder.BuildAsync();
await app.StartAsync();
The app is now running, but we need to kick off the process with a message. We do this by publishing a CountMessage
with an initial value of 10.
Importantly we publish this to the "default" topic which is what our agents are subscribed to. Finally, we wait for the application to stop.
// Send the initial count to the agents app, running on the `local` runtime, and pass through the registered services via the application `builder`
await app.PublishMessageAsync(new CountMessage
{
Content = 10
}, new TopicId("default"));
// Run until application shutdown
await app.WaitForShutdownAsync();
That's it! You should see the count down from 10 to 1 in the console.
Here's the full code for the Program
class:
using GettingStartedSample;
using Microsoft.AutoGen.Contracts;
using Microsoft.AutoGen.Core;
using Microsoft.Extensions.DependencyInjection.Extensions;
using ModifyF = System.Func<int, int>;
using TerminationF = System.Func<int, bool>;
ModifyF modifyFunc = (int x) => x - 1;
TerminationF runUntilFunc = (int x) =>
{
return x <= 1;
};
AgentsAppBuilder appBuilder = new AgentsAppBuilder();
appBuilder.UseInProcessRuntime();
appBuilder.Services.TryAddSingleton(modifyFunc);
appBuilder.Services.TryAddSingleton(runUntilFunc);
appBuilder.AddAgent<Checker>("Checker");
appBuilder.AddAgent<Modifier>("Modifier");
var app = await appBuilder.BuildAsync();
await app.StartAsync();
// Send the initial count to the agents app, running on the `local` runtime, and pass through the registered services via the application `builder`
await app.PublishMessageAsync(new CountMessage
{
Content = 10
}, new TopicId("default"));
// Run until application shutdown
await app.WaitForShutdownAsync();
Things to try
Here are some ideas to try with this sample:
- Change the initial count
- Create a new modifier function that counts up instead. (Don't forget to change the checker too!)
- Create an agent that outputs to the console instead of the modifier or checker agent doing it themselves (hint: use a new message type)