Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-generated. Updating Vectara public protos. (00b322398b00caecaa9e… #30

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 {
};
}
}

Loading