This commit is contained in:
anlicheng 2025-05-08 15:00:34 +08:00
parent 413d2dd735
commit 590f17f8e9
2 changed files with 14 additions and 4 deletions

View File

@ -27,8 +27,6 @@
-define(METHOD_FEEDBACK_STEP, 16#05).
-define(METHOD_EVENT, 16#07).
%% ai识别的事件上报
-define(METHOD_AI_EVENT, 16#08).
-define(METHOD_PHASE, 16#09).

View File

@ -34,12 +34,24 @@ message EfkaResponse {
string message = 3;
}
// pub/sub的机制实现远程调用
message TopicMessage {
// pub/sub的机制实现远程调用
message Pub {
string topic = 1;
string content = 2;
}
// ; : $sys_前缀
message AsyncRequest {
string method = 1;
string params = 2;
}
message AsyncResponse {
string code = 1;
string result = 2;
string message = 3;
}
//
message ServiceConfig {
string service_id = 1;