@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.
Files changed (73) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/types/providers/devin.d.ts +12 -0
  3. package/dist/types/providers/register-builtins.d.ts +1 -0
  4. package/dist/types/registry/devin.d.ts +8 -0
  5. package/dist/types/registry/oauth/devin.d.ts +5 -0
  6. package/dist/types/registry/registry.d.ts +6 -0
  7. package/dist/types/types.d.ts +4 -2
  8. package/package.json +5 -4
  9. package/src/api-registry.ts +12 -2
  10. package/src/providers/anthropic-messages-server.ts +4 -1
  11. package/src/providers/devin/proto/buf/validate/validate.proto +468 -0
  12. package/src/providers/devin/proto/buf.gen.yaml +33 -0
  13. package/src/providers/devin/proto/buf.yaml +17 -0
  14. package/src/providers/devin/proto/cel/expr/checked.proto +103 -0
  15. package/src/providers/devin/proto/cel/expr/eval.proto +38 -0
  16. package/src/providers/devin/proto/cel/expr/explain.proto +15 -0
  17. package/src/providers/devin/proto/cel/expr/syntax.proto +113 -0
  18. package/src/providers/devin/proto/cel/expr/value.proto +41 -0
  19. package/src/providers/devin/proto/connectext/grpc/status/v1/status.proto +11 -0
  20. package/src/providers/devin/proto/errorspb/errors.proto +56 -0
  21. package/src/providers/devin/proto/errorspb/hintdetail.proto +7 -0
  22. package/src/providers/devin/proto/errorspb/markers.proto +10 -0
  23. package/src/providers/devin/proto/errorspb/tags.proto +12 -0
  24. package/src/providers/devin/proto/errorspb/testing.proto +6 -0
  25. package/src/providers/devin/proto/exa/analytics_pb/analytics.proto +188 -0
  26. package/src/providers/devin/proto/exa/api_server_pb/api_server.proto +2461 -0
  27. package/src/providers/devin/proto/exa/auth_pb/auth.proto +19 -0
  28. package/src/providers/devin/proto/exa/auto_cascade_common_pb/auto_cascade_common.proto +79 -0
  29. package/src/providers/devin/proto/exa/browser_preview_pb/browser_preview.proto +32 -0
  30. package/src/providers/devin/proto/exa/bug_checker_pb/bug_checker.proto +22 -0
  31. package/src/providers/devin/proto/exa/cascade_plugins_pb/cascade_plugins.proto +262 -0
  32. package/src/providers/devin/proto/exa/chat_client_server_pb/chat_client_server.proto +57 -0
  33. package/src/providers/devin/proto/exa/chat_pb/chat.proto +449 -0
  34. package/src/providers/devin/proto/exa/code_edit/code_edit_pb/code_edit.proto +186 -0
  35. package/src/providers/devin/proto/exa/codeium_common_pb/codeium_common.proto +4157 -0
  36. package/src/providers/devin/proto/exa/context_module_pb/context_module.proto +175 -0
  37. package/src/providers/devin/proto/exa/cortex_pb/cortex.proto +3268 -0
  38. package/src/providers/devin/proto/exa/dev_pb/dev.proto +26 -0
  39. package/src/providers/devin/proto/exa/diff_action_pb/diff_action.proto +75 -0
  40. package/src/providers/devin/proto/exa/eval/pr_eval/datasets_pb/datasets.proto +103 -0
  41. package/src/providers/devin/proto/exa/eval_pb/eval.proto +1315 -0
  42. package/src/providers/devin/proto/exa/extension_server_pb/extension_server.proto +556 -0
  43. package/src/providers/devin/proto/exa/file_system_provider_pb/file_system_provider.proto +75 -0
  44. package/src/providers/devin/proto/exa/index_pb/index.proto +461 -0
  45. package/src/providers/devin/proto/exa/knowledge_base_pb/knowledge_base.proto +144 -0
  46. package/src/providers/devin/proto/exa/language_server_pb/language_server.proto +2385 -0
  47. package/src/providers/devin/proto/exa/model_management_pb/model_management.proto +186 -0
  48. package/src/providers/devin/proto/exa/opensearch_clients_pb/opensearch_clients.proto +503 -0
  49. package/src/providers/devin/proto/exa/product_analytics_pb/product_analytics.proto +37 -0
  50. package/src/providers/devin/proto/exa/prompt_pb/prompt.proto +92 -0
  51. package/src/providers/devin/proto/exa/reactive_component_pb/reactive_component.proto +96 -0
  52. package/src/providers/devin/proto/exa/seat_management_pb/seat_management.proto +2680 -0
  53. package/src/providers/devin/proto/exa/tokenizer_pb/tokenizer.proto +37 -0
  54. package/src/providers/devin/proto/exa/trainer_pb/config.proto +647 -0
  55. package/src/providers/devin/proto/exa/tree_sitter/language_data_pb/language_data.proto +14 -0
  56. package/src/providers/devin/proto/exa/trust_pb/trust.proto +157 -0
  57. package/src/providers/devin/proto/exa/user_analytics_pb/user_analytics.proto +519 -0
  58. package/src/providers/devin/proto/google.golang.org/appengine/internal/base/api_base.proto +28 -0
  59. package/src/providers/devin/proto/google.golang.org/appengine/internal/datastore/datastore_v3.proto +484 -0
  60. package/src/providers/devin/proto/google.golang.org/appengine/internal/log/log_service.proto +136 -0
  61. package/src/providers/devin/proto/google.golang.org/appengine/internal/remote_api/remote_api.proto +42 -0
  62. package/src/providers/devin/proto/google.golang.org/appengine/internal/urlfetch/urlfetch_service.proto +61 -0
  63. package/src/providers/devin/proto/grpc/binlog/v1/binarylog.proto +84 -0
  64. package/src/providers/devin/proto/io/prometheus/client/metrics.proto +98 -0
  65. package/src/providers/devin.ts +568 -0
  66. package/src/providers/register-builtins.ts +15 -0
  67. package/src/registry/devin.ts +15 -0
  68. package/src/registry/fireworks.ts +7 -1
  69. package/src/registry/oauth/devin.ts +113 -0
  70. package/src/registry/registry.ts +2 -0
  71. package/src/stream.ts +47 -6
  72. package/src/types.ts +4 -2
  73. package/src/utils.ts +5 -8
@@ -0,0 +1,19 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.auth_pb;
4
+
5
+ import "buf/validate/validate.proto";
6
+ import "exa/codeium_common_pb/codeium_common.proto";
7
+
8
+ message GetUserJwtRequest {
9
+ .exa.codeium_common_pb.Metadata metadata = 1;
10
+ }
11
+
12
+ message GetUserJwtResponse {
13
+ string user_jwt = 1;
14
+ string custom_api_server_url = 2;
15
+ }
16
+
17
+ service AuthService {
18
+ rpc GetUserJwt (.exa.auth_pb.GetUserJwtRequest) returns (.exa.auth_pb.GetUserJwtResponse);
19
+ }
@@ -0,0 +1,79 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.auto_cascade_common_pb;
4
+
5
+ import "buf/validate/validate.proto";
6
+ import "exa/cortex_pb/cortex.proto";
7
+ import "google/protobuf/timestamp.proto";
8
+
9
+ enum BranchStatus {
10
+ BRANCH_STATUS_UNSPECIFIED = 0;
11
+ BRANCH_STATUS_NO_PR = 1;
12
+ BRANCH_STATUS_PR_OPEN = 2;
13
+ BRANCH_STATUS_PR_CLOSED = 3;
14
+ BRANCH_STATUS_PR_MERGED = 4;
15
+ BRANCH_STATUS_HAS_SUGGESTION = 5;
16
+ }
17
+
18
+ enum CommentType {
19
+ COMMENT_TYPE_UNSPECIFIED = 0;
20
+ COMMENT_TYPE_MANUAL_REVIEW_TRIGGER = 1;
21
+ COMMENT_TYPE_LGTM = 2;
22
+ COMMENT_TYPE_REVIEW_BODY = 3;
23
+ COMMENT_TYPE_REVIEW_COMMENT = 4;
24
+ }
25
+
26
+ enum GithubCICheckStatus {
27
+ GITHUB_CI_CHECK_STATUS_UNSPECIFIED = 0;
28
+ GITHUB_CI_CHECK_STATUS_SUCCESS = 1;
29
+ GITHUB_CI_CHECK_STATUS_FAILED = 2;
30
+ GITHUB_CI_CHECK_STATUS_PENDING = 3;
31
+ }
32
+
33
+ enum GithubPullRequestBranchStatus {
34
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_UNSPECIFIED = 0;
35
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_OPEN = 1;
36
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_CLOSED = 2;
37
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_DRAFT = 3;
38
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_MERGED = 4;
39
+ }
40
+
41
+ message GitRepoInfo {
42
+ string repo_name = 1;
43
+ string branch = 2;
44
+ string commit = 3;
45
+ string pr_url = 4;
46
+ }
47
+
48
+ message SessionInfo {
49
+ string session_id = 1;
50
+ string explanation = 2;
51
+ string ssh_url = 3;
52
+ .exa.cortex_pb.CascadeRunStatus status = 4;
53
+ string summary = 5;
54
+ .exa.cortex_pb.CortexTrajectory trajectory = 6;
55
+ string session_key = 7;
56
+ .google.protobuf.Timestamp created_at = 8;
57
+ repeated .exa.auto_cascade_common_pb.GitRepoInfo git_repos = 9;
58
+ .google.protobuf.Timestamp updated_at = 10;
59
+ }
60
+
61
+ message SessionInfos {
62
+ map<string, .exa.auto_cascade_common_pb.SessionInfo> sessions = 1;
63
+ }
64
+
65
+ message GithubPullRequestInfo {
66
+ string url = 1;
67
+ string owner = 2;
68
+ string repo = 3;
69
+ string title = 4;
70
+ string number = 5;
71
+ .exa.auto_cascade_common_pb.GithubCICheckStatus ci_status = 6;
72
+ .exa.auto_cascade_common_pb.GithubPullRequestBranchStatus branch_status = 7;
73
+ .google.protobuf.Timestamp updated_at = 8;
74
+ }
75
+
76
+ message GithubInstallationInfo {
77
+ string installation_id = 1;
78
+ string organization_name = 2;
79
+ }
@@ -0,0 +1,32 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.browser_preview_pb;
4
+
5
+ import "exa/codeium_common_pb/codeium_common.proto";
6
+
7
+ message SendDOMElementRequest {
8
+ .exa.codeium_common_pb.DOMElementScopeItem dom_element = 1;
9
+ }
10
+
11
+ message SendDOMElementResponse {
12
+ }
13
+
14
+ message SendScreenshotRequest {
15
+ .exa.codeium_common_pb.ImageData image = 1;
16
+ }
17
+
18
+ message SendScreenshotResponse {
19
+ }
20
+
21
+ message SendConsoleOutputRequest {
22
+ .exa.codeium_common_pb.ConsoleLogScopeItem console_log = 1;
23
+ }
24
+
25
+ message SendConsoleOutputResponse {
26
+ }
27
+
28
+ service BrowserPreviewService {
29
+ rpc SendDOMElement (.exa.browser_preview_pb.SendDOMElementRequest) returns (.exa.browser_preview_pb.SendDOMElementResponse);
30
+ rpc SendScreenshot (.exa.browser_preview_pb.SendScreenshotRequest) returns (.exa.browser_preview_pb.SendScreenshotResponse);
31
+ rpc SendConsoleOutput (.exa.browser_preview_pb.SendConsoleOutputRequest) returns (.exa.browser_preview_pb.SendConsoleOutputResponse);
32
+ }
@@ -0,0 +1,22 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.bug_checker_pb;
4
+
5
+ message Fix {
6
+ string old_str = 1;
7
+ string new_str = 2;
8
+ }
9
+
10
+ message Bug {
11
+ string id = 1;
12
+ string file = 2;
13
+ int32 start = 3;
14
+ int32 end = 4;
15
+ string title = 5;
16
+ string description = 6;
17
+ string severity = 7;
18
+ string resolution = 8;
19
+ double confidence = 9;
20
+ repeated string categories = 10;
21
+ .exa.bug_checker_pb.Fix fix = 11;
22
+ }
@@ -0,0 +1,262 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.cascade_plugins_pb;
4
+
5
+ import "buf/validate/validate.proto";
6
+ import "exa/codeium_common_pb/codeium_common.proto";
7
+
8
+ message CascadePluginTemplate {
9
+ string title = 1;
10
+ string id = 2;
11
+ string link = 3;
12
+ string description = 4;
13
+ map<string, .exa.cascade_plugins_pb.CascadePluginCommand> commands = 5 [deprecated = true];
14
+ oneof configuration {
15
+ .exa.cascade_plugins_pb.CascadePluginLocalConfig local = 9;
16
+ .exa.cascade_plugins_pb.CascadePluginRemoteConfig remote = 10;
17
+ }
18
+ int64 installation_count = 6;
19
+ string trust_level = 7;
20
+ string readme = 8;
21
+ }
22
+
23
+ message CascadePluginLocalConfig {
24
+ map<string, .exa.cascade_plugins_pb.CascadePluginCommand> commands = 5;
25
+ }
26
+
27
+ message CascadePluginCommand {
28
+ .exa.cascade_plugins_pb.CascadePluginCommandTemplate template = 1;
29
+ repeated .exa.cascade_plugins_pb.CascadePluginCommandVariable variables = 2;
30
+ }
31
+
32
+ message CascadePluginCommandTemplate {
33
+ string command = 1;
34
+ repeated string args = 2;
35
+ map<string, string> env = 3;
36
+ }
37
+
38
+ message CascadePluginCommandVariable {
39
+ string name = 1;
40
+ string title = 2;
41
+ string description = 3;
42
+ string link = 4;
43
+ string type = 5;
44
+ }
45
+
46
+ message CascadePluginRemoteConfig {
47
+ .exa.cascade_plugins_pb.CascadePluginRemoteConfigTemplate template = 1;
48
+ }
49
+
50
+ message CascadePluginRemoteConfigTemplate {
51
+ string server_url = 1;
52
+ map<string, string> headers = 2;
53
+ }
54
+
55
+ message GetAvailableCascadePluginsRequest {
56
+ .exa.codeium_common_pb.Metadata metadata = 1;
57
+ string os = 2;
58
+ optional string search_query = 3 [deprecated = true];
59
+ }
60
+
61
+ message GetAvailableCascadePluginsResponse {
62
+ repeated .exa.cascade_plugins_pb.CascadePluginTemplate plugins = 1;
63
+ }
64
+
65
+ message InstallCascadePluginRequest {
66
+ .exa.codeium_common_pb.Metadata metadata = 1;
67
+ string plugin_id = 2;
68
+ }
69
+
70
+ message InstallCascadePluginResponse {
71
+ int64 installation_count = 1;
72
+ }
73
+
74
+ message GetCascadePluginByIdRequest {
75
+ .exa.codeium_common_pb.Metadata metadata = 1;
76
+ string os = 2;
77
+ string plugin_id = 3;
78
+ }
79
+
80
+ message GetCascadePluginByIdResponse {
81
+ .exa.cascade_plugins_pb.CascadePluginTemplate plugin = 1;
82
+ }
83
+
84
+ message McpClientInfo {
85
+ string client_id = 1;
86
+ string client_secret = 2;
87
+ }
88
+
89
+ message GetMcpClientInfosRequest {
90
+ .exa.codeium_common_pb.Metadata metadata = 1;
91
+ }
92
+
93
+ message GetMcpClientInfosResponse {
94
+ map<string, .exa.cascade_plugins_pb.McpClientInfo> client_infos = 1;
95
+ }
96
+
97
+ message GetMcpRegistryServersRequest {
98
+ .exa.codeium_common_pb.Metadata metadata = 1;
99
+ string search_query = 2;
100
+ int32 limit = 3;
101
+ string cursor = 4;
102
+ string registry_url = 5;
103
+ }
104
+
105
+ message GetMcpRegistryServersResponse {
106
+ repeated .exa.cascade_plugins_pb.McpRegistryServer servers = 1;
107
+ int32 count = 2;
108
+ string next_cursor = 3;
109
+ }
110
+
111
+ message McpRegistryApiResponse {
112
+ .exa.cascade_plugins_pb.McpRegistryApiResponseMetadata metadata = 1;
113
+ repeated .exa.cascade_plugins_pb.McpRegistryApiEntry servers = 2;
114
+ }
115
+
116
+ message McpRegistryApiResponseMetadata {
117
+ int32 count = 1;
118
+ string next_cursor = 2;
119
+ }
120
+
121
+ message McpRegistryApiEntry {
122
+ .exa.cascade_plugins_pb.McpRegistryOfficialMeta meta = 1;
123
+ .exa.cascade_plugins_pb.McpRegistryServer server = 2;
124
+ }
125
+
126
+ message McpRegistryOfficialMeta {
127
+ .exa.cascade_plugins_pb.McpRegistryOfficialMetaDetail official = 1;
128
+ }
129
+
130
+ message McpRegistryOfficialMetaDetail {
131
+ bool is_latest = 1;
132
+ string status = 2;
133
+ string status_message = 3;
134
+ string published_at = 4;
135
+ string updated_at = 5;
136
+ }
137
+
138
+ message McpRegistryServer {
139
+ string name = 1;
140
+ string title = 2;
141
+ string description = 3;
142
+ string version = 4;
143
+ string website_url = 5;
144
+ .exa.cascade_plugins_pb.McpRegistryRepository repository = 6;
145
+ repeated .exa.cascade_plugins_pb.McpRegistryPackage packages = 7;
146
+ repeated .exa.cascade_plugins_pb.McpRegistryRemote remotes = 8;
147
+ repeated .exa.cascade_plugins_pb.McpRegistryIcon icons = 9;
148
+ bool is_latest = 10;
149
+ string status = 11;
150
+ string schema = 12;
151
+ }
152
+
153
+ message McpRegistryRepository {
154
+ string url = 1;
155
+ string source = 2;
156
+ string id = 3;
157
+ string subfolder = 4;
158
+ }
159
+
160
+ message McpRegistryIcon {
161
+ string src = 1;
162
+ string mime_type = 2;
163
+ string theme = 3;
164
+ repeated string sizes = 4;
165
+ }
166
+
167
+ message McpRegistryPackage {
168
+ string registry_type = 1;
169
+ string identifier = 2;
170
+ string version = 3;
171
+ string runtime_hint = 4;
172
+ repeated .exa.cascade_plugins_pb.McpRegistryEnvironmentVariable environment_variables = 5;
173
+ .exa.cascade_plugins_pb.McpRegistryTransport transport = 6;
174
+ repeated .exa.cascade_plugins_pb.McpRegistryArgument package_arguments = 7;
175
+ repeated .exa.cascade_plugins_pb.McpRegistryArgument runtime_arguments = 8;
176
+ string registry_base_url = 9;
177
+ string file_sha256 = 10;
178
+ }
179
+
180
+ message McpRegistryTransport {
181
+ string type = 1;
182
+ string url = 2;
183
+ repeated .exa.cascade_plugins_pb.McpRegistryKeyValueInput headers = 3;
184
+ map<string, .exa.cascade_plugins_pb.McpRegistryInput> variables = 4;
185
+ }
186
+
187
+ message McpRegistryEnvironmentVariable {
188
+ string name = 1;
189
+ string description = 2;
190
+ bool is_required = 3;
191
+ bool is_secret = 4;
192
+ string default = 5;
193
+ string value = 6;
194
+ string placeholder = 7;
195
+ string format = 8;
196
+ repeated string choices = 9;
197
+ map<string, .exa.cascade_plugins_pb.McpRegistryInput> variables = 10;
198
+ }
199
+
200
+ message McpRegistryRemote {
201
+ string type = 1;
202
+ string url = 2;
203
+ repeated .exa.cascade_plugins_pb.McpRegistryKeyValueInput headers = 3;
204
+ map<string, .exa.cascade_plugins_pb.McpRegistryInput> variables = 4;
205
+ }
206
+
207
+ message McpRegistryKeyValueInput {
208
+ string name = 1;
209
+ string description = 2;
210
+ bool is_required = 3;
211
+ bool is_secret = 4;
212
+ string default = 5;
213
+ string value = 6;
214
+ string placeholder = 7;
215
+ string format = 8;
216
+ repeated string choices = 9;
217
+ map<string, .exa.cascade_plugins_pb.McpRegistryInput> variables = 10;
218
+ }
219
+
220
+ message McpRegistryInput {
221
+ string description = 1;
222
+ bool is_required = 2;
223
+ bool is_secret = 3;
224
+ string default = 4;
225
+ string value = 5;
226
+ string placeholder = 6;
227
+ string format = 7;
228
+ repeated string choices = 8;
229
+ }
230
+
231
+ message McpRegistryArgument {
232
+ string type = 1;
233
+ string name = 2;
234
+ string description = 3;
235
+ bool is_required = 4;
236
+ bool is_secret = 5;
237
+ bool is_repeated = 6;
238
+ string default = 7;
239
+ string value = 8;
240
+ string placeholder = 9;
241
+ string format = 10;
242
+ repeated string choices = 11;
243
+ string value_hint = 12;
244
+ map<string, .exa.cascade_plugins_pb.McpRegistryInput> variables = 13;
245
+ }
246
+
247
+ message GetAllAcpRegistriesRequest {
248
+ .exa.codeium_common_pb.Metadata metadata = 1;
249
+ string version = 2;
250
+ }
251
+
252
+ message GetAllAcpRegistriesResponse {
253
+ string registry_json = 1;
254
+ }
255
+
256
+ service CascadePluginsService {
257
+ rpc GetAvailableCascadePlugins (.exa.cascade_plugins_pb.GetAvailableCascadePluginsRequest) returns (.exa.cascade_plugins_pb.GetAvailableCascadePluginsResponse);
258
+ rpc InstallCascadePlugin (.exa.cascade_plugins_pb.InstallCascadePluginRequest) returns (.exa.cascade_plugins_pb.InstallCascadePluginResponse);
259
+ rpc GetCascadePluginById (.exa.cascade_plugins_pb.GetCascadePluginByIdRequest) returns (.exa.cascade_plugins_pb.GetCascadePluginByIdResponse);
260
+ rpc GetMcpClientInfos (.exa.cascade_plugins_pb.GetMcpClientInfosRequest) returns (.exa.cascade_plugins_pb.GetMcpClientInfosResponse);
261
+ rpc GetAllAcpRegistries (.exa.cascade_plugins_pb.GetAllAcpRegistriesRequest) returns (.exa.cascade_plugins_pb.GetAllAcpRegistriesResponse);
262
+ }
@@ -0,0 +1,57 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.chat_client_server_pb;
4
+
5
+ import "exa/codeium_common_pb/codeium_common.proto";
6
+
7
+ message StartChatClientRequestStreamRequest {
8
+ }
9
+
10
+ message ChatClientRequest {
11
+ oneof request {
12
+ .exa.chat_client_server_pb.AddCascadeInputRequest add_cascade_input = 1;
13
+ .exa.chat_client_server_pb.SendActionToChatPanelRequest send_action_to_chat_panel = 2;
14
+ .exa.chat_client_server_pb.InitialAckRequest initial_ack = 3;
15
+ .exa.chat_client_server_pb.RefreshCustomizationRequest refresh_customization = 4;
16
+ .exa.chat_client_server_pb.SendCascadeInputRequest send_cascade_input = 5;
17
+ .exa.chat_client_server_pb.ImplementPlanRequest implement_plan = 6;
18
+ }
19
+ }
20
+
21
+ message AddCascadeInputRequest {
22
+ repeated .exa.codeium_common_pb.TextOrScopeItem items = 1;
23
+ repeated .exa.codeium_common_pb.ImageData images = 2;
24
+ }
25
+
26
+ message SendCascadeInputRequest {
27
+ repeated .exa.codeium_common_pb.TextOrScopeItem items = 1;
28
+ repeated .exa.codeium_common_pb.ImageData images = 2;
29
+ }
30
+
31
+ message ImplementPlanRequest {
32
+ string plan_path = 1;
33
+ string plan_title = 2;
34
+ }
35
+
36
+ message SendActionToChatPanelRequest {
37
+ string action_type = 1;
38
+ repeated bytes payload = 2;
39
+ }
40
+
41
+ message FileDiffState {
42
+ string uri = 1;
43
+ int32 num_insertions = 2;
44
+ int32 num_deletions = 3;
45
+ optional string cascade_id = 4;
46
+ }
47
+
48
+ message InitialAckRequest {
49
+ }
50
+
51
+ message RefreshCustomizationRequest {
52
+ .exa.codeium_common_pb.RefreshCustomizationType config_type = 1;
53
+ }
54
+
55
+ service ChatClientServerService {
56
+ rpc StartChatClientRequestStream (.exa.chat_client_server_pb.StartChatClientRequestStreamRequest) returns (stream .exa.chat_client_server_pb.ChatClientRequest);
57
+ }