Skip to content

Commit

Permalink
Auto-generated. Updating Vectara public protos. (00b322398b00caecaa9e…
Browse files Browse the repository at this point in the history
…01ba767f1ca7f452a800).
  • Loading branch information
bitbucket-pipelines committed Feb 13, 2024
1 parent aae78de commit 4304c64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions admin_apikey.proto
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ enum ApiKeyType {
API_KEY_TYPE__SERVING = 1;
// ApiKey for serving and indexing. Gives access to both query and index data.
API_KEY_TYPE__SERVING_INDEXING = 2;
// ApiKey for personal access key.
API_KEY_TYPE__PERSONAL = 3;
}

// Status of ApiKey.
Expand Down Expand Up @@ -84,6 +86,9 @@ message ListApiKeysRequest {
// use the page key returned in previous response, and all other
// fields are ignored.
bytes page_key = 2;
// [Optional] Get API keys of these types.
// Default: If not set, API_KEY_TYPE__SERVING and API_KEY_TYPE__SERVING_INDEXING are returned.
repeated ApiKeyType api_key_type = 3;
// If set, returns corpus name & id associated with api keys.
bool read_corpora_info = 1000;
}
Expand Down
3 changes: 2 additions & 1 deletion services.proto
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ service QueryService {

// A streamed response interface when lower latency is absolutely critical.
rpc StreamQuery(com.vectara.serving.BatchQueryRequest)
returns (stream com.vectara.serving.QueryResponsePart) {
returns (stream com.vectara.serving.QueryResponsePart) {
}
}

Expand Down Expand Up @@ -216,3 +216,4 @@ service DocumentService {
};
}
}

0 comments on commit 4304c64

Please sign in to comment.