mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-22 08:27:45 +01:00
6de3fb1250
- feat(bot): Refactor referencing handler - fix(bot): Refactor DocumentListWidget 1 internal commit(s) GitOrigin-RevId: 9f388e98c7039711927abf4a048b5c45ea7a2fc3
30 lines
593 B
Protocol Buffer
30 lines
593 B
Protocol Buffer
syntax = "proto3";
|
|
package nexus.meta_api.proto;
|
|
|
|
import "nexus/models/proto/typed_document.proto";
|
|
|
|
message ScoredDocument {
|
|
nexus.models.proto.TypedDocument typed_document = 1;
|
|
float score = 2;
|
|
uint32 position = 3;
|
|
}
|
|
|
|
message SearchResponse {
|
|
repeated ScoredDocument scored_documents = 1;
|
|
bool has_next = 2;
|
|
}
|
|
|
|
message SearchRequest {
|
|
repeated string schemas = 1;
|
|
string query = 2;
|
|
uint32 page = 3;
|
|
uint32 page_size = 4;
|
|
string language = 5;
|
|
int64 user_id = 6;
|
|
string session_id = 7;
|
|
}
|
|
|
|
service MetaSearch {
|
|
rpc search (SearchRequest) returns (SearchResponse) {}
|
|
}
|