@oh-my-pi/pi-ai 16.1.12 → 16.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/types/providers/devin.d.ts +12 -0
- package/dist/types/providers/register-builtins.d.ts +1 -0
- package/dist/types/registry/devin.d.ts +8 -0
- package/dist/types/registry/oauth/devin.d.ts +5 -0
- package/dist/types/registry/registry.d.ts +6 -0
- package/dist/types/types.d.ts +4 -2
- package/package.json +5 -4
- package/src/api-registry.ts +12 -2
- package/src/providers/anthropic-messages-server.ts +4 -1
- package/src/providers/devin/proto/buf/validate/validate.proto +468 -0
- package/src/providers/devin/proto/buf.gen.yaml +33 -0
- package/src/providers/devin/proto/buf.yaml +17 -0
- package/src/providers/devin/proto/cel/expr/checked.proto +103 -0
- package/src/providers/devin/proto/cel/expr/eval.proto +38 -0
- package/src/providers/devin/proto/cel/expr/explain.proto +15 -0
- package/src/providers/devin/proto/cel/expr/syntax.proto +113 -0
- package/src/providers/devin/proto/cel/expr/value.proto +41 -0
- package/src/providers/devin/proto/connectext/grpc/status/v1/status.proto +11 -0
- package/src/providers/devin/proto/errorspb/errors.proto +56 -0
- package/src/providers/devin/proto/errorspb/hintdetail.proto +7 -0
- package/src/providers/devin/proto/errorspb/markers.proto +10 -0
- package/src/providers/devin/proto/errorspb/tags.proto +12 -0
- package/src/providers/devin/proto/errorspb/testing.proto +6 -0
- package/src/providers/devin/proto/exa/analytics_pb/analytics.proto +188 -0
- package/src/providers/devin/proto/exa/api_server_pb/api_server.proto +2461 -0
- package/src/providers/devin/proto/exa/auth_pb/auth.proto +19 -0
- package/src/providers/devin/proto/exa/auto_cascade_common_pb/auto_cascade_common.proto +79 -0
- package/src/providers/devin/proto/exa/browser_preview_pb/browser_preview.proto +32 -0
- package/src/providers/devin/proto/exa/bug_checker_pb/bug_checker.proto +22 -0
- package/src/providers/devin/proto/exa/cascade_plugins_pb/cascade_plugins.proto +262 -0
- package/src/providers/devin/proto/exa/chat_client_server_pb/chat_client_server.proto +57 -0
- package/src/providers/devin/proto/exa/chat_pb/chat.proto +449 -0
- package/src/providers/devin/proto/exa/code_edit/code_edit_pb/code_edit.proto +186 -0
- package/src/providers/devin/proto/exa/codeium_common_pb/codeium_common.proto +4157 -0
- package/src/providers/devin/proto/exa/context_module_pb/context_module.proto +175 -0
- package/src/providers/devin/proto/exa/cortex_pb/cortex.proto +3268 -0
- package/src/providers/devin/proto/exa/dev_pb/dev.proto +26 -0
- package/src/providers/devin/proto/exa/diff_action_pb/diff_action.proto +75 -0
- package/src/providers/devin/proto/exa/eval/pr_eval/datasets_pb/datasets.proto +103 -0
- package/src/providers/devin/proto/exa/eval_pb/eval.proto +1315 -0
- package/src/providers/devin/proto/exa/extension_server_pb/extension_server.proto +556 -0
- package/src/providers/devin/proto/exa/file_system_provider_pb/file_system_provider.proto +75 -0
- package/src/providers/devin/proto/exa/index_pb/index.proto +461 -0
- package/src/providers/devin/proto/exa/knowledge_base_pb/knowledge_base.proto +144 -0
- package/src/providers/devin/proto/exa/language_server_pb/language_server.proto +2385 -0
- package/src/providers/devin/proto/exa/model_management_pb/model_management.proto +186 -0
- package/src/providers/devin/proto/exa/opensearch_clients_pb/opensearch_clients.proto +503 -0
- package/src/providers/devin/proto/exa/product_analytics_pb/product_analytics.proto +37 -0
- package/src/providers/devin/proto/exa/prompt_pb/prompt.proto +92 -0
- package/src/providers/devin/proto/exa/reactive_component_pb/reactive_component.proto +96 -0
- package/src/providers/devin/proto/exa/seat_management_pb/seat_management.proto +2680 -0
- package/src/providers/devin/proto/exa/tokenizer_pb/tokenizer.proto +37 -0
- package/src/providers/devin/proto/exa/trainer_pb/config.proto +647 -0
- package/src/providers/devin/proto/exa/tree_sitter/language_data_pb/language_data.proto +14 -0
- package/src/providers/devin/proto/exa/trust_pb/trust.proto +157 -0
- package/src/providers/devin/proto/exa/user_analytics_pb/user_analytics.proto +519 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/base/api_base.proto +28 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/datastore/datastore_v3.proto +484 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/log/log_service.proto +136 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/remote_api/remote_api.proto +42 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/urlfetch/urlfetch_service.proto +61 -0
- package/src/providers/devin/proto/grpc/binlog/v1/binarylog.proto +84 -0
- package/src/providers/devin/proto/io/prometheus/client/metrics.proto +98 -0
- package/src/providers/devin.ts +568 -0
- package/src/providers/register-builtins.ts +15 -0
- package/src/registry/devin.ts +15 -0
- package/src/registry/fireworks.ts +7 -1
- package/src/registry/oauth/devin.ts +113 -0
- package/src/registry/registry.ts +2 -0
- package/src/stream.ts +47 -6
- package/src/types.ts +4 -2
- package/src/utils.ts +5 -8
|
@@ -0,0 +1,2461 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package exa.api_server_pb;
|
|
4
|
+
|
|
5
|
+
import "buf/validate/validate.proto";
|
|
6
|
+
import "exa/analytics_pb/analytics.proto";
|
|
7
|
+
import "exa/bug_checker_pb/bug_checker.proto";
|
|
8
|
+
import "exa/chat_pb/chat.proto";
|
|
9
|
+
import "exa/codeium_common_pb/codeium_common.proto";
|
|
10
|
+
import "exa/context_module_pb/context_module.proto";
|
|
11
|
+
import "exa/cortex_pb/cortex.proto";
|
|
12
|
+
import "exa/prompt_pb/prompt.proto";
|
|
13
|
+
import "exa/trust_pb/trust.proto";
|
|
14
|
+
import "google/protobuf/timestamp.proto";
|
|
15
|
+
|
|
16
|
+
enum MQueryScoreStatus {
|
|
17
|
+
M_QUERY_SCORE_STATUS_UNSPECIFIED = 0;
|
|
18
|
+
M_QUERY_SCORE_STATUS_OK = 1;
|
|
19
|
+
M_QUERY_SCORE_STATUS_ERROR = 2;
|
|
20
|
+
M_QUERY_SCORE_STATUS_EARLY_RETURN = 3;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
enum EmbeddingRetryPolicy {
|
|
24
|
+
EMBEDDING_RETRY_POLICY_UNSPECIFIED = 0;
|
|
25
|
+
EMBEDDING_RETRY_POLICY_NONE = 1;
|
|
26
|
+
EMBEDDING_RETRY_POLICY_HIGH_PRIORITY = 2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
enum ChatMessageRequestType {
|
|
30
|
+
CHAT_MESSAGE_REQUEST_TYPE_UNSPECIFIED = 0;
|
|
31
|
+
CHAT_MESSAGE_REQUEST_TYPE_GENERAL = 1;
|
|
32
|
+
CHAT_MESSAGE_REQUEST_TYPE_CONTEXT_CHECK = 2;
|
|
33
|
+
CHAT_MESSAGE_REQUEST_TYPE_PLAN = 3;
|
|
34
|
+
CHAT_MESSAGE_REQUEST_TYPE_COMMAND = 4;
|
|
35
|
+
CHAT_MESSAGE_REQUEST_TYPE_CASCADE = 5;
|
|
36
|
+
CHAT_MESSAGE_REQUEST_TYPE_EVAL = 6;
|
|
37
|
+
CHAT_MESSAGE_REQUEST_TYPE_WINDSURF_REVIEW = 7;
|
|
38
|
+
CHAT_MESSAGE_REQUEST_TYPE_VIBE_AND_REPLACE = 8;
|
|
39
|
+
CHAT_MESSAGE_REQUEST_TYPE_DEEPWIKI = 9;
|
|
40
|
+
CHAT_MESSAGE_REQUEST_TYPE_DEVSTRAL = 10;
|
|
41
|
+
CHAT_MESSAGE_REQUEST_TYPE_CODEMAP_GENERATION = 11;
|
|
42
|
+
CHAT_MESSAGE_REQUEST_TYPE_CODEMAP_SUGGESTIONS = 12;
|
|
43
|
+
CHAT_MESSAGE_REQUEST_TYPE_SMART_FRIEND = 13;
|
|
44
|
+
CHAT_MESSAGE_REQUEST_TYPE_LIFEGUARD = 14;
|
|
45
|
+
CHAT_MESSAGE_REQUEST_TYPE_CHECKPOINT = 15;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
enum HybridDeploymentStatus {
|
|
49
|
+
HYBRID_DEPLOYMENT_STATUS_UNSPECIFIED = 0;
|
|
50
|
+
HYBRID_DEPLOYMENT_STATUS_HEALTHY = 1;
|
|
51
|
+
HYBRID_DEPLOYMENT_STATUS_ERROR = 2;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
enum FeedbackType {
|
|
55
|
+
FEEDBACK_TYPE_UNSPECIFIED = 0;
|
|
56
|
+
FEEDBACK_TYPE_ACCEPT = 1;
|
|
57
|
+
FEEDBACK_TYPE_REJECT = 2;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
enum FeedbackExtraInfo {
|
|
61
|
+
FEEDBACK_EXTRA_INFO_UNSPECIFIED = 0;
|
|
62
|
+
FEEDBACK_EXTRA_INFO_TYPED_AS_SUGGESTED = 1;
|
|
63
|
+
FEEDBACK_EXTRA_INFO_DOCUMENT_CHANGED = 2;
|
|
64
|
+
FEEDBACK_EXTRA_INFO_PARTIAL_ACCEPT = 3;
|
|
65
|
+
FEEDBACK_EXTRA_INFO_INTENTIONAL_REJECT = 4;
|
|
66
|
+
FEEDBACK_EXTRA_INFO_CLIENT_FILTER_REJECT = 5;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
enum DeploymentConfigKey {
|
|
70
|
+
DEPLOYMENT_CONFIG_KEY_UNSPECIFIED = 0;
|
|
71
|
+
DEPLOYMENT_CONFIG_KEY_ENABLE_EMAIL_SIGNUP = 1;
|
|
72
|
+
DEPLOYMENT_CONFIG_KEY_SAML_GROUP_REGEX = 2;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
message AssignArenaModelRequest {
|
|
76
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
77
|
+
string arena_id = 2;
|
|
78
|
+
repeated string cascade_ids = 4;
|
|
79
|
+
.exa.codeium_common_pb.ArenaTier arena_tier = 3 [deprecated = true];
|
|
80
|
+
string model_router_uid = 5;
|
|
81
|
+
optional string converged_arena_jwt = 6;
|
|
82
|
+
optional string converged_trajectory_id = 7;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message ArenaModelAssignment {
|
|
86
|
+
string cascade_id = 1;
|
|
87
|
+
string arena_assignment_jwt = 2;
|
|
88
|
+
string model_uid = 3;
|
|
89
|
+
string harness_uid = 4;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message AssignArenaModelResponse {
|
|
93
|
+
repeated .exa.api_server_pb.ArenaModelAssignment assignments = 1;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
message AssignModelRequest {
|
|
97
|
+
reserved 4;
|
|
98
|
+
|
|
99
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
100
|
+
string model_router_uid = 2;
|
|
101
|
+
string cascade_id = 3;
|
|
102
|
+
.exa.chat_pb.ChatMessagePrompt chat_message_prompt = 5;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
message ModelAssignment {
|
|
106
|
+
string assignment_jwt = 1;
|
|
107
|
+
string model_uid = 2;
|
|
108
|
+
repeated string harness_uids = 3;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message AssignModelResponse {
|
|
112
|
+
.exa.api_server_pb.ModelAssignment assignment = 1;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
message GetTranscriptionRequest {
|
|
116
|
+
reserved 3;
|
|
117
|
+
reserved 4;
|
|
118
|
+
reserved "prompt", "latency_info";
|
|
119
|
+
|
|
120
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
121
|
+
bytes audio_data = 2;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
message GetTranscriptionResponse {
|
|
125
|
+
string transcribed_text = 2;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
message RecordNewCortexPlanRequest {
|
|
129
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
130
|
+
string cortex_id = 2;
|
|
131
|
+
.exa.cortex_pb.CortexRequestSource request_source = 6;
|
|
132
|
+
string plan_goal = 3;
|
|
133
|
+
repeated string input_files = 4;
|
|
134
|
+
repeated string input_directories = 5;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
message RecordNewCortexPlanResponse {
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
message RecordCortexErrorRequest {
|
|
141
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
142
|
+
string cortex_id = 2;
|
|
143
|
+
string error = 3;
|
|
144
|
+
string error_detail = 4;
|
|
145
|
+
.exa.codeium_common_pb.CortexErrorCategory category = 5;
|
|
146
|
+
string category_id = 6;
|
|
147
|
+
string test = 7;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
message RecordCortexErrorResponse {
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message RecordCortexCodingPlanRequest {
|
|
154
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
155
|
+
string coding_plan_id = 2;
|
|
156
|
+
string cortex_id = 3;
|
|
157
|
+
string coding_plan_goal = 4;
|
|
158
|
+
.exa.codeium_common_pb.ChatNodeConfig model_config = 5;
|
|
159
|
+
string system_prompt = 6;
|
|
160
|
+
repeated .exa.chat_pb.ChatMessagePrompt message_prompts = 7;
|
|
161
|
+
repeated uint64 num_output_tokens = 10;
|
|
162
|
+
repeated uint64 response_latencies_ms = 11;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
message RecordCortexCodingPlanResponse {
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
message RecordCortexCodingStepRequest {
|
|
169
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
170
|
+
string coding_step_id = 2;
|
|
171
|
+
string coding_plan_id = 3;
|
|
172
|
+
uint32 step_index = 4;
|
|
173
|
+
string action_type = 5;
|
|
174
|
+
string instruction = 6;
|
|
175
|
+
string source = 7;
|
|
176
|
+
string target = 8;
|
|
177
|
+
string action_spec_json = 9;
|
|
178
|
+
string step_outline_json = 10;
|
|
179
|
+
uint32 step_version = 11;
|
|
180
|
+
uint32 plan_version = 12;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
message RecordCortexCodingStepResponse {
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
message RecordCortexCodingStepFeedbackRequest {
|
|
187
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
188
|
+
string coding_step_id = 2;
|
|
189
|
+
.exa.api_server_pb.FeedbackType feedback = 3;
|
|
190
|
+
string completion_id = 4;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
message RecordCortexCodingStepFeedbackResponse {
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
message RecordCortexFeedbackRequest {
|
|
197
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
198
|
+
string cortex_id = 2;
|
|
199
|
+
string feedback = 3;
|
|
200
|
+
int32 rating = 4;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
message RecordCortexFeedbackResponse {
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
message RecordDebounceRequest {
|
|
207
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
208
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 2;
|
|
209
|
+
.exa.codeium_common_pb.Language language = 3;
|
|
210
|
+
string editor_language = 4;
|
|
211
|
+
uint64 prompt_latency_ms = 5;
|
|
212
|
+
uint64 debounce_latency_ms = 6;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
message RecordDebounceResponse {
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message OpportunityMetadata {
|
|
219
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
220
|
+
.exa.codeium_common_pb.Language language = 2;
|
|
221
|
+
.exa.codeium_common_pb.CompletionType completion_type = 3;
|
|
222
|
+
.exa.codeium_common_pb.CompletionSource completion_source = 4;
|
|
223
|
+
.exa.codeium_common_pb.Repository repository = 5;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
message RecordOpportunitiesRequest {
|
|
227
|
+
repeated .exa.api_server_pb.OpportunityMetadata opportunities = 1;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message RecordOpportunitiesResponse {
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
message ByteDeltaInfo {
|
|
234
|
+
.exa.codeium_common_pb.CodeSource code_source = 1;
|
|
235
|
+
int32 num_bytes = 2;
|
|
236
|
+
.exa.codeium_common_pb.CompletionType completion_type = 3;
|
|
237
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 4;
|
|
238
|
+
string generator_model = 5;
|
|
239
|
+
int32 bytes_added = 6;
|
|
240
|
+
int32 bytes_deleted = 7;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
message CodeTrackerUpdate {
|
|
244
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
245
|
+
.exa.codeium_common_pb.Language language = 2;
|
|
246
|
+
repeated .exa.api_server_pb.ByteDeltaInfo byte_deltas = 3;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
message RecordCodeTrackerUpdatesRequest {
|
|
250
|
+
repeated .exa.api_server_pb.CodeTrackerUpdate updates = 1;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
message RecordCodeTrackerUpdatesResponse {
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
message RecordCompletionExampleRequest {
|
|
257
|
+
.exa.codeium_common_pb.CompletionExample example = 1;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
message RecordCompletionExampleResponse {
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
message GetCompletionsRequest {
|
|
264
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
265
|
+
.exa.codeium_common_pb.CompletionsRequest request = 2;
|
|
266
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 4;
|
|
267
|
+
.exa.codeium_common_pb.PromptComponents prompt_components = 5;
|
|
268
|
+
.exa.codeium_common_pb.ExperimentConfig experiment_config = 6;
|
|
269
|
+
.exa.codeium_common_pb.MockResponseData mock_response_data = 3;
|
|
270
|
+
bool is_dev = 7;
|
|
271
|
+
string prompt_id = 8;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
message GetCompletionsResponse {
|
|
275
|
+
.exa.codeium_common_pb.CompletionResponse completion_response = 1;
|
|
276
|
+
double latency = 2;
|
|
277
|
+
.exa.codeium_common_pb.CompletionsRequest completions_request = 3;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
message CciWithSubrangeBatch {
|
|
281
|
+
repeated .exa.codeium_common_pb.CciWithSubrange cci_with_subranges = 1;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
message EarlyReturnConfig {
|
|
285
|
+
double min_complete_fraction = 1;
|
|
286
|
+
int32 min_additional_wait_ms = 2;
|
|
287
|
+
float min_additional_wait_multiplier = 3;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
message GetMQueryRequest {
|
|
291
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
292
|
+
.exa.codeium_common_pb.Model model = 2;
|
|
293
|
+
string query = 3;
|
|
294
|
+
repeated .exa.api_server_pb.CciWithSubrangeBatch cci_with_subrange_batches = 4;
|
|
295
|
+
.exa.api_server_pb.EarlyReturnConfig early_return_config = 5;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
message ScoreWithStatus {
|
|
299
|
+
.exa.api_server_pb.MQueryScoreStatus status = 1;
|
|
300
|
+
float score = 2;
|
|
301
|
+
string error = 3;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
message ScoreBatch {
|
|
305
|
+
repeated .exa.api_server_pb.ScoreWithStatus scores = 1;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
message GetMQueryResponse {
|
|
309
|
+
repeated .exa.api_server_pb.ScoreBatch score_batches = 1;
|
|
310
|
+
string scorer_name = 2;
|
|
311
|
+
uint32 tokens_processed = 3;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
message GetStreamingCompletionsRequest {
|
|
315
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
316
|
+
.exa.codeium_common_pb.CompletionsRequest request = 2;
|
|
317
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 4;
|
|
318
|
+
.exa.codeium_common_pb.PromptComponents prompt_components = 5;
|
|
319
|
+
.exa.codeium_common_pb.ExperimentConfig experiment_config = 6;
|
|
320
|
+
bool is_dev = 7;
|
|
321
|
+
string prompt_id = 8;
|
|
322
|
+
.exa.prompt_pb.UnifiedPromptComponents unified_prompt_components = 9;
|
|
323
|
+
.exa.cortex_pb.CortexTrajectoryReference cortex_trajectory_reference = 10;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
message GetStreamingCompletionsResponse {
|
|
327
|
+
.exa.codeium_common_pb.StreamingCompletionResponse completion_response = 1;
|
|
328
|
+
double latency = 2;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
message CancelCompletionsRequest {
|
|
332
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message CancelCompletionsResponse {
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
message GetChatCompletionsRequest {
|
|
339
|
+
reserved 7;
|
|
340
|
+
reserved "skip_completion_telemetry";
|
|
341
|
+
|
|
342
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
343
|
+
repeated .exa.chat_pb.ChatMessagePrompt chat_message_prompts = 2;
|
|
344
|
+
string system_prompt = 3;
|
|
345
|
+
.exa.codeium_common_pb.CompletionsRequest completions_request = 4;
|
|
346
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 5;
|
|
347
|
+
.exa.codeium_common_pb.Model model_id = 6;
|
|
348
|
+
.exa.codeium_common_pb.ExperimentConfig experiment_config = 8;
|
|
349
|
+
string prompt_id = 9;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
message GetChatCompletionsResponse {
|
|
353
|
+
.exa.codeium_common_pb.CompletionResponse completion_response = 1;
|
|
354
|
+
double latency = 2;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
message GetStreamingExternalChatCompletionsResponse {
|
|
358
|
+
.exa.codeium_common_pb.CompletionDeltaMap delta_map = 1;
|
|
359
|
+
double latency = 2;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
message GetEmbeddingsRequest {
|
|
363
|
+
reserved 2;
|
|
364
|
+
reserved "high_priority";
|
|
365
|
+
|
|
366
|
+
.exa.codeium_common_pb.EmbeddingsRequest request = 1;
|
|
367
|
+
.exa.api_server_pb.EmbeddingRetryPolicy retry_policy = 3;
|
|
368
|
+
.exa.codeium_common_pb.Model embedding_model = 4;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
message GetEmbeddingsResponse {
|
|
372
|
+
.exa.codeium_common_pb.EmbeddingResponse response = 1;
|
|
373
|
+
double latency = 2;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
message BatchRecordUserLastUpdateTimesRequest {
|
|
377
|
+
map<string, .exa.codeium_common_pb.LastUpdateRecord> user_last_update_times = 1;
|
|
378
|
+
map<string, .exa.codeium_common_pb.LastUpdateRecordList> user_last_update_record_lists = 2;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
message BatchRecordUserLastUpdateTimesResponse {
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
message RecordChatRequestRecordRequest {
|
|
385
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
386
|
+
.exa.api_server_pb.GetChatMessageRequest chat_request = 2;
|
|
387
|
+
bool disable_telemetry = 3;
|
|
388
|
+
string deployment = 4;
|
|
389
|
+
string start_time = 5;
|
|
390
|
+
string end_time = 6;
|
|
391
|
+
.exa.codeium_common_pb.UserStatus user_status = 7;
|
|
392
|
+
string error = 8;
|
|
393
|
+
string request_uid = 9;
|
|
394
|
+
string response_text = 10;
|
|
395
|
+
repeated .exa.codeium_common_pb.ChatToolCall response_tool_calls = 11;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
message BatchRecordChatRequestRecordsRequest {
|
|
399
|
+
repeated .exa.api_server_pb.RecordChatRequestRecordRequest chat_records = 1;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
message BatchRecordChatRequestRecordsResponse {
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
message GetCompletionExamplesRequest {
|
|
406
|
+
uint32 max_examples = 1;
|
|
407
|
+
string api_key = 2;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
message GetCompletionExamplesResponse {
|
|
411
|
+
repeated .exa.codeium_common_pb.CompletionExampleWithMetadata examples = 1;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
message ProvideFeedbackRequest {
|
|
415
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
416
|
+
string prompt_id = 2;
|
|
417
|
+
string completion_id = 3;
|
|
418
|
+
.exa.codeium_common_pb.CompletionSource source = 4;
|
|
419
|
+
.exa.api_server_pb.FeedbackType feedback = 5;
|
|
420
|
+
.exa.api_server_pb.FeedbackExtraInfo extra_info = 12;
|
|
421
|
+
uint64 latency_ms = 6;
|
|
422
|
+
uint64 network_latency_ms = 8;
|
|
423
|
+
uint64 debounce_latency_ms = 9;
|
|
424
|
+
uint64 client_latency_ms = 10;
|
|
425
|
+
int64 timestamp_unix_ms = 7;
|
|
426
|
+
int64 feedback_delay_ms = 11;
|
|
427
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 13;
|
|
428
|
+
uint64 view_columns_open = 14;
|
|
429
|
+
bool has_active_vim_extension = 15;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
message ProvideFeedbackResponse {
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
message UploadErrorTracesRequest {
|
|
436
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
437
|
+
repeated .exa.codeium_common_pb.ErrorTrace error_traces = 2;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
message UploadErrorTracesResponse {
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
message RecordAsyncTelemetryRequest {
|
|
444
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
445
|
+
repeated .exa.codeium_common_pb.ErrorTrace error_traces = 2;
|
|
446
|
+
repeated .exa.codeium_common_pb.WorkspaceIndexData workspace_index_data = 3;
|
|
447
|
+
repeated .exa.codeium_common_pb.WorkspaceStats workspace_stats = 4;
|
|
448
|
+
bytes memory_stats = 5;
|
|
449
|
+
.exa.codeium_common_pb.IndexerStats indexer_stats = 6;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
message RecordAsyncTelemetryResponse {
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
message RecordAutoCascadeTelemetryRequest {
|
|
456
|
+
reserved 2;
|
|
457
|
+
reserved 3;
|
|
458
|
+
reserved 4;
|
|
459
|
+
reserved 5;
|
|
460
|
+
reserved 6;
|
|
461
|
+
reserved 7;
|
|
462
|
+
reserved 8;
|
|
463
|
+
reserved 9;
|
|
464
|
+
reserved 10;
|
|
465
|
+
reserved 11;
|
|
466
|
+
reserved 12;
|
|
467
|
+
reserved "et", "sk", "ak", "gci", "gr", "gu", "tuc", "tdc", "bn", "bs", "tid";
|
|
468
|
+
|
|
469
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
470
|
+
string event_type = 13;
|
|
471
|
+
string session_key = 14;
|
|
472
|
+
string api_key = 15;
|
|
473
|
+
string github_comment_id = 16;
|
|
474
|
+
string github_repo = 17;
|
|
475
|
+
string github_username = 18;
|
|
476
|
+
int32 thumbs_up_count = 19;
|
|
477
|
+
int32 thumbs_down_count = 20;
|
|
478
|
+
string branch_name = 21;
|
|
479
|
+
string branch_status = 22;
|
|
480
|
+
string team_id = 23;
|
|
481
|
+
string github_owner = 24;
|
|
482
|
+
int32 pr_number = 25;
|
|
483
|
+
bool is_public_repo = 26;
|
|
484
|
+
string comment_type = 27;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
message RecordAutoCascadeTelemetryResponse {
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
message RecordWindsurfReviewsTelemetryRequest {
|
|
491
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
492
|
+
string event_type = 2;
|
|
493
|
+
string api_key = 3;
|
|
494
|
+
string github_comment_id = 4;
|
|
495
|
+
string github_repo = 5;
|
|
496
|
+
string github_username = 6;
|
|
497
|
+
int32 thumbs_up_count = 7;
|
|
498
|
+
int32 thumbs_down_count = 8;
|
|
499
|
+
string branch_name = 9;
|
|
500
|
+
string branch_status = 10;
|
|
501
|
+
string team_id = 11;
|
|
502
|
+
string github_owner = 12;
|
|
503
|
+
int32 pr_number = 13;
|
|
504
|
+
bool is_public_repo = 14;
|
|
505
|
+
string comment_type = 15;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
message RecordWindsurfReviewsTelemetryResponse {
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
message RecordWindsurfReviewEventRequest {
|
|
512
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
513
|
+
string event_type = 2;
|
|
514
|
+
string api_key = 3;
|
|
515
|
+
string github_owner = 4;
|
|
516
|
+
string github_repo = 5;
|
|
517
|
+
string github_username = 6;
|
|
518
|
+
string team_id = 7;
|
|
519
|
+
float cost = 8;
|
|
520
|
+
string model = 9;
|
|
521
|
+
string failure_reason = 10;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
message RecordWindsurfReviewEventResponse {
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
message GetDevstralStreamRequest {
|
|
528
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
529
|
+
repeated .exa.chat_pb.ChatMessagePrompt chat_message_prompts = 2;
|
|
530
|
+
string tools_json = 3;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
message GetDevstralStreamResponse {
|
|
534
|
+
string output = 2;
|
|
535
|
+
repeated .exa.codeium_common_pb.ChatToolCall tool_calls = 3;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
message GetChatMessageRequest {
|
|
539
|
+
reserved 23;
|
|
540
|
+
reserved 4;
|
|
541
|
+
reserved "arena_tier", "model_name";
|
|
542
|
+
|
|
543
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
544
|
+
string prompt = 2;
|
|
545
|
+
repeated .exa.chat_pb.ChatMessagePrompt chat_message_prompts = 3;
|
|
546
|
+
bool use_internal_chat_model = 5;
|
|
547
|
+
.exa.codeium_common_pb.Model internal_chat_model = 6 [deprecated = true];
|
|
548
|
+
string chat_model_uid = 21;
|
|
549
|
+
.exa.api_server_pb.ChatMessageRequestType request_type = 7;
|
|
550
|
+
.exa.codeium_common_pb.CompletionConfiguration configuration = 8;
|
|
551
|
+
.exa.codeium_common_pb.ExperimentConfig experiment_config = 9;
|
|
552
|
+
repeated .exa.chat_pb.ChatToolDefinition tools = 10;
|
|
553
|
+
bool disable_parallel_tool_calls = 11;
|
|
554
|
+
.exa.chat_pb.ChatToolChoice tool_choice = 12;
|
|
555
|
+
.exa.chat_pb.PromptCacheOptions system_prompt_cache_options = 13;
|
|
556
|
+
string chat_model_name = 14;
|
|
557
|
+
.exa.cortex_pb.CortexTrajectoryReference trajectory_reference = 15;
|
|
558
|
+
string cascade_id = 16;
|
|
559
|
+
string prompt_id = 17;
|
|
560
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 18;
|
|
561
|
+
.exa.codeium_common_pb.Language language = 19;
|
|
562
|
+
.exa.codeium_common_pb.ConversationalPlannerMode planner_mode = 20;
|
|
563
|
+
string execution_id = 22;
|
|
564
|
+
optional int32 arena_converge_count = 24;
|
|
565
|
+
optional string arena_assignment_jwt = 25;
|
|
566
|
+
optional string model_assignment_jwt = 26;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
message GetChatMessageResponse {
|
|
570
|
+
string message_id = 1;
|
|
571
|
+
.google.protobuf.Timestamp timestamp = 2;
|
|
572
|
+
string delta_text = 3;
|
|
573
|
+
uint32 delta_tokens = 4;
|
|
574
|
+
.exa.codeium_common_pb.StopReason stop_reason = 5;
|
|
575
|
+
repeated .exa.codeium_common_pb.ChatToolCall delta_tool_calls = 6;
|
|
576
|
+
.exa.codeium_common_pb.ModelUsageStats usage = 7;
|
|
577
|
+
int32 credit_cost = 14;
|
|
578
|
+
bool redact = 8;
|
|
579
|
+
string delta_thinking = 9;
|
|
580
|
+
string delta_signature = 10;
|
|
581
|
+
bool thinking_redacted = 11;
|
|
582
|
+
double latency = 12;
|
|
583
|
+
.exa.codeium_common_pb.CompletionProfile completion_profile = 13;
|
|
584
|
+
string output_id = 15;
|
|
585
|
+
string thinking_id = 16 [deprecated = true];
|
|
586
|
+
string request_id = 17;
|
|
587
|
+
int32 committed_credit_cost = 18;
|
|
588
|
+
string prompt = 19;
|
|
589
|
+
bytes gemini_thought_signature = 20 [deprecated = true];
|
|
590
|
+
string delta_signature_type = 21;
|
|
591
|
+
double committed_acu_cost = 22;
|
|
592
|
+
optional string actual_model_uid = 23;
|
|
593
|
+
bool arena_invocation_cap_reached = 24;
|
|
594
|
+
string phase = 25;
|
|
595
|
+
optional int64 committed_quota_cost_basis_points = 26;
|
|
596
|
+
optional int64 committed_overage_cost_cents = 27;
|
|
597
|
+
repeated .exa.codeium_common_pb.ResponseDimensionGroup response_dimension_groups = 28;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
message CheckUserMessageRateLimitRequest {
|
|
601
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
602
|
+
.exa.codeium_common_pb.Model model_deprecated = 2 [deprecated = true];
|
|
603
|
+
string model_uid = 3;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
message CheckUserMessageRateLimitResponse {
|
|
607
|
+
bool has_capacity = 1;
|
|
608
|
+
string message = 2;
|
|
609
|
+
int32 messages_remaining = 3;
|
|
610
|
+
int32 max_messages = 4;
|
|
611
|
+
int64 resets_in_seconds = 5;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
message GetDeepWikiRequest {
|
|
615
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
616
|
+
.exa.chat_pb.DeepWikiRequestType request_type = 2;
|
|
617
|
+
string symbol_name = 3;
|
|
618
|
+
string symbol_uri = 4;
|
|
619
|
+
string context = 5;
|
|
620
|
+
.exa.chat_pb.DeepWikiSymbolType symbol_type = 6;
|
|
621
|
+
string language = 7;
|
|
622
|
+
bool generate_followups = 8;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
message GetDeepWikiResponse {
|
|
626
|
+
.exa.api_server_pb.GetChatMessageResponse response = 1;
|
|
627
|
+
.exa.codeium_common_pb.DeepWikiModelType model_type = 2;
|
|
628
|
+
bool is_followup = 3;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
message CheckChatCapacityRequest {
|
|
632
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
633
|
+
.exa.codeium_common_pb.Model model_deprecated = 2 [deprecated = true];
|
|
634
|
+
string model_uid = 3;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
message CheckChatCapacityResponse {
|
|
638
|
+
bool has_capacity = 1;
|
|
639
|
+
string message = 2;
|
|
640
|
+
int32 active_sessions = 3;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
message GetStreamingModelAPITextCompletionRequest {
|
|
644
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
645
|
+
.exa.codeium_common_pb.Model model = 2;
|
|
646
|
+
string system_prompt = 3;
|
|
647
|
+
.exa.chat_pb.PromptCacheOptions system_prompt_cache_options = 7;
|
|
648
|
+
repeated .exa.chat_pb.ChatMessagePrompt chat_message_prompts = 4;
|
|
649
|
+
.exa.codeium_common_pb.CompletionConfiguration completion_configuration = 5;
|
|
650
|
+
.exa.api_server_pb.ChatMessageRequestType request_type = 6;
|
|
651
|
+
.exa.codeium_common_pb.ModelInfo override_model_info = 8;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
message GetStreamingModelAPITextCompletionResponse {
|
|
655
|
+
.exa.codeium_common_pb.CompletionDeltaMap delta_map = 1;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
message RecordChatRequest {
|
|
659
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
660
|
+
uint64 latency_ms = 2;
|
|
661
|
+
.exa.chat_pb.ChatMessage chat_message = 3;
|
|
662
|
+
repeated .exa.chat_pb.ChatMessagePrompt chat_message_prompts = 4;
|
|
663
|
+
string system_prompt = 5;
|
|
664
|
+
.exa.codeium_common_pb.ContextInclusionType context_inclusion_type = 6;
|
|
665
|
+
string experiment_features_json = 7;
|
|
666
|
+
string experiment_variant_json = 9;
|
|
667
|
+
.exa.codeium_common_pb.Model model_id = 8;
|
|
668
|
+
repeated string active_repos = 10;
|
|
669
|
+
string guideline_prompt = 11;
|
|
670
|
+
.exa.prompt_pb.UnifiedPromptComponents chat_prompt_components = 13;
|
|
671
|
+
.exa.cortex_pb.CortexTrajectoryReference cortex_trajectory_reference = 14;
|
|
672
|
+
.exa.codeium_common_pb.ContextScope pinned_context = 15;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
message RecordChatResponse {
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
message RecordChatFeedbackRequest {
|
|
679
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
680
|
+
string message_id = 2;
|
|
681
|
+
.exa.chat_pb.ChatFeedbackType feedback = 3;
|
|
682
|
+
string reason = 4;
|
|
683
|
+
.google.protobuf.Timestamp timestamp = 5;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
message RecordChatFeedbackResponse {
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
message RecordChatPanelSessionRequest {
|
|
690
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
691
|
+
.google.protobuf.Timestamp start_timestamp = 2;
|
|
692
|
+
.google.protobuf.Timestamp end_timestamp = 3;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
message RecordChatPanelSessionResponse {
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
message RecordContextRefreshRequest {
|
|
699
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
700
|
+
.exa.context_module_pb.ContextRefreshReason refresh_reason = 2;
|
|
701
|
+
bool did_refresh = 3;
|
|
702
|
+
string current_document_absolute_path = 4;
|
|
703
|
+
string current_document_relative_path = 5;
|
|
704
|
+
string current_document_workspace = 6;
|
|
705
|
+
string current_chat_message_id = 7;
|
|
706
|
+
.exa.codeium_common_pb.Language current_document_language = 8;
|
|
707
|
+
uint64 latency_ms = 9;
|
|
708
|
+
uint64 state_update_latency_ms = 10;
|
|
709
|
+
map<string, uint64> code_context_counts = 11;
|
|
710
|
+
.google.protobuf.Timestamp timestamp = 12;
|
|
711
|
+
repeated string local_codebase_queries = 13;
|
|
712
|
+
string context_module_stats_json = 14;
|
|
713
|
+
string refresh_error = 15;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
message RecordContextRefreshResponse {
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
message RecordEventRequest {
|
|
720
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
721
|
+
repeated .exa.codeium_common_pb.Event events = 2;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
message RecordEventResponse {
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
message RecordPinnedContextRequest {
|
|
728
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
729
|
+
.exa.codeium_common_pb.ContextScope scope = 2;
|
|
730
|
+
.exa.codeium_common_pb.ContextScope previous_scope = 3;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
message RecordPinnedContextResponse {
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
message RecordSearchRequest {
|
|
737
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
738
|
+
string query = 2;
|
|
739
|
+
string search_id = 3;
|
|
740
|
+
uint64 latency_ms = 4;
|
|
741
|
+
.exa.codeium_common_pb.SearchResultType search_type = 5;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
message RecordMQueryRequest {
|
|
745
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
746
|
+
string refresh_reason = 2;
|
|
747
|
+
string query = 3;
|
|
748
|
+
.google.protobuf.Timestamp timestamp = 4;
|
|
749
|
+
int64 items_scanned = 5;
|
|
750
|
+
int64 tokens_processed = 6;
|
|
751
|
+
int64 job_duration_ms = 7;
|
|
752
|
+
string request_id = 8;
|
|
753
|
+
string error_json = 9;
|
|
754
|
+
string relevance_scorer_model = 10;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
message RecordMQueryResponse {
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
message RecordChatModelNodeRunRequest {
|
|
761
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
762
|
+
string run_id = 2;
|
|
763
|
+
string mixin_type = 3;
|
|
764
|
+
uint64 latency_ms = 4;
|
|
765
|
+
string system_prompt = 5;
|
|
766
|
+
repeated .exa.chat_pb.ChatMessagePrompt chat_message_prompts = 6;
|
|
767
|
+
.exa.codeium_common_pb.ContextInclusionType context_inclusion_type = 7;
|
|
768
|
+
.exa.codeium_common_pb.Model model_id = 8;
|
|
769
|
+
.google.protobuf.Timestamp timestamp = 9;
|
|
770
|
+
string error = 10;
|
|
771
|
+
int32 num_iterations = 11;
|
|
772
|
+
int32 completion_tokens = 12;
|
|
773
|
+
int32 prompt_tokens = 13;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
message RecordChatModelNodeRunResponse {
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
message RecordCortexStepRequest {
|
|
780
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
781
|
+
string cortex_plan_id = 2;
|
|
782
|
+
.exa.cortex_pb.CortexTrajectoryStep step_proto = 3;
|
|
783
|
+
string execution_id = 4;
|
|
784
|
+
.exa.cortex_pb.CortexWorkflowState state_snapshot = 5;
|
|
785
|
+
string event_source = 6;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
message RecordCortexStepResponse {
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
message RecordTrajectorySegmentAnalyticsRequest {
|
|
792
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
793
|
+
.exa.cortex_pb.CortexTrajectory trajectory_segment = 2;
|
|
794
|
+
uint32 start_step_index = 3;
|
|
795
|
+
uint32 start_generator_metadata_index = 4;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
message RecordTrajectorySegmentAnalyticsResponse {
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
message RecordTrajectorySegmentEventsRequest {
|
|
802
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
803
|
+
string trajectory_id = 2;
|
|
804
|
+
string execution_id = 3;
|
|
805
|
+
repeated .exa.codeium_common_pb.MetricsRecord records = 4;
|
|
806
|
+
string event_type = 5;
|
|
807
|
+
.exa.cortex_pb.CortexTrajectorySource trajectory_source = 6;
|
|
808
|
+
.exa.cortex_pb.CortexTrajectoryType trajectory_type = 7;
|
|
809
|
+
.exa.codeium_common_pb.ModelOrAlias model_deprecated = 8 [deprecated = true];
|
|
810
|
+
string model_uid = 9;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
message RecordTrajectorySegmentEventsResponse {
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
message RecordCortexGeneratorMetadataRequest {
|
|
817
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
818
|
+
string trajectory_id = 2;
|
|
819
|
+
string cascade_id = 3;
|
|
820
|
+
.exa.cortex_pb.CortexStepGeneratorMetadata generator_metadata = 4;
|
|
821
|
+
uint32 metadata_index = 5;
|
|
822
|
+
int32 last_common_index = 6;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
message RecordCortexGeneratorMetadataResponse {
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
message RecordCommitMessageGenerationRequest {
|
|
829
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
830
|
+
uint64 generation_duration_ms = 2;
|
|
831
|
+
string system_prompt = 3;
|
|
832
|
+
string full_prompt = 4;
|
|
833
|
+
int32 prompt_tokens = 5;
|
|
834
|
+
int32 completion_tokens = 6;
|
|
835
|
+
string repo_root = 7;
|
|
836
|
+
string branch_name = 8;
|
|
837
|
+
string latest_commit_hash = 9;
|
|
838
|
+
uint32 num_files_changed = 10;
|
|
839
|
+
uint32 num_lines_added = 11;
|
|
840
|
+
uint32 num_lines_deleted = 12;
|
|
841
|
+
string commit_message_summary = 13;
|
|
842
|
+
string commit_message_description = 14;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
message RecordCortexExecutionMetadataResponse {
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
message RecordCortexExecutionMetadataRequest {
|
|
849
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
850
|
+
string execution_id = 2;
|
|
851
|
+
string cascade_id = 3;
|
|
852
|
+
string trajectory_id = 4;
|
|
853
|
+
string experiment_json = 5;
|
|
854
|
+
string experiment_variants_json = 6;
|
|
855
|
+
.exa.cortex_pb.CascadeConfig cascade_config = 7;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
message RecordCommitMessageGenerationResponse {
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
message RecordStateInitializationDataRequest {
|
|
862
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
863
|
+
.exa.cortex_pb.StateInitializationData state_initialization_data = 2;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
message RecordStateInitializationDataResponse {
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
message RecordCommitMessageSaveRequest {
|
|
870
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
871
|
+
string repo_root = 2;
|
|
872
|
+
string branch_name = 3;
|
|
873
|
+
string commit_hash = 4;
|
|
874
|
+
string commit_message = 5;
|
|
875
|
+
.google.protobuf.Timestamp commit_timestamp = 6;
|
|
876
|
+
string parent_commit_hash = 7;
|
|
877
|
+
string author_name = 8;
|
|
878
|
+
string author_email = 9;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
message RecordCommitMessageSaveResponse {
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
message RecordSearchResponse {
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
message RecordSearchResultsRequest {
|
|
888
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
889
|
+
repeated .exa.codeium_common_pb.SearchResultRecord search_results = 2;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
message RecordSearchResultsResponse {
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
message RecordSearchDocOpenRequest {
|
|
896
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
897
|
+
string result_id = 2;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
message RecordSearchDocOpenResponse {
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
message RecordSearchResultsViewRequest {
|
|
904
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
905
|
+
string cluster_search_id = 2;
|
|
906
|
+
string exact_search_id = 3;
|
|
907
|
+
repeated string search_result_ids = 4;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
message RecordSearchResultsViewResponse {
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
message CaptureCodeRequest {
|
|
914
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
915
|
+
string prompt_id = 2;
|
|
916
|
+
string code = 3;
|
|
917
|
+
uint64 timeout_sec = 4;
|
|
918
|
+
string completion_text = 5;
|
|
919
|
+
float relative_edit_distance = 6;
|
|
920
|
+
uint32 edit_distance = 7;
|
|
921
|
+
string match = 8;
|
|
922
|
+
uint32 start_edit_distance = 9;
|
|
923
|
+
string start_match = 10;
|
|
924
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 11;
|
|
925
|
+
string completion_id = 12;
|
|
926
|
+
string diagnostic_severity = 13;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
message CaptureCodeResponse {
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
message CaptureFileRequest {
|
|
933
|
+
.exa.codeium_common_pb.CaptureFileRequestData data = 1;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
message CaptureFileResponse {
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
message SupportsRemoteIndexingRequest {
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
message SupportsRemoteIndexingResponse {
|
|
943
|
+
bool supports_remote_indexing = 1;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
message GetModelStatusesRequest {
|
|
947
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
message GetModelStatusesResponse {
|
|
951
|
+
repeated .exa.codeium_common_pb.ModelStatusInfo model_status_infos = 1;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
message GetModelProvidersRequest {
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
message ModelProviderInfo {
|
|
958
|
+
.exa.codeium_common_pb.ModelProvider provider = 1;
|
|
959
|
+
string display_name = 2;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
message GetModelProvidersResponse {
|
|
963
|
+
repeated .exa.api_server_pb.ModelProviderInfo model_providers = 1;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
message RegisterExternalUserRequest {
|
|
967
|
+
string uid = 1;
|
|
968
|
+
.exa.codeium_common_pb.AuthSource auth_source = 2;
|
|
969
|
+
string private_key = 3;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
message RegisterExternalUserResponse {
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
message DeleteExternalUserRequest {
|
|
976
|
+
string uid = 1;
|
|
977
|
+
.exa.codeium_common_pb.AuthSource auth_source = 2;
|
|
978
|
+
string private_key = 3;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
message DeleteExternalUserResponse {
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
message GetSubscriptionsRequest {
|
|
985
|
+
string firebase_id_token = 1;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
message GetSubscriptionsResponse {
|
|
989
|
+
bool exists = 1;
|
|
990
|
+
bool newsletter = 2;
|
|
991
|
+
bool disabled_telemetry = 3;
|
|
992
|
+
string inbound_source = 4;
|
|
993
|
+
string signup_stage = 5;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
message JoinWaitlistRequest {
|
|
997
|
+
string feature_name = 1;
|
|
998
|
+
string email = 2;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
message JoinWaitlistResponse {
|
|
1002
|
+
string result = 1;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
message SubscribeToBlogRequest {
|
|
1006
|
+
string email = 1;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
message SubscribeToBlogResponse {
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
message UnsubscribeFromEmailsRequest {
|
|
1013
|
+
string email = 1;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
message UnsubscribeFromEmailsResponse {
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
message SendReferralEmailRequest {
|
|
1020
|
+
reserved 1;
|
|
1021
|
+
reserved "auth_token";
|
|
1022
|
+
|
|
1023
|
+
string email = 2;
|
|
1024
|
+
string details = 3;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
message SendReferralEmailResponse {
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
message AccountOwnershipNotificationVerificationRequest {
|
|
1031
|
+
reserved 1;
|
|
1032
|
+
reserved "auth_token";
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
message AccountOwnershipNotificationVerificationResponse {
|
|
1036
|
+
bool should_show = 1;
|
|
1037
|
+
string verification_code = 2;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
message AccountOwnershipNotificationDismissRequest {
|
|
1041
|
+
reserved 1;
|
|
1042
|
+
reserved "auth_token";
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
message AccountOwnershipNotificationDismissResponse {
|
|
1046
|
+
bool success = 1;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
message PingRequest {
|
|
1050
|
+
uint64 work_duration_ms = 1 [deprecated = true];
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
message PingResponse {
|
|
1054
|
+
uint64 latency_ms = 1;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
message GetExtensionStatsRequest {
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
message GetExtensionStatsResponse {
|
|
1061
|
+
int64 vs_code_downloads = 1;
|
|
1062
|
+
int64 jetbrain_downloads = 2;
|
|
1063
|
+
int64 vim_stars = 3;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
message RegisterHybridDeploymentRequest {
|
|
1067
|
+
reserved 4;
|
|
1068
|
+
reserved "auth_token";
|
|
1069
|
+
|
|
1070
|
+
string version = 1;
|
|
1071
|
+
string team_id = 2;
|
|
1072
|
+
string base_url = 3;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
message RegisterHybridDeploymentResponse {
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
message CreateHybridDeploymentInternalRequest {
|
|
1079
|
+
string version = 1;
|
|
1080
|
+
string team_id = 2;
|
|
1081
|
+
string base_url = 3;
|
|
1082
|
+
string secret = 4;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
message CreateHybridDeploymentInternalResponse {
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
message RemoveHybridDeploymentInternalRequest {
|
|
1089
|
+
string team_id = 1;
|
|
1090
|
+
string secret = 2;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
message RemoveHybridDeploymentInternalResponse {
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
message GetHybridDeploymentsInternalRequest {
|
|
1097
|
+
string secret = 1;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
message HybridDeployment {
|
|
1101
|
+
string team_id = 1;
|
|
1102
|
+
string shared_secret = 2;
|
|
1103
|
+
string base_url = 3;
|
|
1104
|
+
string version = 4;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
message GetHybridDeploymentsInternalResponse {
|
|
1108
|
+
repeated .exa.api_server_pb.HybridDeployment deployments = 1;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
message CheckHybridDeploymentStatusRequest {
|
|
1112
|
+
reserved 1;
|
|
1113
|
+
reserved "auth_token";
|
|
1114
|
+
|
|
1115
|
+
string team_id = 2;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
message CheckHybridDeploymentStatusResponse {
|
|
1119
|
+
.exa.api_server_pb.HybridDeploymentStatus status = 1;
|
|
1120
|
+
string error = 2;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
message LogCompletionsHybridRequest {
|
|
1124
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1125
|
+
repeated .exa.codeium_common_pb.CompletionWithLatencyInfo completions_with_latency_info = 2;
|
|
1126
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 3;
|
|
1127
|
+
string repo_name = 4;
|
|
1128
|
+
string relative_path = 5;
|
|
1129
|
+
string model_tag = 6;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
message LogCompletionsHybridResponse {
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
message LogFeedbackHybridRequest {
|
|
1136
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1137
|
+
string completion_id = 2;
|
|
1138
|
+
.exa.api_server_pb.FeedbackType feedback = 3;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
message LogFeedbackHybridResponse {
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
message LogChatHybridRequest {
|
|
1145
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1146
|
+
repeated .exa.chat_pb.ChatMessagePrompt messages = 2;
|
|
1147
|
+
string conversation_id = 3;
|
|
1148
|
+
repeated string active_repos = 4;
|
|
1149
|
+
.exa.chat_pb.ChatMessage chat_message = 5;
|
|
1150
|
+
string message_text = 6;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
message LogChatHybridResponse {
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
message LogCascadeSessionHybridRequest {
|
|
1157
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1158
|
+
repeated string workspace_paths = 2;
|
|
1159
|
+
string cascade_id = 3;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
message LogCascadeSessionHybridResponse {
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
message LogCascadePromptHybridRequest {
|
|
1166
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1167
|
+
string user_prompt = 2;
|
|
1168
|
+
string model_name = 3;
|
|
1169
|
+
string repo = 4;
|
|
1170
|
+
string cascade_id = 5;
|
|
1171
|
+
string workspace_path = 6;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
message LogCascadePromptHybridResponse {
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
message GetStatusRequest {
|
|
1178
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
message GetStatusResponse {
|
|
1182
|
+
.exa.codeium_common_pb.IdeStatus status = 1;
|
|
1183
|
+
bool show_review_prompt = 2;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
message GetCascadeModelConfigsRequest {
|
|
1187
|
+
reserved 2;
|
|
1188
|
+
reserved "filter";
|
|
1189
|
+
|
|
1190
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
message GetCascadeModelConfigsForSiteRequest {
|
|
1194
|
+
reserved 5;
|
|
1195
|
+
reserved 6;
|
|
1196
|
+
reserved "filter", "auth_token";
|
|
1197
|
+
|
|
1198
|
+
string api_key = 1 [deprecated = true];
|
|
1199
|
+
string ide_name = 2 [deprecated = true];
|
|
1200
|
+
string ide_version = 3 [deprecated = true];
|
|
1201
|
+
string extension_version = 4 [deprecated = true];
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
message GetCascadeModelConfigsResponse {
|
|
1205
|
+
repeated .exa.codeium_common_pb.ClientModelConfig client_model_configs = 1;
|
|
1206
|
+
repeated .exa.codeium_common_pb.ClientModelSort client_model_sorts = 2;
|
|
1207
|
+
optional .exa.codeium_common_pb.DefaultOverrideModelConfig default_override_model_config = 3;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
message GetCascadeModelConfigsForSiteResponse {
|
|
1211
|
+
reserved 2;
|
|
1212
|
+
reserved 3;
|
|
1213
|
+
reserved "client_model_sorts", "default_off_models_for_teams";
|
|
1214
|
+
|
|
1215
|
+
repeated .exa.codeium_common_pb.ClientModelConfig client_model_configs = 1;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
message GetCommandModelConfigsRequest {
|
|
1219
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
message GetCommandModelConfigsResponse {
|
|
1223
|
+
repeated .exa.codeium_common_pb.ClientModelConfig client_model_configs = 1;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
message GetCommandModelConfigsForSiteRequest {
|
|
1227
|
+
reserved 1;
|
|
1228
|
+
reserved "auth_token";
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
message GetCommandModelConfigsForSiteResponse {
|
|
1232
|
+
repeated .exa.codeium_common_pb.ClientModelConfig client_model_configs = 1;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
message GetCliModelConfigsRequest {
|
|
1236
|
+
reserved 2;
|
|
1237
|
+
reserved "filter";
|
|
1238
|
+
|
|
1239
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
message GetCliModelConfigsResponse {
|
|
1243
|
+
reserved 2;
|
|
1244
|
+
reserved "client_model_sorts";
|
|
1245
|
+
|
|
1246
|
+
repeated .exa.codeium_common_pb.ClientModelConfig client_model_configs = 1;
|
|
1247
|
+
optional .exa.codeium_common_pb.DefaultOverrideModelConfig default_override_model_config = 3;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
message GetCliModelConfigsForSiteRequest {
|
|
1251
|
+
reserved 1;
|
|
1252
|
+
reserved 2;
|
|
1253
|
+
reserved "auth_token", "filter";
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
message GetCliModelConfigsForSiteResponse {
|
|
1257
|
+
reserved 2;
|
|
1258
|
+
reserved 3;
|
|
1259
|
+
reserved "client_model_sorts", "default_off_models_for_teams";
|
|
1260
|
+
|
|
1261
|
+
repeated .exa.codeium_common_pb.ClientModelConfig client_model_configs = 1;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
message GetConfigRequest {
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
message GetConfigResponse {
|
|
1268
|
+
repeated string repo_blacklist = 1;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
message QueryParameter {
|
|
1272
|
+
map<string, string> parameters = 1;
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
message QueryResult {
|
|
1276
|
+
map<string, string> record = 1;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
message RunCodeAlignmentRequest {
|
|
1280
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1281
|
+
string file_content = 2;
|
|
1282
|
+
int32 offset = 3;
|
|
1283
|
+
repeated .exa.codeium_common_pb.Rule rules = 4;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
message RunCodeAlignmentResponse {
|
|
1287
|
+
repeated .exa.codeium_common_pb.RuleViolation violations = 1;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
message GenerateSyntheticRuleRequest {
|
|
1291
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1292
|
+
string comment_body = 2;
|
|
1293
|
+
string file_content = 3;
|
|
1294
|
+
int32 line_number = 4;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
message GenerateSyntheticRuleResponse {
|
|
1298
|
+
.exa.codeium_common_pb.Rule rule = 1;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
message FileExtensionStats {
|
|
1302
|
+
string extension = 1;
|
|
1303
|
+
int32 lines_added = 2;
|
|
1304
|
+
int32 lines_deleted = 3;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
message GitCommit {
|
|
1308
|
+
.google.protobuf.Timestamp timestamp = 1;
|
|
1309
|
+
repeated .exa.api_server_pb.FileExtensionStats file_extension_stats = 2;
|
|
1310
|
+
string commit = 3;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
message RecordGitTelemetryRequest {
|
|
1314
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1315
|
+
repeated .exa.api_server_pb.GitCommit git_commits = 2;
|
|
1316
|
+
string repo_name = 3;
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
message RecordGitTelemetryResponse {
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
message RecordProfilingDataHeader {
|
|
1323
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1324
|
+
string application = 2;
|
|
1325
|
+
string resource = 3;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
message RecordProfilingDataData {
|
|
1329
|
+
bytes data = 1;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
message RecordProfilingDataRequest {
|
|
1333
|
+
oneof chunk {
|
|
1334
|
+
.exa.api_server_pb.RecordProfilingDataHeader header = 1;
|
|
1335
|
+
.exa.api_server_pb.RecordProfilingDataData data = 2;
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
message RecordProfilingDataResponse {
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
message RecordReadUrlContentRequest {
|
|
1343
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1344
|
+
string url = 2;
|
|
1345
|
+
.exa.codeium_common_pb.KnowledgeBaseItem web_document = 3;
|
|
1346
|
+
uint32 latency_ms = 4;
|
|
1347
|
+
bool is_cached = 5;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
message RecordReadUrlContentResponse {
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
message GetDeploymentConfigRequest {
|
|
1354
|
+
.exa.api_server_pb.DeploymentConfigKey key = 1;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
message GetDeploymentConfigResponse {
|
|
1358
|
+
string value = 1;
|
|
1359
|
+
.google.protobuf.Timestamp created_at = 2;
|
|
1360
|
+
.google.protobuf.Timestamp last_updated_at = 3;
|
|
1361
|
+
string last_updated_by = 4;
|
|
1362
|
+
string description = 5;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
message UpsertDeploymentConfigRequest {
|
|
1366
|
+
.exa.api_server_pb.DeploymentConfigKey key = 1;
|
|
1367
|
+
string value = 2;
|
|
1368
|
+
string api_key = 3;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
message UpsertDeploymentConfigResponse {
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
message GetUserAllowlistRequest {
|
|
1375
|
+
string email = 1;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
message GetUserAllowlistResponse {
|
|
1379
|
+
string email = 1;
|
|
1380
|
+
string created_by = 2;
|
|
1381
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
message InsertAllowlistRequest {
|
|
1385
|
+
string email = 1;
|
|
1386
|
+
string created_by = 2;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
message InsertAllowlistResponse {
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
message DeleteAllowlistRequest {
|
|
1393
|
+
string email = 1;
|
|
1394
|
+
string api_key = 2;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
message DeleteAllowlistResponse {
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
message GetAllowlistRequest {
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
message GetAllowlistResponse {
|
|
1404
|
+
repeated .exa.api_server_pb.GetUserAllowlistResponse allowlist = 1;
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
message RecordCascadeUsageRequest {
|
|
1408
|
+
reserved 15;
|
|
1409
|
+
reserved "external_acu_multiplier";
|
|
1410
|
+
|
|
1411
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1412
|
+
string trajectory_id = 2;
|
|
1413
|
+
int32 step_index = 3;
|
|
1414
|
+
int32 prompt_credits_used = 4;
|
|
1415
|
+
int32 flow_credits_used = 5;
|
|
1416
|
+
.exa.codeium_common_pb.ConversationalPlannerMode planner_mode = 6;
|
|
1417
|
+
string cascade_id = 7;
|
|
1418
|
+
.exa.codeium_common_pb.ModelOrAlias model = 8 [deprecated = true];
|
|
1419
|
+
bool record_analytics_usage = 9;
|
|
1420
|
+
.exa.codeium_common_pb.ModelPricingType pricing_type = 10;
|
|
1421
|
+
.exa.codeium_common_pb.ModelUsageStats model_usage_stats = 11;
|
|
1422
|
+
bool is_user_input = 12;
|
|
1423
|
+
.exa.api_server_pb.ChatMessageRequestType request_type = 13;
|
|
1424
|
+
double cascade_acu_multiplier = 14;
|
|
1425
|
+
string execution_id = 16;
|
|
1426
|
+
double cli_acu_multiplier = 17;
|
|
1427
|
+
string model_uid = 18;
|
|
1428
|
+
double prompt_credits_per_acu = 19;
|
|
1429
|
+
int64 list_cost_micros = 20;
|
|
1430
|
+
int64 discounted_cost_micros = 23;
|
|
1431
|
+
.exa.codeium_common_pb.BillingStrategy billing_strategy = 21;
|
|
1432
|
+
.exa.codeium_common_pb.TeamsTier user_tier = 22;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
message RecordCascadeUsageResponse {
|
|
1436
|
+
reserved 1;
|
|
1437
|
+
reserved "plan_info";
|
|
1438
|
+
|
|
1439
|
+
.exa.codeium_common_pb.UserStatus user_status = 2;
|
|
1440
|
+
int32 prompt_credits_used = 3;
|
|
1441
|
+
int32 flex_credits_used = 4;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
message GetWebSearchResultsRequest {
|
|
1445
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1446
|
+
string query = 2;
|
|
1447
|
+
uint32 limit = 3;
|
|
1448
|
+
string domain = 4;
|
|
1449
|
+
.exa.codeium_common_pb.ThirdPartyWebSearchConfig third_party_config = 5;
|
|
1450
|
+
string mode = 6;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
message GetWebSearchResultsResponse {
|
|
1454
|
+
repeated .exa.codeium_common_pb.KnowledgeBaseItem results = 1;
|
|
1455
|
+
string web_search_url = 2;
|
|
1456
|
+
string summary = 3;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
message GetWebDocsOptionsRequest {
|
|
1460
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
message GetWebDocsOptionsResponse {
|
|
1464
|
+
repeated .exa.codeium_common_pb.WebDocsOption options = 1;
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
message GetWebSearchRedirectRequest {
|
|
1468
|
+
string original_url = 1;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
message GetWebSearchRedirectResponse {
|
|
1472
|
+
string redirect_url = 1;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
message ShareCodeMapRequest {
|
|
1476
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1477
|
+
string code_map_json = 2;
|
|
1478
|
+
string title = 3;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
message ShareCodeMapResponse {
|
|
1482
|
+
string share_url = 1;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
message GetCodeMapRequest {
|
|
1486
|
+
reserved 1;
|
|
1487
|
+
reserved "auth_token";
|
|
1488
|
+
|
|
1489
|
+
string code_map_id = 2;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
message GetCodeMapResponse {
|
|
1493
|
+
string code_map_json = 1;
|
|
1494
|
+
bool is_owner = 2;
|
|
1495
|
+
string sharing_mode = 3;
|
|
1496
|
+
string highest_allowed_sharing_mode = 4;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
message GetCodeMapMetadataRequest {
|
|
1500
|
+
string code_map_id = 1;
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
message GetCodeMapMetadataResponse {
|
|
1504
|
+
string title = 1;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
message GetSharedCodeMapRequest {
|
|
1508
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1509
|
+
string code_map_id = 2;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
message GetSharedCodeMapResponse {
|
|
1513
|
+
string code_map_json = 1;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
message UpdateCodeMapSharingModeRequest {
|
|
1517
|
+
reserved 1;
|
|
1518
|
+
reserved "auth_token";
|
|
1519
|
+
|
|
1520
|
+
string code_map_id = 2;
|
|
1521
|
+
string sharing_mode = 3;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
message UpdateCodeMapSharingModeResponse {
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
message ListUserSharedCodeMapsRequest {
|
|
1528
|
+
reserved 1;
|
|
1529
|
+
reserved "auth_token";
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
message SharedCodeMapSummary {
|
|
1533
|
+
string storage_key = 1;
|
|
1534
|
+
string map_title = 2;
|
|
1535
|
+
string sharing_mode = 3;
|
|
1536
|
+
int32 version = 4;
|
|
1537
|
+
.google.protobuf.Timestamp created_at = 5;
|
|
1538
|
+
.google.protobuf.Timestamp updated_at = 6;
|
|
1539
|
+
string owner_name = 7;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
message ListUserSharedCodeMapsResponse {
|
|
1543
|
+
repeated .exa.api_server_pb.SharedCodeMapSummary codemaps = 1;
|
|
1544
|
+
repeated .exa.api_server_pb.SharedCodeMapSummary team_codemaps = 2;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
message DeleteSharedCodeMapRequest {
|
|
1548
|
+
reserved 1;
|
|
1549
|
+
reserved "auth_token";
|
|
1550
|
+
|
|
1551
|
+
string code_map_id = 2;
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
message DeleteSharedCodeMapResponse {
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
message QueryImageForPixelRequest {
|
|
1558
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1559
|
+
.exa.codeium_common_pb.ImageData image = 2;
|
|
1560
|
+
uint32 image_width = 3;
|
|
1561
|
+
uint32 image_height = 4;
|
|
1562
|
+
string query = 5;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
message QueryImageForPixelResponse {
|
|
1566
|
+
uint32 x = 1;
|
|
1567
|
+
uint32 y = 2;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
message OidcProviderConfig {
|
|
1571
|
+
string client_id = 1;
|
|
1572
|
+
string client_secret = 2;
|
|
1573
|
+
string issuer_url = 3;
|
|
1574
|
+
string redirect_url = 4;
|
|
1575
|
+
.google.protobuf.Timestamp created_at = 5;
|
|
1576
|
+
.google.protobuf.Timestamp last_updated_at = 6;
|
|
1577
|
+
string last_updated_by = 7;
|
|
1578
|
+
string team_id = 8;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
message RegisterOidcProviderRequest {
|
|
1582
|
+
string api_key = 1;
|
|
1583
|
+
.exa.api_server_pb.OidcProviderConfig config = 2;
|
|
1584
|
+
string team_name = 3;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
message RegisterOidcProviderResponse {
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
message UpdateOidcProviderRequest {
|
|
1591
|
+
string api_key = 1;
|
|
1592
|
+
string client_id = 2;
|
|
1593
|
+
optional string client_secret = 3;
|
|
1594
|
+
optional string issuer_url = 4;
|
|
1595
|
+
optional string redirect_url = 5;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
message UpdateOidcProviderResponse {
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
message GetTeamOidcProvidersRequest {
|
|
1602
|
+
string api_key = 1;
|
|
1603
|
+
string team_name = 2;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
message GetTeamOidcProvidersResponse {
|
|
1607
|
+
repeated .exa.api_server_pb.OidcProviderConfig providers = 1;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
message GetAllOidcProvidersRequest {
|
|
1611
|
+
string api_key = 1;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
message GetAllOidcProvidersResponse {
|
|
1615
|
+
repeated .exa.api_server_pb.OidcProviderConfig providers = 1;
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
message DeleteOidcProviderRequest {
|
|
1619
|
+
string api_key = 1;
|
|
1620
|
+
string client_id = 2;
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
message DeleteOidcProviderResponse {
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
message GetOidcAuthorizationUrlRequest {
|
|
1627
|
+
string client_id = 1;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
message GetOidcAuthorizationUrlResponse {
|
|
1631
|
+
string auth_url = 1;
|
|
1632
|
+
string state = 2;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
message ExchangeOidcCodeRequest {
|
|
1636
|
+
string code = 1;
|
|
1637
|
+
string state = 2;
|
|
1638
|
+
string client_id = 3;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
message ExchangeOidcCodeResponse {
|
|
1642
|
+
string access_token = 1;
|
|
1643
|
+
string id_token = 2;
|
|
1644
|
+
string refresh_token = 3;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
message RefreshOidcTokenRequest {
|
|
1648
|
+
string client_id = 1;
|
|
1649
|
+
string refresh_token = 2;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
message RefreshOidcTokenResponse {
|
|
1653
|
+
string access_token = 1;
|
|
1654
|
+
string id_token = 2;
|
|
1655
|
+
string refresh_token = 3;
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
message GetTeamOrganizationalControlsRequest {
|
|
1659
|
+
.exa.codeium_common_pb.Metadata metadata = 2;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
message GetTeamOrganizationalControlsForSiteRequest {
|
|
1663
|
+
reserved 1;
|
|
1664
|
+
reserved "auth_token";
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
message GetTeamOrganizationalControlsResponse {
|
|
1668
|
+
.exa.codeium_common_pb.TeamOrganizationalControls controls = 1;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
message GetTeamOrganizationalControlsForSiteResponse {
|
|
1672
|
+
.exa.codeium_common_pb.TeamOrganizationalControls controls = 1;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
message UpsertTeamOrganizationalControlsRequest {
|
|
1676
|
+
.exa.codeium_common_pb.TeamOrganizationalControls controls = 1;
|
|
1677
|
+
.exa.codeium_common_pb.Metadata metadata = 2;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
message UpsertTeamOrganizationalControlsResponse {
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
message UpsertTeamOrganizationalControlsForSiteRequest {
|
|
1684
|
+
reserved 2;
|
|
1685
|
+
reserved "auth_token";
|
|
1686
|
+
|
|
1687
|
+
.exa.codeium_common_pb.TeamOrganizationalControls controls = 1;
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
message UpsertTeamOrganizationalControlsForSiteResponse {
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
message DeleteTeamOrganizationalControlsRequest {
|
|
1694
|
+
.exa.codeium_common_pb.Metadata metadata = 2;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
message DeleteTeamOrganizationalControlsResponse {
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
message ModelLabelsList {
|
|
1701
|
+
repeated string labels = 1;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
message ModelUidsList {
|
|
1705
|
+
repeated string uids = 1;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
message ApiProvidersList {
|
|
1709
|
+
repeated .exa.codeium_common_pb.APIProvider providers = 1;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
message ModelProvidersList {
|
|
1713
|
+
repeated .exa.codeium_common_pb.ModelProvider providers = 1;
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
message BlockedModelTagsList {
|
|
1717
|
+
repeated string tags = 1;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
message UpdateTeamOrganizationalControlsExternalRequest {
|
|
1721
|
+
reserved 1;
|
|
1722
|
+
reserved "metadata";
|
|
1723
|
+
|
|
1724
|
+
optional .exa.api_server_pb.ModelLabelsList cascade_model_labels = 2 [deprecated = true];
|
|
1725
|
+
optional .exa.api_server_pb.ModelLabelsList command_model_labels = 3 [deprecated = true];
|
|
1726
|
+
optional .exa.api_server_pb.ModelLabelsList cli_model_labels = 4 [deprecated = true];
|
|
1727
|
+
optional .exa.api_server_pb.ModelUidsList cascade_model_uids = 5;
|
|
1728
|
+
optional .exa.api_server_pb.ModelUidsList command_model_uids = 6;
|
|
1729
|
+
optional .exa.api_server_pb.ModelUidsList cli_model_uids = 7;
|
|
1730
|
+
optional .exa.api_server_pb.ApiProvidersList allowed_api_providers = 8;
|
|
1731
|
+
optional .exa.api_server_pb.ModelProvidersList allowed_model_providers = 9;
|
|
1732
|
+
optional .exa.codeium_common_pb.TeamOrganizationalControls.ModelFilterMode model_filter_mode = 10;
|
|
1733
|
+
optional .exa.codeium_common_pb.TeamOrganizationalControls.AdaptiveSetting adaptive_setting = 11;
|
|
1734
|
+
optional .exa.api_server_pb.BlockedModelTagsList blocked_model_tags = 12;
|
|
1735
|
+
optional .exa.codeium_common_pb.TeamOrganizationalControls.QuickReviewSetting quick_review_setting = 13;
|
|
1736
|
+
optional .exa.codeium_common_pb.TeamOrganizationalControls.AnthropicCyberRetentionSetting anthropic_cyber_retention_setting = 14;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
message UpdateTeamOrganizationalControlsExternalResponse {
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
message GetWindsurfJSAvailableDeployTargetsRequest {
|
|
1743
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
message GetWindsurfJSAvailableDeployTargetsResponse {
|
|
1747
|
+
repeated .exa.codeium_common_pb.DeployTarget deploy_targets = 1;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
message ValidateWindsurfJSAppProjectNameRequest {
|
|
1751
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1752
|
+
string project_name = 2;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
message ValidateWindsurfJSAppProjectNameResponse {
|
|
1756
|
+
.exa.codeium_common_pb.ValidationStatus status = 1;
|
|
1757
|
+
string invalid_reason = 3;
|
|
1758
|
+
repeated string alternative_names = 2;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
message DeployWindsurfJSAppRequest {
|
|
1762
|
+
message DeploymentMetadata {
|
|
1763
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1764
|
+
string project_path = 2;
|
|
1765
|
+
string project_id = 6;
|
|
1766
|
+
string subdomain_name = 3;
|
|
1767
|
+
string framework = 4;
|
|
1768
|
+
.exa.codeium_common_pb.DeploymentProvider deployment_provider = 5;
|
|
1769
|
+
.exa.codeium_common_pb.DeployTarget deploy_target = 7;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
message DeploymentFileChunk {
|
|
1773
|
+
string file_path = 1;
|
|
1774
|
+
bytes file_contents = 2;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
oneof data {
|
|
1778
|
+
.exa.api_server_pb.DeployWindsurfJSAppRequest.DeploymentMetadata deployment_metadata = 1;
|
|
1779
|
+
.exa.api_server_pb.DeployWindsurfJSAppRequest.DeploymentFileChunk file_chunk = 2;
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
message DeployWindsurfJSAppResponse {
|
|
1784
|
+
.exa.codeium_common_pb.WindsurfDeployment deployment = 1;
|
|
1785
|
+
bool is_overwrite = 2;
|
|
1786
|
+
string claim_url = 3;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
message CreateWindsurfJSAppRequest {
|
|
1790
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1791
|
+
string subdomain_name = 2;
|
|
1792
|
+
.exa.codeium_common_pb.DeploymentProvider deployment_provider = 3;
|
|
1793
|
+
.exa.codeium_common_pb.DeployTarget deploy_target = 4;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
message CreateWindsurfJSAppResponse {
|
|
1797
|
+
.exa.codeium_common_pb.WindsurfProject project = 1;
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
message DeleteWindsurfJSAppRequest {
|
|
1801
|
+
string api_key = 1;
|
|
1802
|
+
string project_id = 2;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
message DeleteWindsurfJSAppResponse {
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
message GetWindsurfJSAppDeploymentClaimStatusRequest {
|
|
1809
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1810
|
+
string project_id = 2;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
message GetWindsurfJSAppDeploymentClaimStatusResponse {
|
|
1814
|
+
bool is_claimed = 1;
|
|
1815
|
+
string claim_url = 2;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
message GetDeploymentProviderProjectNameByProjectIdRequest {
|
|
1819
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1820
|
+
string project_id = 2;
|
|
1821
|
+
.exa.codeium_common_pb.DeploymentProvider deployment_provider = 3;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
message GetDeploymentProviderProjectNameByProjectIdResponse {
|
|
1825
|
+
string project_name = 1;
|
|
1826
|
+
string subdomain = 2;
|
|
1827
|
+
string team_slug = 3;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
message GetWindsurfJSDeployTargetByProjectIdRequest {
|
|
1831
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1832
|
+
string project_id = 2;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
message GetWindsurfJSDeployTargetByProjectIdResponse {
|
|
1836
|
+
.exa.codeium_common_pb.DeployTarget deploy_target = 1;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
message GetWindsurfJSAppDeploymentsByProjectIdRequest {
|
|
1840
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1841
|
+
string project_id = 2;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
message GetWindsurfJSAppDeploymentsByProjectIdResponse {
|
|
1845
|
+
repeated .exa.codeium_common_pb.WindsurfDeployment deployments = 1;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
message GetWindsurfJSAppsRequest {
|
|
1849
|
+
reserved 2;
|
|
1850
|
+
reserved "auth_token";
|
|
1851
|
+
|
|
1852
|
+
string api_key = 1;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
message GetWindsurfJSAppsResponse {
|
|
1856
|
+
message WindsurfJSApp {
|
|
1857
|
+
string app_url = 1;
|
|
1858
|
+
.exa.codeium_common_pb.DeploymentProvider deployment_provider = 2;
|
|
1859
|
+
bool is_claimed = 3;
|
|
1860
|
+
string claim_url = 4;
|
|
1861
|
+
.google.protobuf.Timestamp expiration_time = 5;
|
|
1862
|
+
string project_id = 6;
|
|
1863
|
+
string provider_team_slug = 7;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
int32 unclaimed_apps_used = 1;
|
|
1867
|
+
int32 unclaimed_apps_limit = 2;
|
|
1868
|
+
repeated .exa.api_server_pb.GetWindsurfJSAppsResponse.WindsurfJSApp apps = 3;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
message GetWindsurfJSAppDeploymentStatusesByProjectIdRequest {
|
|
1872
|
+
string api_key = 1;
|
|
1873
|
+
string project_id = 2;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
message GetWindsurfJSAppDeploymentStatusesByProjectIdResponse {
|
|
1877
|
+
message WindsurfDeploymentStatus {
|
|
1878
|
+
.exa.codeium_common_pb.WindsurfDeployment deployment = 1;
|
|
1879
|
+
.exa.codeium_common_pb.DeploymentBuildStatus build_status = 2;
|
|
1880
|
+
string build_error = 3;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
repeated .exa.api_server_pb.GetWindsurfJSAppDeploymentStatusesByProjectIdResponse.WindsurfDeploymentStatus deployment_statuses = 1;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
message GetWindsurfJSAppDeploymentRequest {
|
|
1887
|
+
string api_key = 1;
|
|
1888
|
+
string deployment_id = 2;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
message GetWindsurfJSAppDeploymentResponse {
|
|
1892
|
+
.exa.codeium_common_pb.WindsurfDeployment deployment = 1;
|
|
1893
|
+
.exa.codeium_common_pb.DeploymentBuildStatus build_status = 2;
|
|
1894
|
+
string deployment_url = 3;
|
|
1895
|
+
string build_error = 4;
|
|
1896
|
+
string build_logs = 5;
|
|
1897
|
+
bool is_claimed = 6;
|
|
1898
|
+
string claim_url = 7;
|
|
1899
|
+
string provider_team_slug = 8;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
message ApplyTrajectoryHeuristicsRequest {
|
|
1903
|
+
repeated string heuristics = 1;
|
|
1904
|
+
.exa.cortex_pb.CortexTrajectory trajectory = 2;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
message ApplyTrajectoryHeuristicsResponse {
|
|
1908
|
+
repeated string triggered_heuristics = 1;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
message CreateTrajectoryShareStreamRequest {
|
|
1912
|
+
message Initial {
|
|
1913
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1914
|
+
.exa.cortex_pb.TrajectoryShareStatus share_status = 2;
|
|
1915
|
+
string trajectory_id = 3;
|
|
1916
|
+
int32 num_chunks = 4;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
message Chunk {
|
|
1920
|
+
string chunk = 1;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
oneof request {
|
|
1924
|
+
.exa.api_server_pb.CreateTrajectoryShareStreamRequest.Initial initial = 1;
|
|
1925
|
+
.exa.api_server_pb.CreateTrajectoryShareStreamRequest.Chunk chunk = 2;
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
message CreateTrajectoryShareStreamResponse {
|
|
1930
|
+
string url = 1;
|
|
1931
|
+
string share_id = 2;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
message FetchTrajectoryShareRequest {
|
|
1935
|
+
reserved 2;
|
|
1936
|
+
reserved "metadata";
|
|
1937
|
+
|
|
1938
|
+
string share_id = 1;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
message FetchTrajectoryShareResponse {
|
|
1942
|
+
.exa.cortex_pb.CortexTrajectory trajectory = 1;
|
|
1943
|
+
.exa.cortex_pb.CascadeTrajectorySummary summary = 2;
|
|
1944
|
+
string user_name = 3;
|
|
1945
|
+
string user_profile_picture_url = 4;
|
|
1946
|
+
.google.protobuf.Timestamp shared_at = 5;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
message DeleteTrajectoryShareRequest {
|
|
1950
|
+
string share_id = 1;
|
|
1951
|
+
string api_key = 2;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
message DeleteTrajectoryShareResponse {
|
|
1955
|
+
bool success = 1;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
message TrajectoryShare {
|
|
1959
|
+
string share_id = 1;
|
|
1960
|
+
string trajectory_id = 2;
|
|
1961
|
+
.exa.cortex_pb.CortexTrajectory trajectory = 3;
|
|
1962
|
+
.exa.cortex_pb.CascadeTrajectorySummary summary = 4;
|
|
1963
|
+
.exa.cortex_pb.TrajectoryShareStatus share_status = 5;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
message FetchTrajectoryShareByUserRequest {
|
|
1967
|
+
reserved 2;
|
|
1968
|
+
reserved "auth_token";
|
|
1969
|
+
|
|
1970
|
+
string api_key = 1;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
message FetchTrajectoryShareByUserResponse {
|
|
1974
|
+
string user_name = 1;
|
|
1975
|
+
string user_profile_picture_url = 2;
|
|
1976
|
+
repeated .exa.api_server_pb.TrajectoryShare shares = 3;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
message IsConversationSharingBlockedRequest {
|
|
1980
|
+
reserved 1;
|
|
1981
|
+
reserved 2;
|
|
1982
|
+
reserved "auth_token";
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
message IsConversationSharingBlockedResponse {
|
|
1986
|
+
bool blocked = 1;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
message GetDefaultWorkflowTemplatesRequest {
|
|
1990
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
message GetDefaultWorkflowTemplatesResponse {
|
|
1994
|
+
repeated .exa.cortex_pb.WorkflowSpec workflows = 1;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
message GetSupabaseSecretRequest {
|
|
1998
|
+
string api_key = 1;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
message GetSupabaseSecretResponse {
|
|
2002
|
+
string secret = 1;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
message GetSSOProvidersRequest {
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
message GetSSOProvidersResponse {
|
|
2009
|
+
string sso_providers_json = 1;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
message FindTeamByEmailRequest {
|
|
2013
|
+
string email = 1;
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
message FindTeamByEmailResponse {
|
|
2017
|
+
string team_id = 1;
|
|
2018
|
+
string team_name = 2;
|
|
2019
|
+
bool found = 3;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
message GetExternalModelsGroupRequest {
|
|
2023
|
+
reserved 1;
|
|
2024
|
+
reserved "auth_token";
|
|
2025
|
+
|
|
2026
|
+
uint32 id = 2;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
message GetExternalModelsGroupResponse {
|
|
2030
|
+
repeated string groups = 1;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
message UpdateExternalModelsGroupRequest {
|
|
2034
|
+
reserved 1;
|
|
2035
|
+
reserved "auth_token";
|
|
2036
|
+
|
|
2037
|
+
uint32 id = 2;
|
|
2038
|
+
repeated string groups = 3;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
message UpdateExternalModelsGroupResponse {
|
|
2042
|
+
repeated string groups = 1;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
message GetExternalModelRequest {
|
|
2046
|
+
string api_key = 1;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
message GetExternalModelResponse {
|
|
2050
|
+
repeated .exa.codeium_common_pb.ExternalModel models = 1;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
message CreateExternalModelsRequest {
|
|
2054
|
+
reserved 1;
|
|
2055
|
+
reserved "auth_token";
|
|
2056
|
+
|
|
2057
|
+
string model_name = 2;
|
|
2058
|
+
string endpoint = 3;
|
|
2059
|
+
string api_key = 4;
|
|
2060
|
+
.exa.codeium_common_pb.Model model_id = 5;
|
|
2061
|
+
string region = 6;
|
|
2062
|
+
string project_id = 7;
|
|
2063
|
+
string access_key = 8;
|
|
2064
|
+
string secret_access_key = 9;
|
|
2065
|
+
int32 max_completion_tokens = 10;
|
|
2066
|
+
int32 max_input_tokens = 11;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
message UpdateExternalModelsRequest {
|
|
2070
|
+
reserved 1;
|
|
2071
|
+
reserved "auth_token";
|
|
2072
|
+
|
|
2073
|
+
string model_name = 2;
|
|
2074
|
+
string endpoint = 3;
|
|
2075
|
+
string api_key = 4;
|
|
2076
|
+
.exa.codeium_common_pb.Model original_model_id = 5;
|
|
2077
|
+
string region = 6;
|
|
2078
|
+
string project_id = 7;
|
|
2079
|
+
string access_key = 8;
|
|
2080
|
+
string secret_access_key = 9;
|
|
2081
|
+
string original_model_name = 10;
|
|
2082
|
+
uint32 id = 11;
|
|
2083
|
+
int32 max_completion_tokens = 12;
|
|
2084
|
+
int32 max_input_tokens = 13;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
message CreateExternalModelsResponse {
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
message DeleteExternalModelsRequest {
|
|
2091
|
+
reserved 1;
|
|
2092
|
+
reserved "auth_token";
|
|
2093
|
+
|
|
2094
|
+
string model_name = 2;
|
|
2095
|
+
.exa.codeium_common_pb.Model model_id = 3;
|
|
2096
|
+
uint32 id = 11;
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
message UpdateExternalModelsResponse {
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
message DeleteExternalModelsResponse {
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
message CheckBugsRequest {
|
|
2106
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2107
|
+
string diff = 2;
|
|
2108
|
+
string repo_name = 3;
|
|
2109
|
+
string commit_hash = 4;
|
|
2110
|
+
string author_name = 5;
|
|
2111
|
+
string model = 6;
|
|
2112
|
+
string commit_message = 7;
|
|
2113
|
+
int32 lines_changed = 8;
|
|
2114
|
+
repeated string user_rules = 9;
|
|
2115
|
+
string method = 10;
|
|
2116
|
+
string symbol_context = 11;
|
|
2117
|
+
string check_type = 12;
|
|
2118
|
+
string base_ref = 13;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
message CheckBugsResponse {
|
|
2122
|
+
repeated .exa.bug_checker_pb.Bug bugs = 1;
|
|
2123
|
+
string bug_check_id = 2;
|
|
2124
|
+
string method_used = 3;
|
|
2125
|
+
string model_used = 4 [deprecated = true];
|
|
2126
|
+
string playgrounds = 5;
|
|
2127
|
+
.exa.codeium_common_pb.Model model_id = 6;
|
|
2128
|
+
string agent_version = 7;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
message GetLifeguardConfigRequest {
|
|
2132
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
message GetLifeguardConfigResponse {
|
|
2136
|
+
.exa.codeium_common_pb.LifeguardConfig config = 1;
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
message AcceptBugRequest {
|
|
2140
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2141
|
+
string bug_check_id = 2;
|
|
2142
|
+
string bug_id = 3;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
message AcceptBugResponse {
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
message RejectBugRequest {
|
|
2149
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2150
|
+
string bug_check_id = 2;
|
|
2151
|
+
string bug_id = 3;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
message RejectBugResponse {
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
message SubmitBugReportRequest {
|
|
2158
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2159
|
+
string description = 2;
|
|
2160
|
+
string bug_type = 3;
|
|
2161
|
+
string diagnostics_json = 4;
|
|
2162
|
+
bytes screenshot = 5;
|
|
2163
|
+
string tab_info = 6;
|
|
2164
|
+
string other = 7;
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
message SubmitBugReportResponse {
|
|
2168
|
+
string message_link = 1;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
message GetTabRequest {
|
|
2172
|
+
reserved 8;
|
|
2173
|
+
|
|
2174
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2175
|
+
.exa.prompt_pb.UnifiedPromptComponents unified_prompt_components = 2;
|
|
2176
|
+
.exa.codeium_common_pb.ExperimentConfig experiment_config = 3;
|
|
2177
|
+
.exa.codeium_common_pb.ProviderSource provider_source = 4;
|
|
2178
|
+
string prompt_id = 5;
|
|
2179
|
+
.exa.codeium_common_pb.Language language = 6;
|
|
2180
|
+
.exa.codeium_common_pb.Model model = 7;
|
|
2181
|
+
.exa.api_server_pb.TabTrajectoryStepsV2 trajectory_steps_v2 = 9;
|
|
2182
|
+
optional int32 streaming_completion_version = 10;
|
|
2183
|
+
}
|
|
2184
|
+
|
|
2185
|
+
message GetTabResponse {
|
|
2186
|
+
message PreResponse {
|
|
2187
|
+
reserved 4;
|
|
2188
|
+
|
|
2189
|
+
string prompt = 1;
|
|
2190
|
+
string request_id = 2;
|
|
2191
|
+
.exa.codeium_common_pb.ModelFeatures model_features = 3;
|
|
2192
|
+
map<string, uint64> uris_to_hashes = 5;
|
|
2193
|
+
.exa.api_server_pb.TrajectoryCacheInfoV2 cache_info_v2 = 6;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
message MissingInformation {
|
|
2197
|
+
repeated string uris = 1;
|
|
2198
|
+
optional int64 start_step = 2;
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
oneof message {
|
|
2202
|
+
.exa.api_server_pb.GetTabResponse.PreResponse pre_response = 1;
|
|
2203
|
+
.exa.codeium_common_pb.StreamingCompletion streaming_completion = 2;
|
|
2204
|
+
.exa.api_server_pb.GetTabResponse.MissingInformation missing_information = 3;
|
|
2205
|
+
.exa.api_server_pb.DeltaTab streaming_completion_v2 = 4;
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
message DeltaTab {
|
|
2210
|
+
message DeltaSupercomplete {
|
|
2211
|
+
uint64 start_line = 1;
|
|
2212
|
+
uint64 end_line = 2;
|
|
2213
|
+
string delta_old_str = 3;
|
|
2214
|
+
string delta_new_str = 4;
|
|
2215
|
+
bool is_import = 5;
|
|
2216
|
+
.exa.codeium_common_pb.DocumentPosition cursor_position = 6;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
message DeltaTabJump {
|
|
2220
|
+
.exa.codeium_common_pb.DocumentPosition cursor_position = 1;
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
message DeltaNoop {
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
string id = 1;
|
|
2227
|
+
string path = 2;
|
|
2228
|
+
bool is_complete = 3;
|
|
2229
|
+
optional .exa.codeium_common_pb.StopReason stop_reason = 7;
|
|
2230
|
+
oneof delta {
|
|
2231
|
+
.exa.api_server_pb.DeltaTab.DeltaSupercomplete delta_supercomplete = 4;
|
|
2232
|
+
.exa.api_server_pb.DeltaTab.DeltaTabJump delta_tab_jump = 5;
|
|
2233
|
+
.exa.api_server_pb.DeltaTab.DeltaNoop delta_noop = 6;
|
|
2234
|
+
}
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
message TrajectoryCacheInfoV2 {
|
|
2238
|
+
string cache_key = 1;
|
|
2239
|
+
repeated uint64 hashes = 2;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
message TabTrajectoryStepsV2 {
|
|
2243
|
+
repeated uint64 hashes = 1;
|
|
2244
|
+
repeated .exa.cortex_pb.CortexTrajectoryStep steps_after_hashes = 2;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
message EnrollCyberVerificationRequest {
|
|
2248
|
+
reserved 1;
|
|
2249
|
+
reserved "auth_token";
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
message EnrollCyberVerificationResponse {
|
|
2253
|
+
string enrollment_url = 1;
|
|
2254
|
+
string anthropic_profile_id = 2;
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2257
|
+
message GetCyberVerificationEnrollmentUrlRequest {
|
|
2258
|
+
reserved 1;
|
|
2259
|
+
reserved "auth_token";
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
message GetCyberVerificationEnrollmentUrlResponse {
|
|
2263
|
+
string enrollment_url = 1;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
message UpdateAnthropicCyberVerificationEnabledRequest {
|
|
2267
|
+
reserved 1;
|
|
2268
|
+
reserved "auth_token";
|
|
2269
|
+
|
|
2270
|
+
.exa.codeium_common_pb.TeamOrganizationalControls.CyberVerificationEnabled enabled = 2;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
message UpdateAnthropicCyberVerificationEnabledResponse {
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
message GetDecagonAuthTokenRequest {
|
|
2277
|
+
reserved 1;
|
|
2278
|
+
reserved "auth_token";
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
message GetDecagonAuthTokenResponse {
|
|
2282
|
+
string signature = 1;
|
|
2283
|
+
int64 epoch = 2;
|
|
2284
|
+
string user_id = 3;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
service ApiServerService {
|
|
2288
|
+
rpc GetDevstralStream (.exa.api_server_pb.GetDevstralStreamRequest) returns (stream .exa.api_server_pb.GetDevstralStreamResponse);
|
|
2289
|
+
rpc GetCompletions (.exa.api_server_pb.GetCompletionsRequest) returns (.exa.api_server_pb.GetCompletionsResponse);
|
|
2290
|
+
rpc GetStreamingCompletions (.exa.api_server_pb.GetStreamingCompletionsRequest) returns (stream .exa.api_server_pb.GetStreamingCompletionsResponse);
|
|
2291
|
+
rpc CancelCompletions (.exa.api_server_pb.CancelCompletionsRequest) returns (.exa.api_server_pb.CancelCompletionsResponse);
|
|
2292
|
+
rpc GetChatCompletions (.exa.api_server_pb.GetChatCompletionsRequest) returns (.exa.api_server_pb.GetChatCompletionsResponse);
|
|
2293
|
+
rpc GetStreamingExternalChatCompletions (.exa.api_server_pb.GetChatCompletionsRequest) returns (stream .exa.api_server_pb.GetStreamingExternalChatCompletionsResponse);
|
|
2294
|
+
rpc GetEmbeddings (.exa.api_server_pb.GetEmbeddingsRequest) returns (.exa.api_server_pb.GetEmbeddingsResponse);
|
|
2295
|
+
rpc GetChatMessage (.exa.api_server_pb.GetChatMessageRequest) returns (stream .exa.api_server_pb.GetChatMessageResponse);
|
|
2296
|
+
rpc AssignArenaModel (.exa.api_server_pb.AssignArenaModelRequest) returns (.exa.api_server_pb.AssignArenaModelResponse);
|
|
2297
|
+
rpc AssignModel (.exa.api_server_pb.AssignModelRequest) returns (.exa.api_server_pb.AssignModelResponse);
|
|
2298
|
+
rpc GetStreamingModelAPITextCompletion (.exa.api_server_pb.GetStreamingModelAPITextCompletionRequest) returns (stream .exa.api_server_pb.GetStreamingModelAPITextCompletionResponse);
|
|
2299
|
+
rpc GetDeepWiki (.exa.api_server_pb.GetDeepWikiRequest) returns (stream .exa.api_server_pb.GetDeepWikiResponse);
|
|
2300
|
+
rpc GetTab (.exa.api_server_pb.GetTabRequest) returns (stream .exa.api_server_pb.GetTabResponse);
|
|
2301
|
+
rpc CheckChatCapacity (.exa.api_server_pb.CheckChatCapacityRequest) returns (.exa.api_server_pb.CheckChatCapacityResponse);
|
|
2302
|
+
rpc CheckUserMessageRateLimit (.exa.api_server_pb.CheckUserMessageRateLimitRequest) returns (.exa.api_server_pb.CheckUserMessageRateLimitResponse);
|
|
2303
|
+
rpc GetTeamOrganizationalControls (.exa.api_server_pb.GetTeamOrganizationalControlsRequest) returns (.exa.api_server_pb.GetTeamOrganizationalControlsResponse);
|
|
2304
|
+
rpc GetTeamOrganizationalControlsForSite (.exa.api_server_pb.GetTeamOrganizationalControlsForSiteRequest) returns (.exa.api_server_pb.GetTeamOrganizationalControlsForSiteResponse);
|
|
2305
|
+
rpc UpsertTeamOrganizationalControls (.exa.api_server_pb.UpsertTeamOrganizationalControlsRequest) returns (.exa.api_server_pb.UpsertTeamOrganizationalControlsResponse);
|
|
2306
|
+
rpc UpsertTeamOrganizationalControlsForSite (.exa.api_server_pb.UpsertTeamOrganizationalControlsForSiteRequest) returns (.exa.api_server_pb.UpsertTeamOrganizationalControlsForSiteResponse);
|
|
2307
|
+
rpc UpdateTeamOrganizationalControlsExternal (.exa.api_server_pb.UpdateTeamOrganizationalControlsExternalRequest) returns (.exa.api_server_pb.UpdateTeamOrganizationalControlsExternalResponse);
|
|
2308
|
+
rpc DeleteTeamOrganizationalControls (.exa.api_server_pb.DeleteTeamOrganizationalControlsRequest) returns (.exa.api_server_pb.DeleteTeamOrganizationalControlsResponse);
|
|
2309
|
+
rpc GetMQuery (.exa.api_server_pb.GetMQueryRequest) returns (.exa.api_server_pb.GetMQueryResponse);
|
|
2310
|
+
rpc ProvideFeedback (.exa.api_server_pb.ProvideFeedbackRequest) returns (.exa.api_server_pb.ProvideFeedbackResponse);
|
|
2311
|
+
rpc UploadErrorTraces (.exa.api_server_pb.UploadErrorTracesRequest) returns (.exa.api_server_pb.UploadErrorTracesResponse);
|
|
2312
|
+
rpc RecordOpportunities (.exa.api_server_pb.RecordOpportunitiesRequest) returns (.exa.api_server_pb.RecordOpportunitiesResponse);
|
|
2313
|
+
rpc RecordCodeTrackerUpdates (.exa.api_server_pb.RecordCodeTrackerUpdatesRequest) returns (.exa.api_server_pb.RecordCodeTrackerUpdatesResponse);
|
|
2314
|
+
rpc RecordCompletionExample (.exa.api_server_pb.RecordCompletionExampleRequest) returns (.exa.api_server_pb.RecordCompletionExampleResponse);
|
|
2315
|
+
rpc GetCompletionExamples (.exa.api_server_pb.GetCompletionExamplesRequest) returns (.exa.api_server_pb.GetCompletionExamplesResponse);
|
|
2316
|
+
rpc RecordCompletions (.exa.analytics_pb.RecordCompletionsRequest) returns (.exa.analytics_pb.RecordCompletionsResponse);
|
|
2317
|
+
rpc RecordAsyncTelemetry (.exa.api_server_pb.RecordAsyncTelemetryRequest) returns (.exa.api_server_pb.RecordAsyncTelemetryResponse);
|
|
2318
|
+
rpc RecordAutoCascadeTelemetry (.exa.api_server_pb.RecordAutoCascadeTelemetryRequest) returns (.exa.api_server_pb.RecordAutoCascadeTelemetryResponse);
|
|
2319
|
+
rpc RecordWindsurfReviewsTelemetry (.exa.api_server_pb.RecordWindsurfReviewsTelemetryRequest) returns (.exa.api_server_pb.RecordWindsurfReviewsTelemetryResponse);
|
|
2320
|
+
rpc RecordWindsurfReviewEvent (.exa.api_server_pb.RecordWindsurfReviewEventRequest) returns (.exa.api_server_pb.RecordWindsurfReviewEventResponse);
|
|
2321
|
+
rpc RecordChat (.exa.api_server_pb.RecordChatRequest) returns (.exa.api_server_pb.RecordChatResponse);
|
|
2322
|
+
rpc RecordChatFeedback (.exa.api_server_pb.RecordChatFeedbackRequest) returns (.exa.api_server_pb.RecordChatFeedbackResponse);
|
|
2323
|
+
rpc RecordChatPanelSession (.exa.api_server_pb.RecordChatPanelSessionRequest) returns (.exa.api_server_pb.RecordChatPanelSessionResponse);
|
|
2324
|
+
rpc RecordContextRefresh (.exa.api_server_pb.RecordContextRefreshRequest) returns (.exa.api_server_pb.RecordContextRefreshResponse);
|
|
2325
|
+
rpc RecordContextToPrompt (.exa.analytics_pb.RecordContextToPromptRequest) returns (.exa.analytics_pb.RecordContextToPromptResponse);
|
|
2326
|
+
rpc RecordEvent (.exa.api_server_pb.RecordEventRequest) returns (.exa.api_server_pb.RecordEventResponse);
|
|
2327
|
+
rpc RecordSearch (.exa.api_server_pb.RecordSearchRequest) returns (.exa.api_server_pb.RecordSearchResponse);
|
|
2328
|
+
rpc RecordSearchResults (.exa.api_server_pb.RecordSearchResultsRequest) returns (.exa.api_server_pb.RecordSearchResultsResponse);
|
|
2329
|
+
rpc RecordSearchDocOpen (.exa.api_server_pb.RecordSearchDocOpenRequest) returns (.exa.api_server_pb.RecordSearchDocOpenResponse);
|
|
2330
|
+
rpc RecordSearchResultsView (.exa.api_server_pb.RecordSearchResultsViewRequest) returns (.exa.api_server_pb.RecordSearchResultsViewResponse);
|
|
2331
|
+
rpc RecordDebounce (.exa.api_server_pb.RecordDebounceRequest) returns (.exa.api_server_pb.RecordDebounceResponse);
|
|
2332
|
+
rpc CaptureCode (.exa.api_server_pb.CaptureCodeRequest) returns (.exa.api_server_pb.CaptureCodeResponse);
|
|
2333
|
+
rpc CaptureFile (.exa.api_server_pb.CaptureFileRequest) returns (.exa.api_server_pb.CaptureFileResponse);
|
|
2334
|
+
rpc RecordPinnedContext (.exa.api_server_pb.RecordPinnedContextRequest) returns (.exa.api_server_pb.RecordPinnedContextResponse);
|
|
2335
|
+
rpc RecordCommandUsage (.exa.analytics_pb.RecordCommandUsageRequest) returns (.exa.analytics_pb.RecordCommandUsageResponse);
|
|
2336
|
+
rpc RecordChatModelNodeRun (.exa.api_server_pb.RecordChatModelNodeRunRequest) returns (.exa.api_server_pb.RecordChatModelNodeRunResponse);
|
|
2337
|
+
rpc RecordMQuery (.exa.api_server_pb.RecordMQueryRequest) returns (.exa.api_server_pb.RecordMQueryResponse);
|
|
2338
|
+
rpc RecordCortexStep (.exa.api_server_pb.RecordCortexStepRequest) returns (.exa.api_server_pb.RecordCortexStepResponse);
|
|
2339
|
+
rpc RecordCommitMessageGeneration (.exa.api_server_pb.RecordCommitMessageGenerationRequest) returns (.exa.api_server_pb.RecordCommitMessageGenerationResponse);
|
|
2340
|
+
rpc RecordCommitMessageSave (.exa.api_server_pb.RecordCommitMessageSaveRequest) returns (.exa.api_server_pb.RecordCommitMessageSaveResponse);
|
|
2341
|
+
rpc RecordGitTelemetry (.exa.api_server_pb.RecordGitTelemetryRequest) returns (.exa.api_server_pb.RecordGitTelemetryResponse);
|
|
2342
|
+
rpc RecordProfilingData (stream .exa.api_server_pb.RecordProfilingDataRequest) returns (.exa.api_server_pb.RecordProfilingDataResponse);
|
|
2343
|
+
rpc RecordReadUrlContent (.exa.api_server_pb.RecordReadUrlContentRequest) returns (.exa.api_server_pb.RecordReadUrlContentResponse);
|
|
2344
|
+
rpc RecordNewCortexPlan (.exa.api_server_pb.RecordNewCortexPlanRequest) returns (.exa.api_server_pb.RecordNewCortexPlanResponse);
|
|
2345
|
+
rpc RecordCortexCodingPlan (.exa.api_server_pb.RecordCortexCodingPlanRequest) returns (.exa.api_server_pb.RecordCortexCodingPlanResponse);
|
|
2346
|
+
rpc RecordCortexCodingStep (.exa.api_server_pb.RecordCortexCodingStepRequest) returns (.exa.api_server_pb.RecordCortexCodingStepResponse);
|
|
2347
|
+
rpc RecordCortexCodingStepFeedback (.exa.api_server_pb.RecordCortexCodingStepFeedbackRequest) returns (.exa.api_server_pb.RecordCortexCodingStepFeedbackResponse);
|
|
2348
|
+
rpc RecordCortexFeedback (.exa.api_server_pb.RecordCortexFeedbackRequest) returns (.exa.api_server_pb.RecordCortexFeedbackResponse);
|
|
2349
|
+
rpc RecordCortexError (.exa.api_server_pb.RecordCortexErrorRequest) returns (.exa.api_server_pb.RecordCortexErrorResponse);
|
|
2350
|
+
rpc RecordCortexTrajectory (.exa.analytics_pb.RecordCortexTrajectoryRequest) returns (.exa.analytics_pb.RecordCortexTrajectoryResponse);
|
|
2351
|
+
rpc RecordCortexTrajectoryStep (.exa.analytics_pb.RecordCortexTrajectoryStepRequest) returns (.exa.analytics_pb.RecordCortexTrajectoryStepResponse);
|
|
2352
|
+
rpc RecordCortexGeneratorMetadata (.exa.api_server_pb.RecordCortexGeneratorMetadataRequest) returns (.exa.api_server_pb.RecordCortexGeneratorMetadataResponse);
|
|
2353
|
+
rpc RecordCortexExecutionMetadata (.exa.api_server_pb.RecordCortexExecutionMetadataRequest) returns (.exa.api_server_pb.RecordCortexExecutionMetadataResponse);
|
|
2354
|
+
rpc RecordStateInitializationData (.exa.api_server_pb.RecordStateInitializationDataRequest) returns (.exa.api_server_pb.RecordStateInitializationDataResponse);
|
|
2355
|
+
rpc GetDefaultWorkflowTemplates (.exa.api_server_pb.GetDefaultWorkflowTemplatesRequest) returns (.exa.api_server_pb.GetDefaultWorkflowTemplatesResponse);
|
|
2356
|
+
rpc RecordArenaModeTrajectoryDetails (.exa.analytics_pb.RecordArenaModeTrajectoryDetailsRequest) returns (.exa.analytics_pb.RecordArenaModeTrajectoryDetailsResponse);
|
|
2357
|
+
rpc BatchRecordPrompts (.exa.analytics_pb.BatchRecordPromptsRequest) returns (.exa.analytics_pb.BatchRecordPromptsResponse);
|
|
2358
|
+
rpc BatchRecordCompletions (.exa.analytics_pb.BatchRecordCompletionsRequest) returns (.exa.analytics_pb.BatchRecordCompletionsResponse);
|
|
2359
|
+
rpc BatchRecordUserLastUpdateTimes (.exa.api_server_pb.BatchRecordUserLastUpdateTimesRequest) returns (.exa.api_server_pb.BatchRecordUserLastUpdateTimesResponse);
|
|
2360
|
+
rpc BatchRecordChatRequestRecords (.exa.api_server_pb.BatchRecordChatRequestRecordsRequest) returns (.exa.api_server_pb.BatchRecordChatRequestRecordsResponse);
|
|
2361
|
+
rpc BatchRecordRawCompletions (.exa.analytics_pb.BatchRecordRawCompletionsRequest) returns (.exa.analytics_pb.BatchRecordRawCompletionsResponse);
|
|
2362
|
+
rpc RegisterExternalUser (.exa.api_server_pb.RegisterExternalUserRequest) returns (.exa.api_server_pb.RegisterExternalUserResponse);
|
|
2363
|
+
rpc DeleteExternalUser (.exa.api_server_pb.DeleteExternalUserRequest) returns (.exa.api_server_pb.DeleteExternalUserResponse);
|
|
2364
|
+
rpc Ping (.exa.api_server_pb.PingRequest) returns (.exa.api_server_pb.PingResponse);
|
|
2365
|
+
rpc JoinWaitlist (.exa.api_server_pb.JoinWaitlistRequest) returns (.exa.api_server_pb.JoinWaitlistResponse);
|
|
2366
|
+
rpc GetExtensionStats (.exa.api_server_pb.GetExtensionStatsRequest) returns (.exa.api_server_pb.GetExtensionStatsResponse);
|
|
2367
|
+
rpc SubscribeToBlog (.exa.api_server_pb.SubscribeToBlogRequest) returns (.exa.api_server_pb.SubscribeToBlogResponse);
|
|
2368
|
+
rpc UnsubscribeFromEmails (.exa.api_server_pb.UnsubscribeFromEmailsRequest) returns (.exa.api_server_pb.UnsubscribeFromEmailsResponse);
|
|
2369
|
+
rpc SendReferralEmail (.exa.api_server_pb.SendReferralEmailRequest) returns (.exa.api_server_pb.SendReferralEmailResponse);
|
|
2370
|
+
rpc AccountOwnershipNotificationVerification (.exa.api_server_pb.AccountOwnershipNotificationVerificationRequest) returns (.exa.api_server_pb.AccountOwnershipNotificationVerificationResponse);
|
|
2371
|
+
rpc AccountOwnershipNotificationDismiss (.exa.api_server_pb.AccountOwnershipNotificationDismissRequest) returns (.exa.api_server_pb.AccountOwnershipNotificationDismissResponse);
|
|
2372
|
+
rpc EnrollCyberVerification (.exa.api_server_pb.EnrollCyberVerificationRequest) returns (.exa.api_server_pb.EnrollCyberVerificationResponse);
|
|
2373
|
+
rpc GetCyberVerificationEnrollmentUrl (.exa.api_server_pb.GetCyberVerificationEnrollmentUrlRequest) returns (.exa.api_server_pb.GetCyberVerificationEnrollmentUrlResponse);
|
|
2374
|
+
rpc UpdateAnthropicCyberVerificationEnabled (.exa.api_server_pb.UpdateAnthropicCyberVerificationEnabledRequest) returns (.exa.api_server_pb.UpdateAnthropicCyberVerificationEnabledResponse);
|
|
2375
|
+
rpc GetDecagonAuthToken (.exa.api_server_pb.GetDecagonAuthTokenRequest) returns (.exa.api_server_pb.GetDecagonAuthTokenResponse);
|
|
2376
|
+
rpc RunCodeAlignment (.exa.api_server_pb.RunCodeAlignmentRequest) returns (.exa.api_server_pb.RunCodeAlignmentResponse);
|
|
2377
|
+
rpc GenerateSyntheticRule (.exa.api_server_pb.GenerateSyntheticRuleRequest) returns (.exa.api_server_pb.GenerateSyntheticRuleResponse);
|
|
2378
|
+
rpc GetUserAllowlist (.exa.api_server_pb.GetUserAllowlistRequest) returns (.exa.api_server_pb.GetUserAllowlistResponse);
|
|
2379
|
+
rpc InsertAllowlist (.exa.api_server_pb.InsertAllowlistRequest) returns (.exa.api_server_pb.InsertAllowlistResponse);
|
|
2380
|
+
rpc DeleteAllowlist (.exa.api_server_pb.DeleteAllowlistRequest) returns (.exa.api_server_pb.DeleteAllowlistResponse);
|
|
2381
|
+
rpc GetAllowlist (.exa.api_server_pb.GetAllowlistRequest) returns (.exa.api_server_pb.GetAllowlistResponse);
|
|
2382
|
+
rpc RegisterHybridDeployment (.exa.api_server_pb.RegisterHybridDeploymentRequest) returns (.exa.api_server_pb.RegisterHybridDeploymentResponse);
|
|
2383
|
+
rpc CreateHybridDeploymentInternal (.exa.api_server_pb.CreateHybridDeploymentInternalRequest) returns (.exa.api_server_pb.CreateHybridDeploymentInternalResponse);
|
|
2384
|
+
rpc RemoveHybridDeploymentInternal (.exa.api_server_pb.RemoveHybridDeploymentInternalRequest) returns (.exa.api_server_pb.RemoveHybridDeploymentInternalResponse);
|
|
2385
|
+
rpc GetHybridDeploymentsInternal (.exa.api_server_pb.GetHybridDeploymentsInternalRequest) returns (.exa.api_server_pb.GetHybridDeploymentsInternalResponse);
|
|
2386
|
+
rpc CheckHybridDeploymentStatus (.exa.api_server_pb.CheckHybridDeploymentStatusRequest) returns (.exa.api_server_pb.CheckHybridDeploymentStatusResponse);
|
|
2387
|
+
rpc LogCompletionsHybrid (.exa.api_server_pb.LogCompletionsHybridRequest) returns (.exa.api_server_pb.LogCompletionsHybridResponse);
|
|
2388
|
+
rpc LogFeedbackHybrid (.exa.api_server_pb.LogFeedbackHybridRequest) returns (.exa.api_server_pb.LogFeedbackHybridResponse);
|
|
2389
|
+
rpc LogChatHybrid (.exa.api_server_pb.LogChatHybridRequest) returns (.exa.api_server_pb.LogChatHybridResponse);
|
|
2390
|
+
rpc LogCascadeSessionHybrid (.exa.api_server_pb.LogCascadeSessionHybridRequest) returns (.exa.api_server_pb.LogCascadeSessionHybridResponse);
|
|
2391
|
+
rpc LogCascadePromptHybrid (.exa.api_server_pb.LogCascadePromptHybridRequest) returns (.exa.api_server_pb.LogCascadePromptHybridResponse);
|
|
2392
|
+
rpc GetStatus (.exa.api_server_pb.GetStatusRequest) returns (.exa.api_server_pb.GetStatusResponse);
|
|
2393
|
+
rpc GetConfig (.exa.api_server_pb.GetConfigRequest) returns (.exa.api_server_pb.GetConfigResponse);
|
|
2394
|
+
rpc GetCascadeModelConfigs (.exa.api_server_pb.GetCascadeModelConfigsRequest) returns (.exa.api_server_pb.GetCascadeModelConfigsResponse);
|
|
2395
|
+
rpc GetCascadeModelConfigsForSite (.exa.api_server_pb.GetCascadeModelConfigsForSiteRequest) returns (.exa.api_server_pb.GetCascadeModelConfigsForSiteResponse);
|
|
2396
|
+
rpc GetCommandModelConfigs (.exa.api_server_pb.GetCommandModelConfigsRequest) returns (.exa.api_server_pb.GetCommandModelConfigsResponse);
|
|
2397
|
+
rpc GetCommandModelConfigsForSite (.exa.api_server_pb.GetCommandModelConfigsForSiteRequest) returns (.exa.api_server_pb.GetCommandModelConfigsForSiteResponse);
|
|
2398
|
+
rpc GetCliModelConfigs (.exa.api_server_pb.GetCliModelConfigsRequest) returns (.exa.api_server_pb.GetCliModelConfigsResponse);
|
|
2399
|
+
rpc GetCliModelConfigsForSite (.exa.api_server_pb.GetCliModelConfigsForSiteRequest) returns (.exa.api_server_pb.GetCliModelConfigsForSiteResponse);
|
|
2400
|
+
rpc RecordTrajectorySegmentAnalytics (.exa.api_server_pb.RecordTrajectorySegmentAnalyticsRequest) returns (.exa.api_server_pb.RecordTrajectorySegmentAnalyticsResponse);
|
|
2401
|
+
rpc RecordTrajectorySegmentEvents (.exa.api_server_pb.RecordTrajectorySegmentEventsRequest) returns (.exa.api_server_pb.RecordTrajectorySegmentEventsResponse);
|
|
2402
|
+
rpc SupportsRemoteIndexing (.exa.api_server_pb.SupportsRemoteIndexingRequest) returns (.exa.api_server_pb.SupportsRemoteIndexingResponse);
|
|
2403
|
+
rpc GetModelStatuses (.exa.api_server_pb.GetModelStatusesRequest) returns (.exa.api_server_pb.GetModelStatusesResponse);
|
|
2404
|
+
rpc GetModelProviders (.exa.api_server_pb.GetModelProvidersRequest) returns (.exa.api_server_pb.GetModelProvidersResponse);
|
|
2405
|
+
rpc GetDeploymentConfig (.exa.api_server_pb.GetDeploymentConfigRequest) returns (.exa.api_server_pb.GetDeploymentConfigResponse);
|
|
2406
|
+
rpc UpsertDeploymentConfig (.exa.api_server_pb.UpsertDeploymentConfigRequest) returns (.exa.api_server_pb.UpsertDeploymentConfigResponse);
|
|
2407
|
+
rpc RecordCascadeUsage (.exa.api_server_pb.RecordCascadeUsageRequest) returns (.exa.api_server_pb.RecordCascadeUsageResponse);
|
|
2408
|
+
rpc ApplyTrajectoryHeuristics (.exa.api_server_pb.ApplyTrajectoryHeuristicsRequest) returns (.exa.api_server_pb.ApplyTrajectoryHeuristicsResponse);
|
|
2409
|
+
rpc GetWebSearchResults (.exa.api_server_pb.GetWebSearchResultsRequest) returns (.exa.api_server_pb.GetWebSearchResultsResponse);
|
|
2410
|
+
rpc GetWebDocsOptions (.exa.api_server_pb.GetWebDocsOptionsRequest) returns (.exa.api_server_pb.GetWebDocsOptionsResponse);
|
|
2411
|
+
rpc GetWebSearchRedirect (.exa.api_server_pb.GetWebSearchRedirectRequest) returns (.exa.api_server_pb.GetWebSearchRedirectResponse);
|
|
2412
|
+
rpc ShareCodeMap (.exa.api_server_pb.ShareCodeMapRequest) returns (.exa.api_server_pb.ShareCodeMapResponse);
|
|
2413
|
+
rpc GetCodeMap (.exa.api_server_pb.GetCodeMapRequest) returns (.exa.api_server_pb.GetCodeMapResponse);
|
|
2414
|
+
rpc GetCodeMapMetadata (.exa.api_server_pb.GetCodeMapMetadataRequest) returns (.exa.api_server_pb.GetCodeMapMetadataResponse);
|
|
2415
|
+
rpc GetSharedCodeMap (.exa.api_server_pb.GetSharedCodeMapRequest) returns (.exa.api_server_pb.GetSharedCodeMapResponse);
|
|
2416
|
+
rpc UpdateCodeMapSharingMode (.exa.api_server_pb.UpdateCodeMapSharingModeRequest) returns (.exa.api_server_pb.UpdateCodeMapSharingModeResponse);
|
|
2417
|
+
rpc ListUserSharedCodeMaps (.exa.api_server_pb.ListUserSharedCodeMapsRequest) returns (.exa.api_server_pb.ListUserSharedCodeMapsResponse);
|
|
2418
|
+
rpc DeleteSharedCodeMap (.exa.api_server_pb.DeleteSharedCodeMapRequest) returns (.exa.api_server_pb.DeleteSharedCodeMapResponse);
|
|
2419
|
+
rpc QueryImageForPixel (.exa.api_server_pb.QueryImageForPixelRequest) returns (.exa.api_server_pb.QueryImageForPixelResponse);
|
|
2420
|
+
rpc GetWindsurfJSAvailableDeployTargets (.exa.api_server_pb.GetWindsurfJSAvailableDeployTargetsRequest) returns (.exa.api_server_pb.GetWindsurfJSAvailableDeployTargetsResponse);
|
|
2421
|
+
rpc ValidateWindsurfJSAppProjectName (.exa.api_server_pb.ValidateWindsurfJSAppProjectNameRequest) returns (.exa.api_server_pb.ValidateWindsurfJSAppProjectNameResponse);
|
|
2422
|
+
rpc CreateWindsurfJSApp (.exa.api_server_pb.CreateWindsurfJSAppRequest) returns (.exa.api_server_pb.CreateWindsurfJSAppResponse);
|
|
2423
|
+
rpc DeployWindsurfJSApp (stream .exa.api_server_pb.DeployWindsurfJSAppRequest) returns (.exa.api_server_pb.DeployWindsurfJSAppResponse);
|
|
2424
|
+
rpc DeleteWindsurfJSApp (.exa.api_server_pb.DeleteWindsurfJSAppRequest) returns (.exa.api_server_pb.DeleteWindsurfJSAppResponse);
|
|
2425
|
+
rpc GetWindsurfJSAppDeploymentClaimStatus (.exa.api_server_pb.GetWindsurfJSAppDeploymentClaimStatusRequest) returns (.exa.api_server_pb.GetWindsurfJSAppDeploymentClaimStatusResponse);
|
|
2426
|
+
rpc GetWindsurfJSAppDeploymentsByProjectId (.exa.api_server_pb.GetWindsurfJSAppDeploymentsByProjectIdRequest) returns (.exa.api_server_pb.GetWindsurfJSAppDeploymentsByProjectIdResponse);
|
|
2427
|
+
rpc GetWindsurfJSApps (.exa.api_server_pb.GetWindsurfJSAppsRequest) returns (.exa.api_server_pb.GetWindsurfJSAppsResponse);
|
|
2428
|
+
rpc GetWindsurfJSAppDeploymentStatusesByProjectId (.exa.api_server_pb.GetWindsurfJSAppDeploymentStatusesByProjectIdRequest) returns (.exa.api_server_pb.GetWindsurfJSAppDeploymentStatusesByProjectIdResponse);
|
|
2429
|
+
rpc GetWindsurfJSAppDeployment (.exa.api_server_pb.GetWindsurfJSAppDeploymentRequest) returns (.exa.api_server_pb.GetWindsurfJSAppDeploymentResponse);
|
|
2430
|
+
rpc GetDeploymentProviderProjectNameByProjectId (.exa.api_server_pb.GetDeploymentProviderProjectNameByProjectIdRequest) returns (.exa.api_server_pb.GetDeploymentProviderProjectNameByProjectIdResponse);
|
|
2431
|
+
rpc GetWindsurfJSDeployTargetByProjectId (.exa.api_server_pb.GetWindsurfJSDeployTargetByProjectIdRequest) returns (.exa.api_server_pb.GetWindsurfJSDeployTargetByProjectIdResponse);
|
|
2432
|
+
rpc GetTranscription (.exa.api_server_pb.GetTranscriptionRequest) returns (.exa.api_server_pb.GetTranscriptionResponse);
|
|
2433
|
+
rpc RegisterOidcProvider (.exa.api_server_pb.RegisterOidcProviderRequest) returns (.exa.api_server_pb.RegisterOidcProviderResponse);
|
|
2434
|
+
rpc UpdateOidcProvider (.exa.api_server_pb.UpdateOidcProviderRequest) returns (.exa.api_server_pb.UpdateOidcProviderResponse);
|
|
2435
|
+
rpc GetTeamOidcProviders (.exa.api_server_pb.GetTeamOidcProvidersRequest) returns (.exa.api_server_pb.GetTeamOidcProvidersResponse);
|
|
2436
|
+
rpc GetAllOidcProviders (.exa.api_server_pb.GetAllOidcProvidersRequest) returns (.exa.api_server_pb.GetAllOidcProvidersResponse);
|
|
2437
|
+
rpc FindTeamByEmail (.exa.api_server_pb.FindTeamByEmailRequest) returns (.exa.api_server_pb.FindTeamByEmailResponse);
|
|
2438
|
+
rpc DeleteOidcProvider (.exa.api_server_pb.DeleteOidcProviderRequest) returns (.exa.api_server_pb.DeleteOidcProviderResponse);
|
|
2439
|
+
rpc GetOidcAuthorizationUrl (.exa.api_server_pb.GetOidcAuthorizationUrlRequest) returns (.exa.api_server_pb.GetOidcAuthorizationUrlResponse);
|
|
2440
|
+
rpc ExchangeOidcCode (.exa.api_server_pb.ExchangeOidcCodeRequest) returns (.exa.api_server_pb.ExchangeOidcCodeResponse);
|
|
2441
|
+
rpc RefreshOidcToken (.exa.api_server_pb.RefreshOidcTokenRequest) returns (.exa.api_server_pb.RefreshOidcTokenResponse);
|
|
2442
|
+
rpc GetSupabaseSecret (.exa.api_server_pb.GetSupabaseSecretRequest) returns (.exa.api_server_pb.GetSupabaseSecretResponse);
|
|
2443
|
+
rpc GetSSOProviders (.exa.api_server_pb.GetSSOProvidersRequest) returns (.exa.api_server_pb.GetSSOProvidersResponse);
|
|
2444
|
+
rpc CreateTrajectoryShareStream (stream .exa.api_server_pb.CreateTrajectoryShareStreamRequest) returns (.exa.api_server_pb.CreateTrajectoryShareStreamResponse);
|
|
2445
|
+
rpc FetchTrajectoryShare (.exa.api_server_pb.FetchTrajectoryShareRequest) returns (.exa.api_server_pb.FetchTrajectoryShareResponse);
|
|
2446
|
+
rpc DeleteTrajectoryShare (.exa.api_server_pb.DeleteTrajectoryShareRequest) returns (.exa.api_server_pb.DeleteTrajectoryShareResponse);
|
|
2447
|
+
rpc FetchTrajectoryShareByUser (.exa.api_server_pb.FetchTrajectoryShareByUserRequest) returns (.exa.api_server_pb.FetchTrajectoryShareByUserResponse);
|
|
2448
|
+
rpc IsConversationSharingBlocked (.exa.api_server_pb.IsConversationSharingBlockedRequest) returns (.exa.api_server_pb.IsConversationSharingBlockedResponse);
|
|
2449
|
+
rpc GetExternalModel (.exa.api_server_pb.GetExternalModelRequest) returns (.exa.api_server_pb.GetExternalModelResponse);
|
|
2450
|
+
rpc GetExternalModelsGroup (.exa.api_server_pb.GetExternalModelsGroupRequest) returns (.exa.api_server_pb.GetExternalModelsGroupResponse);
|
|
2451
|
+
rpc CreateExternalModels (.exa.api_server_pb.CreateExternalModelsRequest) returns (.exa.api_server_pb.CreateExternalModelsResponse);
|
|
2452
|
+
rpc DeleteExternalModels (.exa.api_server_pb.DeleteExternalModelsRequest) returns (.exa.api_server_pb.DeleteExternalModelsResponse);
|
|
2453
|
+
rpc UpdateExternalModels (.exa.api_server_pb.UpdateExternalModelsRequest) returns (.exa.api_server_pb.UpdateExternalModelsResponse);
|
|
2454
|
+
rpc UpdateExternalModelsGroup (.exa.api_server_pb.UpdateExternalModelsGroupRequest) returns (.exa.api_server_pb.UpdateExternalModelsGroupResponse);
|
|
2455
|
+
rpc CheckBugs (.exa.api_server_pb.CheckBugsRequest) returns (.exa.api_server_pb.CheckBugsResponse);
|
|
2456
|
+
rpc GetLifeguardConfig (.exa.api_server_pb.GetLifeguardConfigRequest) returns (.exa.api_server_pb.GetLifeguardConfigResponse);
|
|
2457
|
+
rpc SubmitBugReport (.exa.api_server_pb.SubmitBugReportRequest) returns (.exa.api_server_pb.SubmitBugReportResponse);
|
|
2458
|
+
rpc AcceptBug (.exa.api_server_pb.AcceptBugRequest) returns (.exa.api_server_pb.AcceptBugResponse);
|
|
2459
|
+
rpc RejectBug (.exa.api_server_pb.RejectBugRequest) returns (.exa.api_server_pb.RejectBugResponse);
|
|
2460
|
+
rpc RecordTrustEvents (.exa.trust_pb.RecordTrustEventsRequest) returns (.exa.trust_pb.RecordTrustEventsResponse);
|
|
2461
|
+
}
|