langchain-chat-with-milvus/rpc/ai.proto

19 lines
280 B
Protocol Buffer
Raw Normal View History

2023-11-14 10:52:55 +00:00
syntax = "proto3";
service LLMQuery {
rpc AddDocument (AddDocumentRequest) returns (AddDocumentReply) {}
}
message AddDocumentRequest {
string text = 1;
uint64 user_id = 2;
string database = 3;
string collection = 4;
}
message AddDocumentReply {
string id = 1;
2023-11-14 11:41:35 +00:00
}