mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-18 22:42:54 +00:00

* dotnet rework * add dotnet workload update to startup * fix build * interim fixup * this is the stuff that was missing * renaming the .net classes * more build fixup * port dev-team sample WIP * add proto messages and IHandle to agents * add github variables * remove OAgents gh-flow * remove OAgents library * add .vs to gitignore --------- Co-authored-by: Kosta Petan <kostapetan@gmail.com> Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
91 lines
1.3 KiB
Protocol Buffer
91 lines
1.3 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package devteam;
|
|
|
|
option csharp_namespace = "DevTeam.Shared";
|
|
|
|
message NewAsk {
|
|
string org = 1;
|
|
string repo = 2;
|
|
string ask = 3;
|
|
int64 issue_number = 4;
|
|
}
|
|
|
|
message ReadmeRequested {
|
|
string ask = 1;
|
|
}
|
|
message ReadmeChainClosed {
|
|
string ask = 1;
|
|
}
|
|
|
|
message ReadmeCreated {
|
|
string readme = 1;
|
|
}
|
|
|
|
message ReadmeGenerated {
|
|
string org = 1;
|
|
string repo = 2;
|
|
int64 issue_number = 3;
|
|
string readme = 4;
|
|
}
|
|
|
|
message CodeChainClosed {
|
|
string user_id = 1;
|
|
string user_message = 2;
|
|
}
|
|
|
|
message CodeGenerationRequested {
|
|
string ask = 1;
|
|
}
|
|
|
|
message DevPlanRequested {
|
|
string ask = 1;
|
|
}
|
|
|
|
message DevPlanGenerated {
|
|
string org = 1;
|
|
string repo = 2;
|
|
int64 issue_number = 3;
|
|
string plan = 4;
|
|
}
|
|
|
|
message CodeGenerated {
|
|
string org = 1;
|
|
string repo = 2;
|
|
int64 issue_number = 3;
|
|
string code = 4;
|
|
}
|
|
|
|
message DevPlanChainClosed {
|
|
string plan = 1;
|
|
}
|
|
|
|
message ReadmeStored {
|
|
string org = 1;
|
|
string repo = 2;
|
|
int64 issue_number = 3;
|
|
int64 parent_number = 4;
|
|
}
|
|
|
|
message SandboxRunFinished {
|
|
string user_id = 1;
|
|
string user_message = 2;
|
|
}
|
|
|
|
message CodeCreated {
|
|
string code = 1;
|
|
}
|
|
|
|
message DevPlanCreated {
|
|
string org = 1;
|
|
string repo = 2;
|
|
int64 issue_number = 3;
|
|
string plan = 4;
|
|
}
|
|
|
|
message SandboxRunCreated {
|
|
string user_id = 1;
|
|
string user_message = 2;
|
|
}
|
|
|