Skip to content

Commit 508efd5

Browse files
committed
more merge fixup + format
1 parent ac16f14 commit 508efd5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dotnet/samples/Hello/HelloAgent/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
var app = await AgentsApp.PublishMessageAsync("HelloAgents", new NewMessageReceived
1919
{
2020
Message = "World"
21-
}, local: false);
21+
}, local: true);
2222

2323
await app.WaitForShutdownAsync();
2424

dotnet/samples/Hello/HelloAgentState/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public async Task Handle(NewMessageReceived item)
3434
{
3535
Message = response
3636
};
37-
Dictionary <string, string> state = new()
37+
Dictionary<string, string> state = new()
3838
{
3939
{ "data", "We said hello to " + item.Message },
4040
{ "workflow", "Active" }

dotnet/src/Microsoft.AutoGen/Abstractions/IGateway.cs

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

44
namespace Microsoft.AutoGen.Abstractions;
55

6-
public interface IGateway: IGrainObserver
6+
public interface IGateway : IGrainObserver
77
{
88
ValueTask<RpcResponse> InvokeRequest(RpcRequest request, CancellationToken cancellationToken = default);
99
ValueTask BroadcastEvent(CloudEvent evt, CancellationToken cancellationToken = default);

dotnet/src/Microsoft.AutoGen/Agents/Agents/IOAgent/FileAgent/FileAgent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ public override Task ProcessOutput(string message)
7575
}
7676
public interface IUseFiles
7777
{
78-
}
78+
}

0 commit comments

Comments
 (0)