langchain-chat-with-milvus/document_ai/document_query.proto

17 lines
218 B
Protocol Buffer
Raw Normal View History

2023-11-15 08:20:30 +00:00
syntax = "proto3";
service DocumentQuery {
rpc Query(QueryRequest) returns (QueryResponse) {}
}
message QueryRequest {
string question = 1;
uint64 user_id = 2;
}
message QueryResponse {
string text = 1;
}