assistance-engine/docker/protos/brunix.proto

19 lines
291 B
Protocol Buffer

syntax = "proto3";
package brunix;
service AssistanceEngine {
rpc AskAgent (AgentRequest) returns (stream AgentResponse);
}
message AgentRequest {
string query = 1;
string session_id = 2;
}
message AgentResponse {
string text = 1;
string avap_code = 2;
bool is_final = 3;
}