Spaces:
Running
Running
File size: 412 Bytes
9314c03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
syntax = "proto3";
package warp.multi_agent.v1;
option go_package = "github.com/warp/warp-proto-apis/multi_agent/v1";
message Citation {
string document_id = 1;
DocumentType document_type = 2;
}
enum DocumentType {
WARP_DRIVE_WORKFLOW = 0;
WARP_DRIVE_NOTEBOOK = 1;
WARP_DRIVE_ENV_VAR = 2;
RULE = 3;
WARP_DOCUMENTATION = 4;
WEB_PAGE = 5;
UNKNOWN = 6;
}
|