mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-01 12:27:35 +00:00

* interim stash * interim stash * interim checkpoint * broken stash * whoops * merge sln files * fix a bunch of refactoring errors * moving more to core vs samples * interim * fixup the devteam sample * fix ci * fixup soln file * trying to fix ci * trying to fix ci * adding back * still trying * recreate * next step * adding it back * trying to fix * Rename Autogen -> AutoGen (#567) * Add transparency faqs (#566) * remove Autogen * add AutoGen back --------- Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> --------- Co-authored-by: Xiaoyun Zhang <xiaoyuz@microsoft.com> Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
25 lines
385 B
Protocol Buffer
25 lines
385 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package helloagents;
|
|
|
|
option csharp_namespace = "HelloAgents.Agents";
|
|
|
|
message NewMessageReceived {
|
|
string message = 1;
|
|
}
|
|
|
|
message ResponseGenerated {
|
|
string response = 1;
|
|
}
|
|
message GoodBye {
|
|
string message = 1;
|
|
}
|
|
|
|
message MessageStored {
|
|
string message = 1;
|
|
}
|
|
|
|
message ConversationClosed {
|
|
string user_id = 1;
|
|
string user_message = 2;
|
|
} |