mirror of https://github.com/microsoft/autogen.git
21 lines
305 B
Protocol Buffer
21 lines
305 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package helloagents;
|
||
|
|
||
|
option csharp_namespace = "Microsoft.AutoGen.Agents.Worker.Client";
|
||
|
|
||
|
message Input {
|
||
|
string message = 1;
|
||
|
}
|
||
|
|
||
|
message InputProcessed {
|
||
|
string route = 1;
|
||
|
}
|
||
|
message Output {
|
||
|
string message = 1;
|
||
|
}
|
||
|
|
||
|
message OutputProcessed {
|
||
|
string route = 1;
|
||
|
}
|