Spaces:
Running
Running
File size: 470 Bytes
9314c03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
syntax = "proto3";
package warp.multi_agent.v1;
option go_package = "github.com/warp/warp-proto-apis/multi_agent/v1";
message Suggestions {
repeated SuggestedRule rules = 1;
repeated SuggestedAgentModeWorkflow workflows = 2;
}
message SuggestedRule {
string name = 1;
string content = 2;
string logging_id = 3;
}
message SuggestedAgentModeWorkflow {
string name = 1;
string prompt = 2;
string logging_id = 3;
}
|