mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 08:22:53 +01:00
e877f3e724
- feat(idm): Added monitoring - feat(nexus): Refactor GRPC base client - fix(nexus): Logging fixes - feat(hub): Extend logging - feat(hub): Extend logging 2 internal commit(s) GitOrigin-RevId: 01de4153dd9c0edc2e5954563733085249a4551c
30 lines
589 B
Protocol Buffer
30 lines
589 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 Search {
|
|
rpc search (SearchRequest) returns (SearchResponse) {}
|
|
}
|