gimlet-api 0.0.13__py3-none-any.whl → 0.0.15__py3-none-any.whl

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.
gml/pipelines.py CHANGED
@@ -17,6 +17,8 @@
17
17
  import abc
18
18
  from typing import List, Optional
19
19
 
20
+ import yaml
21
+
20
22
  import gml.proto.src.api.corepb.v1.model_exec_pb2 as modelexecpb
21
23
  from gml.model import Model
22
24
 
@@ -98,12 +100,26 @@ nodes:
98
100
  outputs:
99
101
  - detections
100
102
  {track_node}
101
- - name: video_stream_sink
102
- kind: VideoStreamSink
103
+ - name: scale_video
104
+ kind: ScaleVideo
103
105
  attributes:
104
- frame_rate_limit: 30
106
+ target_width: 640
107
+ target_height: 480
108
+ preserve_aspect_ratio: true
105
109
  inputs:
106
110
  frame: .camera_source.frame
111
+ outputs:
112
+ - scaled_frame
113
+ - name: video_stream_sink
114
+ kind: EndpointSink
115
+ attributes:
116
+ response_output_info:
117
+ - name: frame
118
+ type: SEMANTIC_TYPE_VIDEO
119
+ - name: detections
120
+ type: SEMANTIC_TYPE_DETECTIONS
121
+ inputs:
122
+ frame: .scale_video.scaled_frame
107
123
  detections: {video_stream_detections}
108
124
  """
109
125
 
@@ -132,12 +148,26 @@ nodes:
132
148
  frame: .camera_source.frame
133
149
  outputs:
134
150
  - segmentation
135
- - name: video_stream_sink
136
- kind: VideoStreamSink
151
+ - name: scale_video
152
+ kind: ScaleVideo
137
153
  attributes:
138
- frame_rate_limit: 30
154
+ target_width: 640
155
+ target_height: 480
156
+ preserve_aspect_ratio: true
139
157
  inputs:
140
158
  frame: .camera_source.frame
159
+ outputs:
160
+ - scaled_frame
161
+ - name: video_stream_sink
162
+ kind: EndpointSink
163
+ attributes:
164
+ response_output_info:
165
+ - name: frame
166
+ type: SEMANTIC_TYPE_VIDEO
167
+ - name: segmentation
168
+ type: SEMANTIC_TYPE_SEGMENTATION
169
+ inputs:
170
+ frame: .scale_video.scaled_frame
141
171
  segmentation: .segment.segmentation
142
172
  """
143
173
 
@@ -163,15 +193,32 @@ nodes:
163
193
  frame: .camera_source.frame
164
194
  outputs:
165
195
  - depth
166
- - name: video_stream_sink
167
- kind: VideoStreamSink
196
+ - name: scale_video
197
+ kind: ScaleVideo
168
198
  attributes:
169
- frame_rate_limit: 30
199
+ target_width: 640
200
+ target_height: 480
201
+ preserve_aspect_ratio: true
170
202
  inputs:
171
203
  frame: .estimate_depth.depth
204
+ outputs:
205
+ - scaled_frame
206
+ - name: video_stream_sink
207
+ kind: EndpointSink
208
+ attributes:
209
+ response_output_info:
210
+ - name: frame
211
+ type: SEMANTIC_TYPE_VIDEO
212
+ inputs:
213
+ frame: .scale_video.scaled_frame
172
214
  """
173
215
 
174
216
 
217
+ def escape_prompt(s: str) -> str:
218
+ """Properly escape a string for YAML using the yaml library."""
219
+ return yaml.dump(s, default_style='"').rstrip("\n")
220
+
221
+
175
222
  class LiveChatPipeline(Pipeline):
176
223
  def __init__(
177
224
  self,
@@ -199,28 +246,33 @@ class LiveChatPipeline(Pipeline):
199
246
  raise ValueError(
200
247
  "LiveChatPipeline expects both a tokenizer model and a language model)"
201
248
  )
249
+ message_template = None
202
250
  if self.message_template_override:
203
251
  message_template = self.message_template_override
204
252
  elif hasattr(tokenizer.tokenizer, "chat_template"):
205
253
  message_template = tokenizer.tokenizer.chat_template
206
- else:
254
+ if message_template is None:
207
255
  raise ValueError(
208
256
  "Tokenizer model does not have a chat template defined. Please provide a message_template_override."
209
257
  )
210
258
  return f"""---
211
259
  nodes:
212
- - name: text_source
213
- kind: TextStreamSource
260
+ - name: endpoint_source
261
+ kind: EndpointSource
262
+ attributes:
263
+ request_input_info:
264
+ - name: prompt
265
+ type: SEMANTIC_TYPE_TEXT
214
266
  outputs:
215
267
  - prompt
216
268
  - name: query_template
217
269
  kind: TemplateChatMessage
218
270
  attributes:
219
271
  add_generation_prompt: {self.add_generation_prompt}
220
- message_template: {repr(message_template)}
221
- preset_system_prompt: {repr(self.system_prompt)}
272
+ message_template: {escape_prompt(message_template)}
273
+ preset_system_prompt: {escape_prompt(self.system_prompt)}
222
274
  inputs:
223
- query: .text_source.prompt
275
+ query: .endpoint_source.prompt
224
276
  outputs:
225
277
  - chat_message
226
278
  - name: tokenize
@@ -256,8 +308,12 @@ nodes:
256
308
  tokens: .generate.generated_tokens
257
309
  outputs:
258
310
  - text
259
- - name: text_sink
260
- kind: TextStreamSink
311
+ - name: endpoint_sink
312
+ kind: EndpointSink
313
+ attributes:
314
+ response_output_info:
315
+ - name: text_batch
316
+ type: SEMANTIC_TYPE_TEXT
261
317
  inputs:
262
318
  text_batch: .detokenize.text
263
319
  """
@@ -289,8 +345,12 @@ nodes:
289
345
  kind: CameraSource
290
346
  outputs:
291
347
  - frame
292
- - name: text_source
293
- kind: TextStreamSource
348
+ - name: endpoint_source
349
+ kind: EndpointSource
350
+ attributes:
351
+ request_input_info:
352
+ - name: prompt
353
+ type: SEMANTIC_TYPE_TEXT
294
354
  outputs:
295
355
  - prompt
296
356
  - name: detect
@@ -307,15 +367,29 @@ nodes:
307
367
  conf_threshold: {self.conf_threshold}
308
368
  inputs:
309
369
  frame: .camera_source.frame
310
- prompt: .text_source.prompt
370
+ prompt: .endpoint_source.prompt
311
371
  outputs:
312
372
  - detections
313
- - name: video_stream_sink
314
- kind: VideoStreamSink
373
+ - name: scale_video
374
+ kind: ScaleVideo
315
375
  attributes:
316
- frame_rate_limit: 30
376
+ target_width: 640
377
+ target_height: 480
378
+ preserve_aspect_ratio: true
317
379
  inputs:
318
380
  frame: .camera_source.frame
381
+ outputs:
382
+ - scaled_frame
383
+ - name: video_stream_sink
384
+ kind: EndpointSink
385
+ attributes:
386
+ response_output_info:
387
+ - name: frame
388
+ type: SEMANTIC_TYPE_VIDEO
389
+ - name: detections
390
+ type: SEMANTIC_TYPE_DETECTIONS
391
+ inputs:
392
+ frame: .scale_video.scaled_frame
319
393
  detections: .detect.detections
320
394
  """
321
395
 
@@ -13,7 +13,7 @@ _sym_db = _symbol_database.Default()
13
13
 
14
14
 
15
15
 
16
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*opentelemetry/proto/common/v1/common.proto\x12\x1dopentelemetry.proto.common.v1\"\xe0\x02\n\x08\x41nyValue\x12#\n\x0cstring_value\x18\x01 \x01(\tH\x00R\x0bstringValue\x12\x1f\n\nbool_value\x18\x02 \x01(\x08H\x00R\tboolValue\x12\x1d\n\tint_value\x18\x03 \x01(\x03H\x00R\x08intValue\x12#\n\x0c\x64ouble_value\x18\x04 \x01(\x01H\x00R\x0b\x64oubleValue\x12L\n\x0b\x61rray_value\x18\x05 \x01(\x0b\x32).opentelemetry.proto.common.v1.ArrayValueH\x00R\narrayValue\x12P\n\x0ckvlist_value\x18\x06 \x01(\x0b\x32+.opentelemetry.proto.common.v1.KeyValueListH\x00R\x0bkvlistValue\x12!\n\x0b\x62ytes_value\x18\x07 \x01(\x0cH\x00R\nbytesValueB\x07\n\x05value\"M\n\nArrayValue\x12?\n\x06values\x18\x01 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.AnyValueR\x06values\"O\n\x0cKeyValueList\x12?\n\x06values\x18\x01 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.KeyValueR\x06values\"[\n\x08KeyValue\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12=\n\x05value\x18\x02 \x01(\x0b\x32\'.opentelemetry.proto.common.v1.AnyValueR\x05value\"\xc7\x01\n\x14InstrumentationScope\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12G\n\nattributes\x18\x03 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.KeyValueR\nattributes\x12\x38\n\x18\x64ropped_attributes_count\x18\x04 \x01(\rR\x16\x64roppedAttributesCountB{\n io.opentelemetry.proto.common.v1B\x0b\x43ommonProtoP\x01Z(go.opentelemetry.io/proto/otlp/common/v1\xaa\x02\x1dOpenTelemetry.Proto.Common.V1b\x06proto3')
16
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*opentelemetry/proto/common/v1/common.proto\x12\x1dopentelemetry.proto.common.v1\"\xe0\x02\n\x08\x41nyValue\x12#\n\x0cstring_value\x18\x01 \x01(\tH\x00R\x0bstringValue\x12\x1f\n\nbool_value\x18\x02 \x01(\x08H\x00R\tboolValue\x12\x1d\n\tint_value\x18\x03 \x01(\x03H\x00R\x08intValue\x12#\n\x0c\x64ouble_value\x18\x04 \x01(\x01H\x00R\x0b\x64oubleValue\x12L\n\x0b\x61rray_value\x18\x05 \x01(\x0b\x32).opentelemetry.proto.common.v1.ArrayValueH\x00R\narrayValue\x12P\n\x0ckvlist_value\x18\x06 \x01(\x0b\x32+.opentelemetry.proto.common.v1.KeyValueListH\x00R\x0bkvlistValue\x12!\n\x0b\x62ytes_value\x18\x07 \x01(\x0cH\x00R\nbytesValueB\x07\n\x05value\"M\n\nArrayValue\x12?\n\x06values\x18\x01 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.AnyValueR\x06values\"O\n\x0cKeyValueList\x12?\n\x06values\x18\x01 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.KeyValueR\x06values\"[\n\x08KeyValue\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12=\n\x05value\x18\x02 \x01(\x0b\x32\'.opentelemetry.proto.common.v1.AnyValueR\x05value\"\xc7\x01\n\x14InstrumentationScope\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x12G\n\nattributes\x18\x03 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.KeyValueR\nattributes\x12\x38\n\x18\x64ropped_attributes_count\x18\x04 \x01(\rR\x16\x64roppedAttributesCount\"\x82\x01\n\tEntityRef\x12\x1d\n\nschema_url\x18\x01 \x01(\tR\tschemaUrl\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x17\n\x07id_keys\x18\x03 \x03(\tR\x06idKeys\x12)\n\x10\x64\x65scription_keys\x18\x04 \x03(\tR\x0f\x64\x65scriptionKeysB{\n io.opentelemetry.proto.common.v1B\x0b\x43ommonProtoP\x01Z(go.opentelemetry.io/proto/otlp/common/v1\xaa\x02\x1dOpenTelemetry.Proto.Common.V1b\x06proto3')
17
17
 
18
18
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
19
19
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'opentelemetry.proto.common.v1.common_pb2', globals())
@@ -31,4 +31,6 @@ if _descriptor._USE_C_DESCRIPTORS == False:
31
31
  _KEYVALUE._serialized_end=683
32
32
  _INSTRUMENTATIONSCOPE._serialized_start=686
33
33
  _INSTRUMENTATIONSCOPE._serialized_end=885
34
+ _ENTITYREF._serialized_start=888
35
+ _ENTITYREF._serialized_end=1018
34
36
  # @@protoc_insertion_point(module_scope)
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
14
14
  from gml.proto.opentelemetry.proto.common.v1 import common_pb2 as opentelemetry_dot_proto_dot_common_dot_v1_dot_common__pb2
15
15
 
16
16
 
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.opentelemetry/proto/resource/v1/resource.proto\x12\x1fopentelemetry.proto.resource.v1\x1a*opentelemetry/proto/common/v1/common.proto\"\x8d\x01\n\x08Resource\x12G\n\nattributes\x18\x01 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.KeyValueR\nattributes\x12\x38\n\x18\x64ropped_attributes_count\x18\x02 \x01(\rR\x16\x64roppedAttributesCountB\x83\x01\n\"io.opentelemetry.proto.resource.v1B\rResourceProtoP\x01Z*go.opentelemetry.io/proto/otlp/resource/v1\xaa\x02\x1fOpenTelemetry.Proto.Resource.V1b\x06proto3')
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.opentelemetry/proto/resource/v1/resource.proto\x12\x1fopentelemetry.proto.resource.v1\x1a*opentelemetry/proto/common/v1/common.proto\"\xd8\x01\n\x08Resource\x12G\n\nattributes\x18\x01 \x03(\x0b\x32\'.opentelemetry.proto.common.v1.KeyValueR\nattributes\x12\x38\n\x18\x64ropped_attributes_count\x18\x02 \x01(\rR\x16\x64roppedAttributesCount\x12I\n\x0b\x65ntity_refs\x18\x03 \x03(\x0b\x32(.opentelemetry.proto.common.v1.EntityRefR\nentityRefsB\x83\x01\n\"io.opentelemetry.proto.resource.v1B\rResourceProtoP\x01Z*go.opentelemetry.io/proto/otlp/resource/v1\xaa\x02\x1fOpenTelemetry.Proto.Resource.V1b\x06proto3')
18
18
 
19
19
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
20
20
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'opentelemetry.proto.resource.v1.resource_pb2', globals())
@@ -23,5 +23,5 @@ if _descriptor._USE_C_DESCRIPTORS == False:
23
23
  DESCRIPTOR._options = None
24
24
  DESCRIPTOR._serialized_options = b'\n\"io.opentelemetry.proto.resource.v1B\rResourceProtoP\001Z*go.opentelemetry.io/proto/otlp/resource/v1\252\002\037OpenTelemetry.Proto.Resource.V1'
25
25
  _RESOURCE._serialized_start=128
26
- _RESOURCE._serialized_end=269
26
+ _RESOURCE._serialized_end=344
27
27
  # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,77 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: src/api/corepb/v1/actor_net.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import symbol_database as _symbol_database
9
+ # @@protoc_insertion_point(imports)
10
+
11
+ _sym_db = _symbol_database.Default()
12
+
13
+
14
+ from gml.proto.mediapipe.framework import calculator_pb2 as mediapipe_dot_framework_dot_calculator__pb2
15
+ try:
16
+ mediapipe_dot_framework_dot_calculator__options__pb2 = mediapipe_dot_framework_dot_calculator__pb2.mediapipe_dot_framework_dot_calculator__options__pb2
17
+ except AttributeError:
18
+ mediapipe_dot_framework_dot_calculator__options__pb2 = mediapipe_dot_framework_dot_calculator__pb2.mediapipe.framework.calculator_options_pb2
19
+
20
+
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!src/api/corepb/v1/actor_net.proto\x12\x18gml.internal.api.core.v1\x1a$mediapipe/framework/calculator.proto\"S\n\x0c\x41\x63torTaskRef\x12\x1d\n\nactor_name\x18\x01 \x01(\tR\tactorName\x12$\n\x0etask_atom_name\x18\x02 \x01(\tR\x0ctaskAtomName\")\n\x08\x41\x63torRef\x12\x1d\n\nactor_name\x18\x01 \x01(\tR\tactorName\"\x94\x06\n\rMPActorConfig\x12\x43\n\x0cgraph_config\x18\x01 \x01(\x0b\x32 .mediapipe.CalculatorGraphConfigR\x0bgraphConfig\x12Z\n\x12input_message_type\x18\x02 \x01(\x0e\x32,.gml.internal.api.core.v1.MPActorMessageTypeR\x10inputMessageType\x12k\n\x12input_stream_types\x18\x03 \x03(\x0b\x32=.gml.internal.api.core.v1.MPActorConfig.InputStreamTypesEntryR\x10inputStreamTypes\x12\\\n\x13output_message_type\x18\x04 \x01(\x0e\x32,.gml.internal.api.core.v1.MPActorMessageTypeR\x11outputMessageType\x12n\n\x13output_stream_types\x18\x05 \x03(\x0b\x32>.gml.internal.api.core.v1.MPActorConfig.OutputStreamTypesEntryR\x11outputStreamTypes\x12\x42\n\x08\x63onsumer\x18\x06 \x01(\x0b\x32&.gml.internal.api.core.v1.ActorTaskRefR\x08\x63onsumer\x1ap\n\x15InputStreamTypesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x41\n\x05value\x18\x02 \x01(\x0e\x32+.gml.internal.api.core.v1.MPActorPacketTypeR\x05value:\x02\x38\x01\x1aq\n\x16OutputStreamTypesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x41\n\x05value\x18\x02 \x01(\x0e\x32+.gml.internal.api.core.v1.MPActorPacketTypeR\x05value:\x02\x38\x01\"r\n\x19PagedKVCoordinatorOptions\x12&\n\x0ftokens_per_page\x18\x01 \x01(\x03R\rtokensPerPage\x12-\n\x13max_pages_in_memory\x18\x02 \x01(\x03R\x10maxPagesInMemory\"\xb1\x01\n\x14KVCoordinatorOptions\x12?\n\x04kind\x18\x01 \x01(\x0e\x32+.gml.internal.api.core.v1.KVCoordinatorKindR\x04kind\x12X\n\rpaged_options\x18\x02 \x01(\x0b\x32\x33.gml.internal.api.core.v1.PagedKVCoordinatorOptionsR\x0cpagedOptions\"\xfa\x02\n\x13LLMSchedulerOptions\x12\x45\n\x06policy\x18\x01 \x01(\x0e\x32-.gml.internal.api.core.v1.LLMSchedulingPolicyR\x06policy\x12$\n\x0emax_batch_size\x18\x02 \x01(\x03R\x0cmaxBatchSize\x12/\n\x14max_tokens_per_batch\x18\x03 \x01(\x03R\x11maxTokensPerBatch\x12\x32\n\x15max_inflight_requests\x18\x04 \x01(\x03R\x13maxInflightRequests\x12\x30\n\x14max_inflight_batches\x18\x05 \x01(\x03R\x12maxInflightBatches\x12\x1d\n\neos_tokens\x18\x06 \x03(\x05R\teosTokens\x12@\n\x1d\x64\x65\x66\x61ult_max_tokens_before_eos\x18\x07 \x01(\x03R\x19\x64\x65\x66\x61ultMaxTokensBeforeEos\"\xaf\x04\n\x17LLMSchedulerActorConfig\x12\x64\n\x16kv_coordinator_options\x18\x01 \x01(\x0b\x32..gml.internal.api.core.v1.KVCoordinatorOptionsR\x14kvCoordinatorOptions\x12Z\n\x11scheduler_options\x18\x02 \x01(\x0b\x32-.gml.internal.api.core.v1.LLMSchedulerOptionsR\x10schedulerOptions\x12`\n\x18generated_token_consumer\x18\x03 \x01(\x0b\x32&.gml.internal.api.core.v1.ActorTaskRefR\x16generatedTokenConsumer\x12W\n\x13inference_consumers\x18\x04 \x03(\x0b\x32&.gml.internal.api.core.v1.ActorTaskRefR\x12inferenceConsumers\x12G\n\rdecode_actors\x18\x05 \x03(\x0b\x32\".gml.internal.api.core.v1.ActorRefR\x0c\x64\x65\x63odeActors\x12N\n\x11kv_transfer_actor\x18\x06 \x01(\x0b\x32\".gml.internal.api.core.v1.ActorRefR\x0fkvTransferActor\"_\n\x11RemoteActorConfig\x12)\n\x10remote_namespace\x18\x01 \x01(\tR\x0fremoteNamespace\x12\x1f\n\x0bremote_name\x18\x02 \x01(\tR\nremoteName\"\x8a\x01\n\x12PagedKVCacheParams\x12\x1d\n\nnum_blocks\x18\x01 \x01(\x03R\tnumBlocks\x12(\n\x10tokens_per_block\x18\x02 \x01(\x03R\x0etokensPerBlock\x12+\n\x12max_blocks_per_seq\x18\x03 \x01(\x03R\x0fmaxBlocksPerSeq\"\xc7\x02\n\rKVCacheParams\x12\x1d\n\nnum_layers\x18\x01 \x01(\x03R\tnumLayers\x12\x1b\n\tnum_heads\x18\x02 \x01(\x03R\x08numHeads\x12\x19\n\x08head_dim\x18\x03 \x01(\x03R\x07headDim\x12O\n\x0cpaged_params\x18\x04 \x01(\x0b\x32,.gml.internal.api.core.v1.PagedKVCacheParamsR\x0bpagedParams\x12?\n\x06\x66ormat\x18\x05 \x01(\x0e\x32\'.gml.internal.api.core.v1.KVCacheFormatR\x06\x66ormat\x12,\n\x12max_context_length\x18\x06 \x01(\x03R\x10maxContextLength\x12\x1f\n\x0bplugin_name\x18\x07 \x01(\tR\npluginName\"\x8a\x02\n\x12KVCacheActorConfig\x12O\n\x0fkv_cache_params\x18\x01 \x01(\x0b\x32\'.gml.internal.api.core.v1.KVCacheParamsR\rkvCacheParams\x12I\n\x0ckv_consumers\x18\x02 \x03(\x0b\x32&.gml.internal.api.core.v1.ActorTaskRefR\x0bkvConsumers\x12X\n\x16transfer_manager_actor\x18\x03 \x01(\x0b\x32\".gml.internal.api.core.v1.ActorRefR\x14transferManagerActor\"n\n\x1cKVTransferManagerActorConfig\x12N\n\x11kv_manager_actors\x18\x01 \x03(\x0b\x32\".gml.internal.api.core.v1.ActorRefR\x0fkvManagerActors\"\xc5\x04\n\x0f\x41\x63torDefinition\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x37\n\x04kind\x18\x02 \x01(\x0e\x32#.gml.internal.api.core.v1.ActorKindR\x04kind\x12\x46\n\tmp_config\x18\x03 \x01(\x0b\x32\'.gml.internal.api.core.v1.MPActorConfigH\x00R\x08mpConfig\x12\x65\n\x14llm_scheduler_config\x18\x04 \x01(\x0b\x32\x31.gml.internal.api.core.v1.LLMSchedulerActorConfigH\x00R\x12llmSchedulerConfig\x12R\n\rremote_config\x18\x05 \x01(\x0b\x32+.gml.internal.api.core.v1.RemoteActorConfigH\x00R\x0cremoteConfig\x12\x61\n\x15kv_cache_actor_config\x18\x06 \x01(\x0b\x32,.gml.internal.api.core.v1.KVCacheActorConfigH\x00R\x12kvCacheActorConfig\x12u\n\x1akv_transfer_manager_config\x18\x07 \x01(\x0b\x32\x36.gml.internal.api.core.v1.KVTransferManagerActorConfigH\x00R\x17kvTransferManagerConfigB\x08\n\x06\x63onfig\"n\n\x15\x41\x63torNetworkNamespace\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x41\n\x06\x61\x63tors\x18\x02 \x03(\x0b\x32).gml.internal.api.core.v1.ActorDefinitionR\x06\x61\x63tors*\xb4\x01\n\tActorKind\x12\x16\n\x12\x41\x43TOR_KIND_UNKNOWN\x10\x00\x12\x17\n\x13\x41\x43TOR_KIND_MP_ACTOR\x10\x01\x12\x1c\n\x18\x41\x43TOR_KIND_LLM_SCHEDULER\x10\x02\x12\x1b\n\x17\x41\x43TOR_KIND_REMOTE_ACTOR\x10\x03\x12\x17\n\x13\x41\x43TOR_KIND_KV_CACHE\x10\x04\x12\"\n\x1e\x41\x43TOR_KIND_KV_TRANSFER_MANAGER\x10\x05*\x95\x02\n\x12MPActorMessageType\x12!\n\x1dMP_ACTOR_MESSAGE_TYPE_UNKNOWN\x10\x00\x12\x1e\n\x1aMP_ACTOR_MESSAGE_TYPE_NONE\x10\x01\x12\x30\n,MP_ACTOR_MESSAGE_TYPE_LLM_GENERATION_REQUEST\x10\x02\x12-\n)MP_ACTOR_MESSAGE_TYPE_LLM_SCHEDULED_BATCH\x10\x03\x12+\n\'MP_ACTOR_MESSAGE_TYPE_LLM_BATCH_RESULTS\x10\x04\x12.\n*MP_ACTOR_MESSAGE_TYPE_LLM_GENERATED_TOKENS\x10\x05*\xc6\x02\n\x11MPActorPacketType\x12 \n\x1cMP_ACTOR_PACKET_TYPE_UNKNOWN\x10\x00\x12#\n\x1fMP_ACTOR_PACKET_TYPE_REQUEST_ID\x10\x01\x12#\n\x1fMP_ACTOR_PACKET_TYPE_SESSION_ID\x10\x02\x12\x1f\n\x1bMP_ACTOR_PACKET_TYPE_TOKENS\x10\x03\x12%\n!MP_ACTOR_PACKET_TYPE_TOKENS_BATCH\x10\x04\x12-\n)MP_ACTOR_PACKET_TYPE_KV_ALLOC_INFOS_BATCH\x10\x05\x12\x30\n,MP_ACTOR_PACKET_TYPE_LLM_REQUEST_TYPES_BATCH\x10\x06\x12\x1c\n\x18MP_ACTOR_PACKET_TYPE_EOS\x10\x07*{\n\x11KVCoordinatorKind\x12\x1f\n\x1bKV_COORDINATOR_KIND_UNKNOWN\x10\x00\x12&\n\"KV_COORDINATOR_KIND_SINGLE_REQUEST\x10\x01\x12\x1d\n\x19KV_COORDINATOR_KIND_PAGED\x10\x02*\xad\x01\n\x13LLMSchedulingPolicy\x12!\n\x1dLLM_SCHEDULING_POLICY_UNKNOWN\x10\x00\x12!\n\x1dLLM_SCHEDULING_POLICY_DEFAULT\x10\x01\x12+\n\'LLM_SCHEDULING_POLICY_INFLIGHT_BATCHING\x10\x02\x12#\n\x1fLLM_SCHEDULING_POLICY_SPLITWISE\x10\x03*\x88\x02\n\rKVCacheFormat\x12\x1b\n\x17KV_CACHE_FORMAT_UNKNOWN\x10\x00\x12:\n6KV_CACHE_FORMAT_CONTIGUOUS_SEPARATE_KV_NO_OUTPUT_SPACE\x10\x01\x12<\n8KV_CACHE_FORMAT_CONTIGUOUS_COMBINED_KV_WITH_OUTPUT_SPACE\x10\x02\x12\x1e\n\x1aKV_CACHE_FORMAT_PAGED_TLLM\x10\x03\x12 \n\x1cKV_CACHE_FORMAT_PREALLOCATED\x10\x04\x12\x1e\n\x1aKV_CACHE_FORMAT_PAGED_VLLM\x10\x05\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
22
+
23
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
24
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.actor_net_pb2', globals())
25
+ if _descriptor._USE_C_DESCRIPTORS == False:
26
+
27
+ DESCRIPTOR._options = None
28
+ DESCRIPTOR._serialized_options = b'Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepb'
29
+ _MPACTORCONFIG_INPUTSTREAMTYPESENTRY._options = None
30
+ _MPACTORCONFIG_INPUTSTREAMTYPESENTRY._serialized_options = b'8\001'
31
+ _MPACTORCONFIG_OUTPUTSTREAMTYPESENTRY._options = None
32
+ _MPACTORCONFIG_OUTPUTSTREAMTYPESENTRY._serialized_options = b'8\001'
33
+ _ACTORKIND._serialized_start=3905
34
+ _ACTORKIND._serialized_end=4085
35
+ _MPACTORMESSAGETYPE._serialized_start=4088
36
+ _MPACTORMESSAGETYPE._serialized_end=4365
37
+ _MPACTORPACKETTYPE._serialized_start=4368
38
+ _MPACTORPACKETTYPE._serialized_end=4694
39
+ _KVCOORDINATORKIND._serialized_start=4696
40
+ _KVCOORDINATORKIND._serialized_end=4819
41
+ _LLMSCHEDULINGPOLICY._serialized_start=4822
42
+ _LLMSCHEDULINGPOLICY._serialized_end=4995
43
+ _KVCACHEFORMAT._serialized_start=4998
44
+ _KVCACHEFORMAT._serialized_end=5262
45
+ _ACTORTASKREF._serialized_start=101
46
+ _ACTORTASKREF._serialized_end=184
47
+ _ACTORREF._serialized_start=186
48
+ _ACTORREF._serialized_end=227
49
+ _MPACTORCONFIG._serialized_start=230
50
+ _MPACTORCONFIG._serialized_end=1018
51
+ _MPACTORCONFIG_INPUTSTREAMTYPESENTRY._serialized_start=791
52
+ _MPACTORCONFIG_INPUTSTREAMTYPESENTRY._serialized_end=903
53
+ _MPACTORCONFIG_OUTPUTSTREAMTYPESENTRY._serialized_start=905
54
+ _MPACTORCONFIG_OUTPUTSTREAMTYPESENTRY._serialized_end=1018
55
+ _PAGEDKVCOORDINATOROPTIONS._serialized_start=1020
56
+ _PAGEDKVCOORDINATOROPTIONS._serialized_end=1134
57
+ _KVCOORDINATOROPTIONS._serialized_start=1137
58
+ _KVCOORDINATOROPTIONS._serialized_end=1314
59
+ _LLMSCHEDULEROPTIONS._serialized_start=1317
60
+ _LLMSCHEDULEROPTIONS._serialized_end=1695
61
+ _LLMSCHEDULERACTORCONFIG._serialized_start=1698
62
+ _LLMSCHEDULERACTORCONFIG._serialized_end=2257
63
+ _REMOTEACTORCONFIG._serialized_start=2259
64
+ _REMOTEACTORCONFIG._serialized_end=2354
65
+ _PAGEDKVCACHEPARAMS._serialized_start=2357
66
+ _PAGEDKVCACHEPARAMS._serialized_end=2495
67
+ _KVCACHEPARAMS._serialized_start=2498
68
+ _KVCACHEPARAMS._serialized_end=2825
69
+ _KVCACHEACTORCONFIG._serialized_start=2828
70
+ _KVCACHEACTORCONFIG._serialized_end=3094
71
+ _KVTRANSFERMANAGERACTORCONFIG._serialized_start=3096
72
+ _KVTRANSFERMANAGERACTORCONFIG._serialized_end=3206
73
+ _ACTORDEFINITION._serialized_start=3209
74
+ _ACTORDEFINITION._serialized_end=3790
75
+ _ACTORNETWORKNAMESPACE._serialized_start=3792
76
+ _ACTORNETWORKNAMESPACE._serialized_end=3902
77
+ # @@protoc_insertion_point(module_scope)
@@ -15,7 +15,7 @@ from gml.proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
15
15
  from gml.proto.src.api.corepb.v1 import model_exec_pb2 as src_dot_api_dot_corepb_dot_v1_dot_model__exec__pb2
16
16
 
17
17
 
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)src/api/corepb/v1/compiled_pipeline.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\"src/api/corepb/v1/model_exec.proto\"\x8c\x01\n\x14\x43ompiledPipelineSpec\x12t\n\x17\x64istribution_candidates\x18\x01 \x03(\x0b\x32;.gml.internal.api.core.v1.PipelineDistributionCandidateSpecR\x16\x64istributionCandidates\"\xe4\x01\n!PipelineDistributionCandidateSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x0f\x66ragment_groups\x18\x02 \x03(\x0b\x32\x33.gml.internal.api.core.v1.PipelineFragmentGroupSpecR\x0e\x66ragmentGroups\x12M\n\x05ports\x18\x03 \x03(\x0b\x32\x37.gml.internal.api.core.v1.PipelineFragmentGroupPortSpecR\x05ports\"\xc7\x01\n\x19PipelineFragmentGroupSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12H\n\x0b\x63omm_groups\x18\x02 \x03(\x0b\x32\'.gml.internal.api.core.v1.CommGroupSpecR\ncommGroups\x12L\n\tfragments\x18\x03 \x03(\x0b\x32..gml.internal.api.core.v1.PipelineFragmentSpecR\tfragments\"\x83\x01\n\x1dPipelineFragmentGroupPortSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12!\n\x0csource_group\x18\x02 \x01(\tR\x0bsourceGroup\x12+\n\x11\x64\x65stination_group\x18\x03 \x01(\tR\x10\x64\x65stinationGroup\"\xd7\x01\n\x14PipelineFragmentSpec\x12i\n\x0e\x63onfigurations\x18\x02 \x03(\x0b\x32\x41.gml.internal.api.core.v1.PipelineFragmentConfigurationOptionSpecR\x0e\x63onfigurations\x12N\n\x0b\x63omm_groups\x18\x03 \x03(\x0b\x32-.gml.internal.api.core.v1.CommGroupMemberSpecR\ncommGroupsJ\x04\x08\x01\x10\x02\"\xb0\x04\n\'PipelineFragmentConfigurationOptionSpec\x12\x44\n\texec_spec\x18\x02 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x08\x65xecSpec\x12?\n\x06labels\x18\x03 \x03(\x0b\x32\'.gml.internal.api.core.v1.FragmentLabelR\x06labels\x12_\n\x08gem_spec\x18\x04 \x01(\x0b\x32\x37.gml.internal.api.core.v1.ScopedAffinityAndResourceSpecB\x0b\xe2\xde\x1f\x07GEMSpecR\x07gemSpec\x12\x64\n\x11\x61\x63\x63\x65lerator_specs\x18\x05 \x03(\x0b\x32\x37.gml.internal.api.core.v1.ScopedAffinityAndResourceSpecR\x10\x61\x63\x63\x65leratorSpecs\x12S\n\x11\x66ragment_affinity\x18\x06 \x01(\x0b\x32&.gml.internal.api.core.v1.AffinitySpecR\x10\x66ragmentAffinity\x12\\\n\x16\x66ragment_anti_affinity\x18\x07 \x01(\x0b\x32&.gml.internal.api.core.v1.AffinitySpecR\x14\x66ragmentAntiAffinityJ\x04\x08\x01\x10\x02\"A\n\x0fResourceRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n\x08quantity\x18\x02 \x01(\x03R\x08quantity\"a\n\x18ResourceRequirementsSpec\x12\x45\n\x08requests\x18\x01 \x03(\x0b\x32).gml.internal.api.core.v1.ResourceRequestR\x08requests\"\xc0\x01\n\x1dScopedAffinityAndResourceSpec\x12M\n\x0escope_affinity\x18\x01 \x01(\x0b\x32&.gml.internal.api.core.v1.AffinitySpecR\rscopeAffinity\x12P\n\tresources\x18\x04 \x01(\x0b\x32\x32.gml.internal.api.core.v1.ResourceRequirementsSpecR\tresources\"\x8a\x01\n\x14LabelMatchExpression\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x16\n\x06values\x18\x02 \x03(\tR\x06values\x12H\n\x08operator\x18\x03 \x01(\x0e\x32,.gml.internal.api.core.v1.LabelMatchOperatorR\x08operator\"\x8f\x01\n\rLabelSelector\x12[\n\x11match_expressions\x18\x01 \x03(\x0b\x32..gml.internal.api.core.v1.LabelMatchExpressionR\x10matchExpressions\x12!\n\x0ctopology_key\x18\x02 \x01(\tR\x0btopologyKey\"U\n\x0c\x41\x66\x66inityRule\x12\x45\n\tselectors\x18\x01 \x03(\x0b\x32\'.gml.internal.api.core.v1.LabelSelectorR\tselectors\"]\n\x0c\x41\x66\x66initySpec\x12M\n\x0erequired_rules\x18\x02 \x03(\x0b\x32&.gml.internal.api.core.v1.AffinityRuleR\rrequiredRules\"7\n\rFragmentLabel\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x87\x01\n\rCommGroupSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04size\x18\x02 \x01(\x03R\x04size\x12N\n\x0ctopology_key\x18\x03 \x01(\x0e\x32+.gml.internal.api.core.v1.FabricTopologyKeyR\x0btopologyKey\"=\n\x13\x43ommGroupMemberSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04rank\x18\x02 \x01(\x03R\x04rank*\xbe\x01\n\x12LabelMatchOperator\x12 \n\x1cLABEL_MATCH_OPERATOR_UNKNOWN\x10\x00\x12\x1b\n\x17LABEL_MATCH_OPERATOR_IN\x10\x01\x12\x1f\n\x1bLABEL_MATCH_OPERATOR_NOT_IN\x10\x02\x12\x1f\n\x1bLABEL_MATCH_OPERATOR_EXISTS\x10\x03\x12\'\n#LABEL_MATCH_OPERATOR_DOES_NOT_EXIST\x10\x04*\xa9\x01\n\x11\x46\x61\x62ricTopologyKey\x12\x1f\n\x1b\x46\x41\x42RIC_TOPOLOGY_KEY_UNKNOWN\x10\x00\x12\x1b\n\x17\x46\x41\x42RIC_TOPOLOGY_KEY_ANY\x10\x01\x12\x1c\n\x18\x46\x41\x42RIC_TOPOLOGY_KEY_NODE\x10\x02\x12\x1c\n\x18\x46\x41\x42RIC_TOPOLOGY_KEY_RACK\x10\x03\x12\x1a\n\x16\x46\x41\x42RIC_TOPOLOGY_KEY_DC\x10\x04\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
18
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)src/api/corepb/v1/compiled_pipeline.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\"src/api/corepb/v1/model_exec.proto\"\x8c\x01\n\x14\x43ompiledPipelineSpec\x12t\n\x17\x64istribution_candidates\x18\x01 \x03(\x0b\x32;.gml.internal.api.core.v1.PipelineDistributionCandidateSpecR\x16\x64istributionCandidates\"\xe4\x01\n!PipelineDistributionCandidateSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\\\n\x0f\x66ragment_groups\x18\x02 \x03(\x0b\x32\x33.gml.internal.api.core.v1.PipelineFragmentGroupSpecR\x0e\x66ragmentGroups\x12M\n\x05ports\x18\x03 \x03(\x0b\x32\x37.gml.internal.api.core.v1.PipelineFragmentGroupPortSpecR\x05ports\"\xc7\x01\n\x19PipelineFragmentGroupSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12H\n\x0b\x63omm_groups\x18\x02 \x03(\x0b\x32\'.gml.internal.api.core.v1.CommGroupSpecR\ncommGroups\x12L\n\tfragments\x18\x03 \x03(\x0b\x32..gml.internal.api.core.v1.PipelineFragmentSpecR\tfragments\"\x83\x01\n\x1dPipelineFragmentGroupPortSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12!\n\x0csource_group\x18\x02 \x01(\tR\x0bsourceGroup\x12+\n\x11\x64\x65stination_group\x18\x03 \x01(\tR\x10\x64\x65stinationGroup\"\xe5\x01\n\x14PipelineFragmentSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12i\n\x0e\x63onfigurations\x18\x02 \x03(\x0b\x32\x41.gml.internal.api.core.v1.PipelineFragmentConfigurationOptionSpecR\x0e\x63onfigurations\x12N\n\x0b\x63omm_groups\x18\x03 \x03(\x0b\x32-.gml.internal.api.core.v1.CommGroupMemberSpecR\ncommGroups\"\xd5\x04\n\'PipelineFragmentConfigurationOptionSpec\x12\x44\n\texec_spec\x18\x02 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x08\x65xecSpec\x12?\n\x06labels\x18\x03 \x03(\x0b\x32\'.gml.internal.api.core.v1.FragmentLabelR\x06labels\x12_\n\x08gem_spec\x18\x04 \x01(\x0b\x32\x37.gml.internal.api.core.v1.ScopedAffinityAndResourceSpecB\x0b\xe2\xde\x1f\x07GEMSpecR\x07gemSpec\x12\x64\n\x11\x61\x63\x63\x65lerator_specs\x18\x05 \x03(\x0b\x32\x37.gml.internal.api.core.v1.ScopedAffinityAndResourceSpecR\x10\x61\x63\x63\x65leratorSpecs\x12S\n\x11\x66ragment_affinity\x18\x06 \x01(\x0b\x32&.gml.internal.api.core.v1.AffinitySpecR\x10\x66ragmentAffinity\x12\\\n\x16\x66ragment_anti_affinity\x18\x07 \x01(\x0b\x32&.gml.internal.api.core.v1.AffinitySpecR\x14\x66ragmentAntiAffinity\x12#\n\rfragment_name\x18\x08 \x01(\tR\x0c\x66ragmentNameJ\x04\x08\x01\x10\x02\"A\n\x0fResourceRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1a\n\x08quantity\x18\x02 \x01(\x03R\x08quantity\"a\n\x18ResourceRequirementsSpec\x12\x45\n\x08requests\x18\x01 \x03(\x0b\x32).gml.internal.api.core.v1.ResourceRequestR\x08requests\"\xc0\x01\n\x1dScopedAffinityAndResourceSpec\x12M\n\x0escope_affinity\x18\x01 \x01(\x0b\x32&.gml.internal.api.core.v1.AffinitySpecR\rscopeAffinity\x12P\n\tresources\x18\x04 \x01(\x0b\x32\x32.gml.internal.api.core.v1.ResourceRequirementsSpecR\tresources\"\x8a\x01\n\x14LabelMatchExpression\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x16\n\x06values\x18\x02 \x03(\tR\x06values\x12H\n\x08operator\x18\x03 \x01(\x0e\x32,.gml.internal.api.core.v1.LabelMatchOperatorR\x08operator\"\x8f\x01\n\rLabelSelector\x12[\n\x11match_expressions\x18\x01 \x03(\x0b\x32..gml.internal.api.core.v1.LabelMatchExpressionR\x10matchExpressions\x12!\n\x0ctopology_key\x18\x02 \x01(\tR\x0btopologyKey\"U\n\x0c\x41\x66\x66inityRule\x12\x45\n\tselectors\x18\x01 \x03(\x0b\x32\'.gml.internal.api.core.v1.LabelSelectorR\tselectors\"]\n\x0c\x41\x66\x66initySpec\x12M\n\x0erequired_rules\x18\x02 \x03(\x0b\x32&.gml.internal.api.core.v1.AffinityRuleR\rrequiredRules\"7\n\rFragmentLabel\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x87\x01\n\rCommGroupSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04size\x18\x02 \x01(\x03R\x04size\x12N\n\x0ctopology_key\x18\x03 \x01(\x0e\x32+.gml.internal.api.core.v1.FabricTopologyKeyR\x0btopologyKey\"=\n\x13\x43ommGroupMemberSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04rank\x18\x02 \x01(\x03R\x04rank*\xbe\x01\n\x12LabelMatchOperator\x12 \n\x1cLABEL_MATCH_OPERATOR_UNKNOWN\x10\x00\x12\x1b\n\x17LABEL_MATCH_OPERATOR_IN\x10\x01\x12\x1f\n\x1bLABEL_MATCH_OPERATOR_NOT_IN\x10\x02\x12\x1f\n\x1bLABEL_MATCH_OPERATOR_EXISTS\x10\x03\x12\'\n#LABEL_MATCH_OPERATOR_DOES_NOT_EXIST\x10\x04*\xa9\x01\n\x11\x46\x61\x62ricTopologyKey\x12\x1f\n\x1b\x46\x41\x42RIC_TOPOLOGY_KEY_UNKNOWN\x10\x00\x12\x1b\n\x17\x46\x41\x42RIC_TOPOLOGY_KEY_ANY\x10\x01\x12\x1c\n\x18\x46\x41\x42RIC_TOPOLOGY_KEY_NODE\x10\x02\x12\x1c\n\x18\x46\x41\x42RIC_TOPOLOGY_KEY_RACK\x10\x03\x12\x1a\n\x16\x46\x41\x42RIC_TOPOLOGY_KEY_DC\x10\x04\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
19
19
 
20
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
21
21
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.compiled_pipeline_pb2', globals())
@@ -25,10 +25,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
25
25
  DESCRIPTOR._serialized_options = b'Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepb'
26
26
  _PIPELINEFRAGMENTCONFIGURATIONOPTIONSPEC.fields_by_name['gem_spec']._options = None
27
27
  _PIPELINEFRAGMENTCONFIGURATIONOPTIONSPEC.fields_by_name['gem_spec']._serialized_options = b'\342\336\037\007GEMSpec'
28
- _LABELMATCHOPERATOR._serialized_start=2709
29
- _LABELMATCHOPERATOR._serialized_end=2899
30
- _FABRICTOPOLOGYKEY._serialized_start=2902
31
- _FABRICTOPOLOGYKEY._serialized_end=3071
28
+ _LABELMATCHOPERATOR._serialized_start=2760
29
+ _LABELMATCHOPERATOR._serialized_end=2950
30
+ _FABRICTOPOLOGYKEY._serialized_start=2953
31
+ _FABRICTOPOLOGYKEY._serialized_end=3122
32
32
  _COMPILEDPIPELINESPEC._serialized_start=130
33
33
  _COMPILEDPIPELINESPEC._serialized_end=270
34
34
  _PIPELINEDISTRIBUTIONCANDIDATESPEC._serialized_start=273
@@ -38,27 +38,27 @@ if _descriptor._USE_C_DESCRIPTORS == False:
38
38
  _PIPELINEFRAGMENTGROUPPORTSPEC._serialized_start=706
39
39
  _PIPELINEFRAGMENTGROUPPORTSPEC._serialized_end=837
40
40
  _PIPELINEFRAGMENTSPEC._serialized_start=840
41
- _PIPELINEFRAGMENTSPEC._serialized_end=1055
42
- _PIPELINEFRAGMENTCONFIGURATIONOPTIONSPEC._serialized_start=1058
43
- _PIPELINEFRAGMENTCONFIGURATIONOPTIONSPEC._serialized_end=1618
44
- _RESOURCEREQUEST._serialized_start=1620
45
- _RESOURCEREQUEST._serialized_end=1685
46
- _RESOURCEREQUIREMENTSSPEC._serialized_start=1687
47
- _RESOURCEREQUIREMENTSSPEC._serialized_end=1784
48
- _SCOPEDAFFINITYANDRESOURCESPEC._serialized_start=1787
49
- _SCOPEDAFFINITYANDRESOURCESPEC._serialized_end=1979
50
- _LABELMATCHEXPRESSION._serialized_start=1982
51
- _LABELMATCHEXPRESSION._serialized_end=2120
52
- _LABELSELECTOR._serialized_start=2123
53
- _LABELSELECTOR._serialized_end=2266
54
- _AFFINITYRULE._serialized_start=2268
55
- _AFFINITYRULE._serialized_end=2353
56
- _AFFINITYSPEC._serialized_start=2355
57
- _AFFINITYSPEC._serialized_end=2448
58
- _FRAGMENTLABEL._serialized_start=2450
59
- _FRAGMENTLABEL._serialized_end=2505
60
- _COMMGROUPSPEC._serialized_start=2508
61
- _COMMGROUPSPEC._serialized_end=2643
62
- _COMMGROUPMEMBERSPEC._serialized_start=2645
63
- _COMMGROUPMEMBERSPEC._serialized_end=2706
41
+ _PIPELINEFRAGMENTSPEC._serialized_end=1069
42
+ _PIPELINEFRAGMENTCONFIGURATIONOPTIONSPEC._serialized_start=1072
43
+ _PIPELINEFRAGMENTCONFIGURATIONOPTIONSPEC._serialized_end=1669
44
+ _RESOURCEREQUEST._serialized_start=1671
45
+ _RESOURCEREQUEST._serialized_end=1736
46
+ _RESOURCEREQUIREMENTSSPEC._serialized_start=1738
47
+ _RESOURCEREQUIREMENTSSPEC._serialized_end=1835
48
+ _SCOPEDAFFINITYANDRESOURCESPEC._serialized_start=1838
49
+ _SCOPEDAFFINITYANDRESOURCESPEC._serialized_end=2030
50
+ _LABELMATCHEXPRESSION._serialized_start=2033
51
+ _LABELMATCHEXPRESSION._serialized_end=2171
52
+ _LABELSELECTOR._serialized_start=2174
53
+ _LABELSELECTOR._serialized_end=2317
54
+ _AFFINITYRULE._serialized_start=2319
55
+ _AFFINITYRULE._serialized_end=2404
56
+ _AFFINITYSPEC._serialized_start=2406
57
+ _AFFINITYSPEC._serialized_end=2499
58
+ _FRAGMENTLABEL._serialized_start=2501
59
+ _FRAGMENTLABEL._serialized_end=2556
60
+ _COMMGROUPSPEC._serialized_start=2559
61
+ _COMMGROUPSPEC._serialized_end=2694
62
+ _COMMGROUPMEMBERSPEC._serialized_start=2696
63
+ _COMMGROUPMEMBERSPEC._serialized_end=2757
64
64
  # @@protoc_insertion_point(module_scope)
@@ -22,7 +22,7 @@ from gml.proto.src.common.typespb import status_pb2 as src_dot_common_dot_typesp
22
22
  from gml.proto.src.api.corepb.v1 import model_exec_pb2 as src_dot_api_dot_corepb_dot_v1_dot_model__exec__pb2
23
23
 
24
24
 
25
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$src/api/corepb/v1/controlplane.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x19google/protobuf/any.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a)src/api/corepb/v1/compiled_pipeline.proto\x1a\x1fsrc/api/corepb/v1/cp_edge.proto\x1a\"src/api/corepb/v1/gem_config.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a\x1fsrc/common/typespb/status.proto\x1a\"src/api/corepb/v1/model_exec.proto\"\xc4\x01\n\nCPMetadata\x12\x37\n\x05topic\x18\x01 \x01(\x0e\x32!.gml.internal.api.core.v1.CPTopicR\x05topic\x12:\n\tentity_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x45ntityIDR\x08\x65ntityId\x12\x41\n\x0erecv_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rrecvTimestamp\"v\n\tCPMessage\x12@\n\x08metadata\x18\x01 \x01(\x0b\x32$.gml.internal.api.core.v1.CPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"M\n\x0f\x44\x65viceConnected\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"J\n\x0c\x44\x65viceUpdate\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"P\n\x12\x44\x65viceDisconnected\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"\xd8\x01\n\x1ePhysicalPipelineReconciliation\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12Y\n\x14physical_pipeline_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x1f\n\x0b\x66orce_apply\x18\x03 \x01(\x08R\nforceApply\"\xbc\x01\n PipelineDeploymentReconciliation\x12_\n\x16pipeline_deployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\x12\x37\n\x08\x66leet_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\"U\n\x17\x42\x61seConfigUpdateRequest\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"\xdd\x03\n\x1bPipelineCompilationMetadata\x12\x8c\x01\n\x1aphysical_pipeline_metadata\x18\x01 \x01(\x0b\x32N.gml.internal.api.core.v1.PipelineCompilationMetadata.PhysicalPipelineMetadataR\x18physicalPipelineMetadata\x12)\n\x10\x63ompile_revision\x18\x02 \x01(\x03R\x0f\x63ompileRevision\x1a\x83\x02\n\x18PhysicalPipelineMetadata\x12:\n\tentity_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x45ntityIDR\x08\x65ntityId\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12\x30\n\x14\x65ntity_resource_hash\x18\x03 \x01(\tR\x12\x65ntityResourceHash\x12_\n\x16pipeline_deployment_id\x18\x04 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\"\x86\x05\n\x1aPipelineCompilationRequest\x12Q\n\x08metadata\x18\x01 \x01(\x0b\x32\x35.gml.internal.api.core.v1.PipelineCompilationMetadataR\x08metadata\x12V\n\x13logical_pipeline_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12T\n\x10logical_pipeline\x18\x03 \x01(\x0b\x32).gml.internal.api.core.v1.LogicalPipelineR\x0flogicalPipeline\x12\x61\n\x13\x64\x65vice_capabilities\x18\x04 \x01(\x0b\x32,.gml.internal.api.core.v1.DeviceCapabilitiesB\x02\x18\x01R\x12\x64\x65viceCapabilities\x12\x37\n\x06models\x18\x05 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.ModelR\x06models\x12\x46\n\ngem_config\x18\x06 \x01(\x0b\x32#.gml.internal.api.core.v1.GEMConfigB\x02\x18\x01R\tgemConfig\x12:\n\x07\x64\x65vices\x18\x07 \x03(\x0b\x32 .gml.internal.api.core.v1.DeviceR\x07\x64\x65vices\x12G\n\x0c\x64\x65vice_links\x18\x08 \x03(\x0b\x32$.gml.internal.api.core.v1.DeviceLinkR\x0b\x64\x65viceLinks\"\x97\x04\n\x1bPipelineCompilationResponse\x12Q\n\x08metadata\x18\x01 \x01(\x0b\x32\x35.gml.internal.api.core.v1.PipelineCompilationMetadataR\x08metadata\x12H\n\texec_spec\x18\x02 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecB\x02\x18\x01R\x08\x65xecSpec\x12)\n\x06status\x18\x03 \x01(\x0b\x32\x11.gml.types.StatusR\x06status\x12\x63\n\nexec_specs\x18\x04 \x03(\x0b\x32\x44.gml.internal.api.core.v1.PipelineCompilationResponse.ExecSpecsEntryR\texecSpecs\x12\x64\n\x16\x63ompiled_pipeline_spec\x18\x05 \x01(\x0b\x32..gml.internal.api.core.v1.CompiledPipelineSpecR\x14\x63ompiledPipelineSpec\x1a\x65\n\x0e\x45xecSpecsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12=\n\x05value\x18\x02 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x05value:\x02\x38\x01\"\xf6\x01\n\x06\x44\x65vice\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12]\n\x13\x64\x65vice_capabilities\x18\x02 \x01(\x0b\x32,.gml.internal.api.core.v1.DeviceCapabilitiesR\x12\x64\x65viceCapabilities\x12Q\n\ngem_config\x18\x03 \x01(\x0b\x32#.gml.internal.api.core.v1.GEMConfigB\r\xe2\xde\x1f\tGEMConfigR\tgemConfig\"\xaa\x01\n\nDeviceLink\x12M\n\x10source_device_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0eSourceDeviceIDR\x0esourceDeviceId\x12M\n\x10target_device_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0eTargetDeviceIDR\x0etargetDeviceId\"\xaf\x01\n\x13\x46ragmentGroupUpdate\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12P\n\x11\x66ragment_group_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x13\xe2\xde\x1f\x0f\x46ragmentGroupIDR\x0f\x66ragmentGroupId\"u\n\x1b\x46ragmentGroupReconciliation\x12P\n\x11\x66ragment_group_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x13\xe2\xde\x1f\x0f\x46ragmentGroupIDR\x0f\x66ragmentGroupIdJ\x04\x08\x02\x10\x03\"\xe2\x01\n\x19PipelineDeploymentRequest\x12_\n\x16pipeline_deployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\x12\x64\n\x16\x63ompiled_pipeline_spec\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.CompiledPipelineSpecR\x14\x63ompiledPipelineSpec*\x9f\x03\n\x07\x43PTopic\x12\x14\n\x10\x43P_TOPIC_UNKNOWN\x10\x00\x12\x1d\n\x19\x43P_TOPIC_DEVICE_CONNECTED\x10\x01\x12-\n)CP_TOPIC_PHYSICAL_PIPELINE_RECONCILIATION\x10\x02\x12 \n\x1c\x43P_TOPIC_DEVICE_DISCONNECTED\x10\x03\x12/\n+CP_TOPIC_PIPELINE_DEPLOYMENT_RECONCILIATION\x10\x04\x12\x1a\n\x16\x43P_TOPIC_DEVICE_UPDATE\x10\x05\x12\x1a\n\x16\x43P_TOPIC_DEVICE_CONFIG\x10\x06\x12)\n%CP_TOPIC_PIPELINE_COMPILATION_REQUEST\x10\x07\x12*\n&CP_TOPIC_PIPELINE_COMPILATION_RESPONSE\x10\x08\x12\"\n\x1e\x43P_TOPIC_FRAGMENT_GROUP_UPDATE\x10\t\x12*\n&CP_TOPIC_FRAGMENT_GROUP_RECONCILIATION\x10\nB/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
25
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$src/api/corepb/v1/controlplane.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x19google/protobuf/any.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a)src/api/corepb/v1/compiled_pipeline.proto\x1a\x1fsrc/api/corepb/v1/cp_edge.proto\x1a\"src/api/corepb/v1/gem_config.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a\x1fsrc/common/typespb/status.proto\x1a\"src/api/corepb/v1/model_exec.proto\"\xc4\x01\n\nCPMetadata\x12\x37\n\x05topic\x18\x01 \x01(\x0e\x32!.gml.internal.api.core.v1.CPTopicR\x05topic\x12:\n\tentity_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x45ntityIDR\x08\x65ntityId\x12\x41\n\x0erecv_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rrecvTimestamp\"v\n\tCPMessage\x12@\n\x08metadata\x18\x01 \x01(\x0b\x32$.gml.internal.api.core.v1.CPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"M\n\x0f\x44\x65viceConnected\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"J\n\x0c\x44\x65viceUpdate\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"F\n\x0b\x46leetUpdate\x12\x37\n\x08\x66leet_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\"P\n\x12\x44\x65viceDisconnected\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"\xd8\x01\n\x1ePhysicalPipelineReconciliation\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12Y\n\x14physical_pipeline_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x1f\n\x0b\x66orce_apply\x18\x03 \x01(\x08R\nforceApply\"\xbc\x01\n PipelineDeploymentReconciliation\x12_\n\x16pipeline_deployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\x12\x37\n\x08\x66leet_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\"U\n\x17\x42\x61seConfigUpdateRequest\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"\xdd\x03\n\x1bPipelineCompilationMetadata\x12\x8c\x01\n\x1aphysical_pipeline_metadata\x18\x01 \x01(\x0b\x32N.gml.internal.api.core.v1.PipelineCompilationMetadata.PhysicalPipelineMetadataR\x18physicalPipelineMetadata\x12)\n\x10\x63ompile_revision\x18\x02 \x01(\x03R\x0f\x63ompileRevision\x1a\x83\x02\n\x18PhysicalPipelineMetadata\x12:\n\tentity_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x45ntityIDR\x08\x65ntityId\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12\x30\n\x14\x65ntity_resource_hash\x18\x03 \x01(\tR\x12\x65ntityResourceHash\x12_\n\x16pipeline_deployment_id\x18\x04 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\"\xc8\x05\n\x1aPipelineCompilationRequest\x12Q\n\x08metadata\x18\x01 \x01(\x0b\x32\x35.gml.internal.api.core.v1.PipelineCompilationMetadataR\x08metadata\x12V\n\x13logical_pipeline_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12T\n\x10logical_pipeline\x18\x03 \x01(\x0b\x32).gml.internal.api.core.v1.LogicalPipelineR\x0flogicalPipeline\x12\x61\n\x13\x64\x65vice_capabilities\x18\x04 \x01(\x0b\x32,.gml.internal.api.core.v1.DeviceCapabilitiesB\x02\x18\x01R\x12\x64\x65viceCapabilities\x12\x37\n\x06models\x18\x05 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.ModelR\x06models\x12\x46\n\ngem_config\x18\x06 \x01(\x0b\x32#.gml.internal.api.core.v1.GEMConfigB\x02\x18\x01R\tgemConfig\x12:\n\x07\x64\x65vices\x18\x07 \x03(\x0b\x32 .gml.internal.api.core.v1.DeviceR\x07\x64\x65vices\x12G\n\x0c\x64\x65vice_links\x18\x08 \x03(\x0b\x32$.gml.internal.api.core.v1.DeviceLinkR\x0b\x64\x65viceLinks\x12@\n\x0b\x65ndpoint_id\x18\t \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nEndpointIDR\nendpointId\"\x97\x04\n\x1bPipelineCompilationResponse\x12Q\n\x08metadata\x18\x01 \x01(\x0b\x32\x35.gml.internal.api.core.v1.PipelineCompilationMetadataR\x08metadata\x12H\n\texec_spec\x18\x02 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecB\x02\x18\x01R\x08\x65xecSpec\x12)\n\x06status\x18\x03 \x01(\x0b\x32\x11.gml.types.StatusR\x06status\x12\x63\n\nexec_specs\x18\x04 \x03(\x0b\x32\x44.gml.internal.api.core.v1.PipelineCompilationResponse.ExecSpecsEntryR\texecSpecs\x12\x64\n\x16\x63ompiled_pipeline_spec\x18\x05 \x01(\x0b\x32..gml.internal.api.core.v1.CompiledPipelineSpecR\x14\x63ompiledPipelineSpec\x1a\x65\n\x0e\x45xecSpecsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12=\n\x05value\x18\x02 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x05value:\x02\x38\x01\"\xf6\x01\n\x06\x44\x65vice\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12]\n\x13\x64\x65vice_capabilities\x18\x02 \x01(\x0b\x32,.gml.internal.api.core.v1.DeviceCapabilitiesR\x12\x64\x65viceCapabilities\x12Q\n\ngem_config\x18\x03 \x01(\x0b\x32#.gml.internal.api.core.v1.GEMConfigB\r\xe2\xde\x1f\tGEMConfigR\tgemConfig\"\xaa\x01\n\nDeviceLink\x12M\n\x10source_device_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0eSourceDeviceIDR\x0esourceDeviceId\x12M\n\x10target_device_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0eTargetDeviceIDR\x0etargetDeviceId\"\xaf\x01\n\x13\x46ragmentGroupUpdate\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12P\n\x11\x66ragment_group_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x13\xe2\xde\x1f\x0f\x46ragmentGroupIDR\x0f\x66ragmentGroupId\"u\n\x1b\x46ragmentGroupReconciliation\x12P\n\x11\x66ragment_group_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x13\xe2\xde\x1f\x0f\x46ragmentGroupIDR\x0f\x66ragmentGroupIdJ\x04\x08\x02\x10\x03*\x9f\x03\n\x07\x43PTopic\x12\x14\n\x10\x43P_TOPIC_UNKNOWN\x10\x00\x12\x1d\n\x19\x43P_TOPIC_DEVICE_CONNECTED\x10\x01\x12-\n)CP_TOPIC_PHYSICAL_PIPELINE_RECONCILIATION\x10\x02\x12 \n\x1c\x43P_TOPIC_DEVICE_DISCONNECTED\x10\x03\x12/\n+CP_TOPIC_PIPELINE_DEPLOYMENT_RECONCILIATION\x10\x04\x12\x1a\n\x16\x43P_TOPIC_DEVICE_UPDATE\x10\x05\x12\x1a\n\x16\x43P_TOPIC_DEVICE_CONFIG\x10\x06\x12)\n%CP_TOPIC_PIPELINE_COMPILATION_REQUEST\x10\x07\x12*\n&CP_TOPIC_PIPELINE_COMPILATION_RESPONSE\x10\x08\x12\"\n\x1e\x43P_TOPIC_FRAGMENT_GROUP_UPDATE\x10\t\x12*\n&CP_TOPIC_FRAGMENT_GROUP_RECONCILIATION\x10\nB/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
26
26
 
27
27
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
28
28
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.controlplane_pb2', globals())
@@ -36,6 +36,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
36
36
  _DEVICECONNECTED.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
37
37
  _DEVICEUPDATE.fields_by_name['device_id']._options = None
38
38
  _DEVICEUPDATE.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
39
+ _FLEETUPDATE.fields_by_name['fleet_id']._options = None
40
+ _FLEETUPDATE.fields_by_name['fleet_id']._serialized_options = b'\342\336\037\007FleetID'
39
41
  _DEVICEDISCONNECTED.fields_by_name['device_id']._options = None
40
42
  _DEVICEDISCONNECTED.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
41
43
  _PHYSICALPIPELINERECONCILIATION.fields_by_name['device_id']._options = None
@@ -58,6 +60,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
58
60
  _PIPELINECOMPILATIONREQUEST.fields_by_name['device_capabilities']._serialized_options = b'\030\001'
59
61
  _PIPELINECOMPILATIONREQUEST.fields_by_name['gem_config']._options = None
60
62
  _PIPELINECOMPILATIONREQUEST.fields_by_name['gem_config']._serialized_options = b'\030\001'
63
+ _PIPELINECOMPILATIONREQUEST.fields_by_name['endpoint_id']._options = None
64
+ _PIPELINECOMPILATIONREQUEST.fields_by_name['endpoint_id']._serialized_options = b'\342\336\037\nEndpointID'
61
65
  _PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._options = None
62
66
  _PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._serialized_options = b'8\001'
63
67
  _PIPELINECOMPILATIONRESPONSE.fields_by_name['exec_spec']._options = None
@@ -76,10 +80,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
76
80
  _FRAGMENTGROUPUPDATE.fields_by_name['fragment_group_id']._serialized_options = b'\342\336\037\017FragmentGroupID'
77
81
  _FRAGMENTGROUPRECONCILIATION.fields_by_name['fragment_group_id']._options = None
78
82
  _FRAGMENTGROUPRECONCILIATION.fields_by_name['fragment_group_id']._serialized_options = b'\342\336\037\017FragmentGroupID'
79
- _PIPELINEDEPLOYMENTREQUEST.fields_by_name['pipeline_deployment_id']._options = None
80
- _PIPELINEDEPLOYMENTREQUEST.fields_by_name['pipeline_deployment_id']._serialized_options = b'\342\336\037\024PipelineDeploymentID'
81
- _CPTOPIC._serialized_start=4029
82
- _CPTOPIC._serialized_end=4444
83
+ _CPTOPIC._serialized_start=3938
84
+ _CPTOPIC._serialized_end=4353
83
85
  _CPMETADATA._serialized_start=361
84
86
  _CPMETADATA._serialized_end=557
85
87
  _CPMESSAGE._serialized_start=559
@@ -88,32 +90,32 @@ if _descriptor._USE_C_DESCRIPTORS == False:
88
90
  _DEVICECONNECTED._serialized_end=756
89
91
  _DEVICEUPDATE._serialized_start=758
90
92
  _DEVICEUPDATE._serialized_end=832
91
- _DEVICEDISCONNECTED._serialized_start=834
92
- _DEVICEDISCONNECTED._serialized_end=914
93
- _PHYSICALPIPELINERECONCILIATION._serialized_start=917
94
- _PHYSICALPIPELINERECONCILIATION._serialized_end=1133
95
- _PIPELINEDEPLOYMENTRECONCILIATION._serialized_start=1136
96
- _PIPELINEDEPLOYMENTRECONCILIATION._serialized_end=1324
97
- _BASECONFIGUPDATEREQUEST._serialized_start=1326
98
- _BASECONFIGUPDATEREQUEST._serialized_end=1411
99
- _PIPELINECOMPILATIONMETADATA._serialized_start=1414
100
- _PIPELINECOMPILATIONMETADATA._serialized_end=1891
101
- _PIPELINECOMPILATIONMETADATA_PHYSICALPIPELINEMETADATA._serialized_start=1632
102
- _PIPELINECOMPILATIONMETADATA_PHYSICALPIPELINEMETADATA._serialized_end=1891
103
- _PIPELINECOMPILATIONREQUEST._serialized_start=1894
104
- _PIPELINECOMPILATIONREQUEST._serialized_end=2540
105
- _PIPELINECOMPILATIONRESPONSE._serialized_start=2543
106
- _PIPELINECOMPILATIONRESPONSE._serialized_end=3078
107
- _PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._serialized_start=2977
108
- _PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._serialized_end=3078
109
- _DEVICE._serialized_start=3081
110
- _DEVICE._serialized_end=3327
111
- _DEVICELINK._serialized_start=3330
112
- _DEVICELINK._serialized_end=3500
113
- _FRAGMENTGROUPUPDATE._serialized_start=3503
114
- _FRAGMENTGROUPUPDATE._serialized_end=3678
115
- _FRAGMENTGROUPRECONCILIATION._serialized_start=3680
116
- _FRAGMENTGROUPRECONCILIATION._serialized_end=3797
117
- _PIPELINEDEPLOYMENTREQUEST._serialized_start=3800
118
- _PIPELINEDEPLOYMENTREQUEST._serialized_end=4026
93
+ _FLEETUPDATE._serialized_start=834
94
+ _FLEETUPDATE._serialized_end=904
95
+ _DEVICEDISCONNECTED._serialized_start=906
96
+ _DEVICEDISCONNECTED._serialized_end=986
97
+ _PHYSICALPIPELINERECONCILIATION._serialized_start=989
98
+ _PHYSICALPIPELINERECONCILIATION._serialized_end=1205
99
+ _PIPELINEDEPLOYMENTRECONCILIATION._serialized_start=1208
100
+ _PIPELINEDEPLOYMENTRECONCILIATION._serialized_end=1396
101
+ _BASECONFIGUPDATEREQUEST._serialized_start=1398
102
+ _BASECONFIGUPDATEREQUEST._serialized_end=1483
103
+ _PIPELINECOMPILATIONMETADATA._serialized_start=1486
104
+ _PIPELINECOMPILATIONMETADATA._serialized_end=1963
105
+ _PIPELINECOMPILATIONMETADATA_PHYSICALPIPELINEMETADATA._serialized_start=1704
106
+ _PIPELINECOMPILATIONMETADATA_PHYSICALPIPELINEMETADATA._serialized_end=1963
107
+ _PIPELINECOMPILATIONREQUEST._serialized_start=1966
108
+ _PIPELINECOMPILATIONREQUEST._serialized_end=2678
109
+ _PIPELINECOMPILATIONRESPONSE._serialized_start=2681
110
+ _PIPELINECOMPILATIONRESPONSE._serialized_end=3216
111
+ _PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._serialized_start=3115
112
+ _PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._serialized_end=3216
113
+ _DEVICE._serialized_start=3219
114
+ _DEVICE._serialized_end=3465
115
+ _DEVICELINK._serialized_start=3468
116
+ _DEVICELINK._serialized_end=3638
117
+ _FRAGMENTGROUPUPDATE._serialized_start=3641
118
+ _FRAGMENTGROUPUPDATE._serialized_end=3816
119
+ _FRAGMENTGROUPRECONCILIATION._serialized_start=3818
120
+ _FRAGMENTGROUPRECONCILIATION._serialized_end=3935
119
121
  # @@protoc_insertion_point(module_scope)