mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-12 03:21:14 +00:00

* add tests for core functionality and client/server * add remove subscription, get subscriptions * fix LOTS of bugs * add grpc tuning * adapt to latest agreed agents_worker proto changes.
19 lines
243 B
Protocol Buffer
19 lines
243 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package devteam;
|
|
|
|
option csharp_namespace = "DevTeam";
|
|
|
|
|
|
message DeveloperState {
|
|
string understanding = 1;
|
|
}
|
|
|
|
message DeveloperLeadState {
|
|
string plan = 1;
|
|
}
|
|
|
|
message ProductManagerState {
|
|
string capabilities = 1;
|
|
}
|