1
+ using Microsoft . Extensions . Hosting ;
1
2
using Microsoft . AutoGen . Agents . Abstractions ;
2
3
using Microsoft . AutoGen . Agents . Client ;
3
4
using Microsoft . AutoGen . Agents . Runtime ;
4
5
using Microsoft . Extensions . DependencyInjection ;
5
- using Microsoft . Extensions . Hosting ;
6
6
7
7
var builder = Host . CreateApplicationBuilder ( args ) ;
8
8
builder . AddAgentService ( ) ;
9
+ builder . Services . AddHostedService < AgentWorkerRuntime > ( ) ;
10
+ builder . Services . AddSingleton < AgentClient > ( ) ;
9
11
builder . UseOrleans ( siloBuilder =>
10
12
{
11
13
siloBuilder . UseLocalhostClustering ( ) ; ;
12
14
} ) ;
13
15
builder . AddAgentWorker ( "https://localhost:5000" ) ;
14
16
var app = builder . Build ( ) ;
15
17
await app . StartAsync ( ) ;
18
+ AgentClient client = app . Services . GetRequiredService < AgentClient > ( ) ;
16
19
app . Services . GetRequiredService < AgentWorkerRuntime > ( ) ;
20
+ //send our hello message event via cloud events
17
21
var evt = new NewMessageReceived
18
22
{
19
23
Message = "World"
20
24
} . ToCloudEvent ( "HelloAgents" ) ;
25
+
26
+ await client . PublishEventAsync ( evt ) ;
21
27
await app . WaitForShutdownAsync ( ) ;
22
28
23
29
[ TopicSubscription ( "HelloAgents" ) ]
@@ -59,4 +65,4 @@ public async Task<string> SayHello(string ask)
59
65
public interface ISayHello
60
66
{
61
67
public Task < string > SayHello ( string ask ) ;
62
- }
68
+ }
0 commit comments