gimlet-api 0.0.12__py3-none-any.whl → 0.0.14__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.
- {gimlet_api-0.0.12.dist-info → gimlet_api-0.0.14.dist-info}/METADATA +3 -2
- {gimlet_api-0.0.12.dist-info → gimlet_api-0.0.14.dist-info}/RECORD +27 -24
- gml/client.py +71 -26
- gml/compile.py +16 -12
- gml/device.py +2 -2
- gml/hf.py +100 -63
- gml/model_utils.py +10 -1
- gml/pipelines.py +22 -6
- gml/proto/opentelemetry/proto/common/v1/common_pb2.py +3 -1
- gml/proto/opentelemetry/proto/resource/v1/resource_pb2.py +2 -2
- gml/proto/src/api/corepb/v1/controlplane_pb2.py +50 -39
- gml/proto/src/api/corepb/v1/cp_dp_pb2.py +88 -0
- gml/proto/src/api/corepb/v1/cp_edge_pb2.py +116 -69
- gml/proto/src/api/corepb/v1/dataplane_pb2.py +33 -0
- gml/proto/src/api/corepb/v1/deployed_pipeline_pb2.py +31 -7
- gml/proto/src/api/corepb/v1/device_info_pb2.py +19 -17
- gml/proto/src/api/corepb/v1/mediastream_pb2.py +15 -3
- gml/proto/src/api/corepb/v1/model_exec_pb2.py +123 -103
- gml/proto/src/controlplane/compiler/cpb/v1/cpb_pb2.py +10 -8
- gml/proto/src/controlplane/directory/directorypb/v1/directory_pb2.py +50 -50
- gml/proto/src/controlplane/logicalpipeline/lppb/v1/lppb_pb2.py +31 -24
- gml/proto/src/controlplane/logicalpipeline/lppb/v1/lppb_pb2_grpc.py +33 -0
- gml/proto/src/controlplane/model/mpb/v1/mpb_pb2.py +17 -11
- gml/proto/src/controlplane/model/mpb/v1/mpb_pb2_grpc.py +33 -0
- gml/tensor.py +7 -0
- gml/version_utils.py +43 -0
- {gimlet_api-0.0.12.dist-info → gimlet_api-0.0.14.dist-info}/WHEEL +0 -0
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
|
|
@@ -172,16 +174,21 @@ nodes:
|
|
172
174
|
"""
|
173
175
|
|
174
176
|
|
177
|
+
def escape_prompt(s: str) -> str:
|
178
|
+
"""Properly escape a string for YAML using the yaml library."""
|
179
|
+
return yaml.dump(s, default_style='"').rstrip("\n")
|
180
|
+
|
181
|
+
|
175
182
|
class LiveChatPipeline(Pipeline):
|
176
183
|
def __init__(
|
177
184
|
self,
|
178
|
-
|
179
|
-
preset_system_prompt: str = r"'<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n\nYou are a helpful assistant<|eot_id|>'",
|
185
|
+
system_prompt: str = "<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n\nYou are a helpful assistant<|eot_id|>",
|
180
186
|
add_generation_prompt: bool = True,
|
187
|
+
message_template_override: str = "",
|
181
188
|
):
|
182
189
|
self.add_generation_prompt = add_generation_prompt
|
183
|
-
self.
|
184
|
-
self.
|
190
|
+
self.message_template_override = message_template_override
|
191
|
+
self.system_prompt = system_prompt
|
185
192
|
|
186
193
|
def to_yaml(self, models: List[Model], org_name: str) -> str:
|
187
194
|
if len(models) != 2:
|
@@ -199,6 +206,15 @@ class LiveChatPipeline(Pipeline):
|
|
199
206
|
raise ValueError(
|
200
207
|
"LiveChatPipeline expects both a tokenizer model and a language model)"
|
201
208
|
)
|
209
|
+
message_template = None
|
210
|
+
if self.message_template_override:
|
211
|
+
message_template = self.message_template_override
|
212
|
+
elif hasattr(tokenizer.tokenizer, "chat_template"):
|
213
|
+
message_template = tokenizer.tokenizer.chat_template
|
214
|
+
if message_template is None:
|
215
|
+
raise ValueError(
|
216
|
+
"Tokenizer model does not have a chat template defined. Please provide a message_template_override."
|
217
|
+
)
|
202
218
|
return f"""---
|
203
219
|
nodes:
|
204
220
|
- name: text_source
|
@@ -209,8 +225,8 @@ nodes:
|
|
209
225
|
kind: TemplateChatMessage
|
210
226
|
attributes:
|
211
227
|
add_generation_prompt: {self.add_generation_prompt}
|
212
|
-
message_template: {
|
213
|
-
preset_system_prompt: {self.
|
228
|
+
message_template: {escape_prompt(message_template)}
|
229
|
+
preset_system_prompt: {escape_prompt(self.system_prompt)}
|
214
230
|
inputs:
|
215
231
|
query: .text_source.prompt
|
216
232
|
outputs:
|
@@ -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\
|
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\"\
|
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=
|
26
|
+
_RESOURCE._serialized_end=344
|
27
27
|
# @@protoc_insertion_point(module_scope)
|
@@ -14,6 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
14
14
|
from gml.proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
15
15
|
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
|
16
16
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
17
|
+
from gml.proto.src.api.corepb.v1 import compiled_pipeline_pb2 as src_dot_api_dot_corepb_dot_v1_dot_compiled__pipeline__pb2
|
17
18
|
from gml.proto.src.api.corepb.v1 import cp_edge_pb2 as src_dot_api_dot_corepb_dot_v1_dot_cp__edge__pb2
|
18
19
|
from gml.proto.src.api.corepb.v1 import gem_config_pb2 as src_dot_api_dot_corepb_dot_v1_dot_gem__config__pb2
|
19
20
|
from gml.proto.src.common.typespb import uuid_pb2 as src_dot_common_dot_typespb_dot_uuid__pb2
|
@@ -21,7 +22,7 @@ from gml.proto.src.common.typespb import status_pb2 as src_dot_common_dot_typesp
|
|
21
22
|
from gml.proto.src.api.corepb.v1 import model_exec_pb2 as src_dot_api_dot_corepb_dot_v1_dot_model__exec__pb2
|
22
23
|
|
23
24
|
|
24
|
-
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\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\"\
|
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')
|
25
26
|
|
26
27
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
27
28
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.controlplane_pb2', globals())
|
@@ -35,6 +36,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
35
36
|
_DEVICECONNECTED.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
36
37
|
_DEVICEUPDATE.fields_by_name['device_id']._options = None
|
37
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'
|
38
41
|
_DEVICEDISCONNECTED.fields_by_name['device_id']._options = None
|
39
42
|
_DEVICEDISCONNECTED.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
40
43
|
_PHYSICALPIPELINERECONCILIATION.fields_by_name['device_id']._options = None
|
@@ -57,6 +60,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
57
60
|
_PIPELINECOMPILATIONREQUEST.fields_by_name['device_capabilities']._serialized_options = b'\030\001'
|
58
61
|
_PIPELINECOMPILATIONREQUEST.fields_by_name['gem_config']._options = None
|
59
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'
|
60
65
|
_PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._options = None
|
61
66
|
_PIPELINECOMPILATIONRESPONSE_EXECSPECSENTRY._serialized_options = b'8\001'
|
62
67
|
_PIPELINECOMPILATIONRESPONSE.fields_by_name['exec_spec']._options = None
|
@@ -69,42 +74,48 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
69
74
|
_DEVICELINK.fields_by_name['source_device_id']._serialized_options = b'\342\336\037\016SourceDeviceID'
|
70
75
|
_DEVICELINK.fields_by_name['target_device_id']._options = None
|
71
76
|
_DEVICELINK.fields_by_name['target_device_id']._serialized_options = b'\342\336\037\016TargetDeviceID'
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
77
|
+
_FRAGMENTGROUPUPDATE.fields_by_name['deployment_id']._options = None
|
78
|
+
_FRAGMENTGROUPUPDATE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
79
|
+
_FRAGMENTGROUPUPDATE.fields_by_name['fragment_group_id']._options = None
|
80
|
+
_FRAGMENTGROUPUPDATE.fields_by_name['fragment_group_id']._serialized_options = b'\342\336\037\017FragmentGroupID'
|
81
|
+
_FRAGMENTGROUPRECONCILIATION.fields_by_name['fragment_group_id']._options = None
|
82
|
+
_FRAGMENTGROUPRECONCILIATION.fields_by_name['fragment_group_id']._serialized_options = b'\342\336\037\017FragmentGroupID'
|
83
|
+
_CPTOPIC._serialized_start=3938
|
84
|
+
_CPTOPIC._serialized_end=4353
|
85
|
+
_CPMETADATA._serialized_start=361
|
86
|
+
_CPMETADATA._serialized_end=557
|
87
|
+
_CPMESSAGE._serialized_start=559
|
88
|
+
_CPMESSAGE._serialized_end=677
|
89
|
+
_DEVICECONNECTED._serialized_start=679
|
90
|
+
_DEVICECONNECTED._serialized_end=756
|
91
|
+
_DEVICEUPDATE._serialized_start=758
|
92
|
+
_DEVICEUPDATE._serialized_end=832
|
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
|
110
121
|
# @@protoc_insertion_point(module_scope)
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: src/api/corepb/v1/cp_dp.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.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
15
|
+
from google.protobuf import any_pb2 as google_dot_protobuf_dot_any__pb2
|
16
|
+
from gml.proto.src.common.typespb import uuid_pb2 as src_dot_common_dot_typespb_dot_uuid__pb2
|
17
|
+
from gml.proto.src.common.typespb import status_pb2 as src_dot_common_dot_typespb_dot_status__pb2
|
18
|
+
from gml.proto.src.api.corepb.v1 import model_exec_pb2 as src_dot_api_dot_corepb_dot_v1_dot_model__exec__pb2
|
19
|
+
from gml.proto.src.api.corepb.v1 import compiled_pipeline_pb2 as src_dot_api_dot_corepb_dot_v1_dot_compiled__pipeline__pb2
|
20
|
+
|
21
|
+
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dsrc/api/corepb/v1/cp_dp.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x19google/protobuf/any.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a\x1fsrc/common/typespb/status.proto\x1a\"src/api/corepb/v1/model_exec.proto\x1a)src/api/corepb/v1/compiled_pipeline.proto\"\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\"\xf1\x03\n\x1cPipelineDeploymentSpecUpdate\x12_\n\x16pipeline_deployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\x12=\n\x05state\x18\x02 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12V\n\x13logical_pipeline_id\x18\x04 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12T\n\x10logical_pipeline\x18\x05 \x01(\x0b\x32).gml.internal.api.core.v1.LogicalPipelineR\x0flogicalPipeline\x12;\n\x06models\x18\x06 \x03(\x0b\x32#.gml.internal.api.core.v1.ModelInfoR\x06models\x12@\n\x0b\x65ndpoint_id\x18\x07 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nEndpointIDR\nendpointIdJ\x04\x08\x03\x10\x04\"\xaa\x01\n\x14WorkloadStatusUpdate\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12J\n\x06status\x18\x02 \x01(\x0b\x32\x32.gml.internal.api.core.v1.PipelineDeploymentStatusR\x06status\"\xbb\x02\n\x1cPipelineFragmentStatusUpdate\x12@\n\x0b\x66ragment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x46\n\rdeployment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12:\n\tdevice_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12=\n\x05state\x18\x04 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x16\n\x06reason\x18\x05 \x01(\tR\x06reason\"\x14\n\x12\x44\x61taplaneHeartbeat\"G\n\x0c\x44PCPMetadata\x12\x37\n\x08\x66leet_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\"z\n\x0b\x44PCPMessage\x12\x42\n\x08metadata\x18\x01 \x01(\x0b\x32&.gml.internal.api.core.v1.DPCPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"G\n\x0c\x43PDPMetadata\x12\x37\n\x08\x66leet_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\"z\n\x0b\x43PDPMessage\x12\x42\n\x08metadata\x18\x01 \x01(\x0b\x32&.gml.internal.api.core.v1.CPDPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"P\n\x0cStartSession\x12@\n\x0b\x65ndpoint_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nEndpointIDR\nendpointId\"\r\n\x0bStopSession\"D\n\x0e\x46orwardMessage\x12\x32\n\x0cjson_message\x18\x01 \x01(\tB\x0f\xe2\xde\x1f\x0bJSONMessageR\x0bjsonMessage\"\xdf\x02\n\x14\x45ndpointProxyRequest\x12M\n\x10proxy_session_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0eProxySessionIDR\x0eproxySessionId\x12M\n\rstart_session\x18\x02 \x01(\x0b\x32&.gml.internal.api.core.v1.StartSessionH\x00R\x0cstartSession\x12J\n\x0cstop_session\x18\x03 \x01(\x0b\x32%.gml.internal.api.core.v1.StopSessionH\x00R\x0bstopSession\x12S\n\x0f\x66orward_message\x18\x04 \x01(\x0b\x32(.gml.internal.api.core.v1.ForwardMessageH\x00R\x0e\x66orwardMessageB\x08\n\x06\x61\x63tion\"\x0b\n\tHeartbeat\"\xb9\x02\n\x15\x45ndpointProxyResponse\x12M\n\x10proxy_session_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0eProxySessionIDR\x0eproxySessionId\x12S\n\x0f\x66orward_message\x18\x02 \x01(\x0b\x32(.gml.internal.api.core.v1.ForwardMessageH\x00R\x0e\x66orwardMessage\x12+\n\x06status\x18\x03 \x01(\x0b\x32\x11.gml.types.StatusH\x00R\x06status\x12\x43\n\theartbeat\x18\x04 \x01(\x0b\x32#.gml.internal.api.core.v1.HeartbeatH\x00R\theartbeatB\n\n\x08responseB/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
23
|
+
|
24
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
25
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.cp_dp_pb2', globals())
|
26
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
27
|
+
|
28
|
+
DESCRIPTOR._options = None
|
29
|
+
DESCRIPTOR._serialized_options = b'Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepb'
|
30
|
+
_PIPELINEDEPLOYMENTREQUEST.fields_by_name['pipeline_deployment_id']._options = None
|
31
|
+
_PIPELINEDEPLOYMENTREQUEST.fields_by_name['pipeline_deployment_id']._serialized_options = b'\342\336\037\024PipelineDeploymentID'
|
32
|
+
_PIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['pipeline_deployment_id']._options = None
|
33
|
+
_PIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['pipeline_deployment_id']._serialized_options = b'\342\336\037\024PipelineDeploymentID'
|
34
|
+
_PIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['logical_pipeline_id']._options = None
|
35
|
+
_PIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['logical_pipeline_id']._serialized_options = b'\342\336\037\021LogicalPipelineID'
|
36
|
+
_PIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['endpoint_id']._options = None
|
37
|
+
_PIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['endpoint_id']._serialized_options = b'\342\336\037\nEndpointID'
|
38
|
+
_WORKLOADSTATUSUPDATE.fields_by_name['deployment_id']._options = None
|
39
|
+
_WORKLOADSTATUSUPDATE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
40
|
+
_PIPELINEFRAGMENTSTATUSUPDATE.fields_by_name['fragment_id']._options = None
|
41
|
+
_PIPELINEFRAGMENTSTATUSUPDATE.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
42
|
+
_PIPELINEFRAGMENTSTATUSUPDATE.fields_by_name['deployment_id']._options = None
|
43
|
+
_PIPELINEFRAGMENTSTATUSUPDATE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
44
|
+
_PIPELINEFRAGMENTSTATUSUPDATE.fields_by_name['device_id']._options = None
|
45
|
+
_PIPELINEFRAGMENTSTATUSUPDATE.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
46
|
+
_DPCPMETADATA.fields_by_name['fleet_id']._options = None
|
47
|
+
_DPCPMETADATA.fields_by_name['fleet_id']._serialized_options = b'\342\336\037\007FleetID'
|
48
|
+
_CPDPMETADATA.fields_by_name['fleet_id']._options = None
|
49
|
+
_CPDPMETADATA.fields_by_name['fleet_id']._serialized_options = b'\342\336\037\007FleetID'
|
50
|
+
_STARTSESSION.fields_by_name['endpoint_id']._options = None
|
51
|
+
_STARTSESSION.fields_by_name['endpoint_id']._serialized_options = b'\342\336\037\nEndpointID'
|
52
|
+
_FORWARDMESSAGE.fields_by_name['json_message']._options = None
|
53
|
+
_FORWARDMESSAGE.fields_by_name['json_message']._serialized_options = b'\342\336\037\013JSONMessage'
|
54
|
+
_ENDPOINTPROXYREQUEST.fields_by_name['proxy_session_id']._options = None
|
55
|
+
_ENDPOINTPROXYREQUEST.fields_by_name['proxy_session_id']._serialized_options = b'\342\336\037\016ProxySessionID'
|
56
|
+
_ENDPOINTPROXYRESPONSE.fields_by_name['proxy_session_id']._options = None
|
57
|
+
_ENDPOINTPROXYRESPONSE.fields_by_name['proxy_session_id']._serialized_options = b'\342\336\037\016ProxySessionID'
|
58
|
+
_PIPELINEDEPLOYMENTREQUEST._serialized_start=252
|
59
|
+
_PIPELINEDEPLOYMENTREQUEST._serialized_end=478
|
60
|
+
_PIPELINEDEPLOYMENTSPECUPDATE._serialized_start=481
|
61
|
+
_PIPELINEDEPLOYMENTSPECUPDATE._serialized_end=978
|
62
|
+
_WORKLOADSTATUSUPDATE._serialized_start=981
|
63
|
+
_WORKLOADSTATUSUPDATE._serialized_end=1151
|
64
|
+
_PIPELINEFRAGMENTSTATUSUPDATE._serialized_start=1154
|
65
|
+
_PIPELINEFRAGMENTSTATUSUPDATE._serialized_end=1469
|
66
|
+
_DATAPLANEHEARTBEAT._serialized_start=1471
|
67
|
+
_DATAPLANEHEARTBEAT._serialized_end=1491
|
68
|
+
_DPCPMETADATA._serialized_start=1493
|
69
|
+
_DPCPMETADATA._serialized_end=1564
|
70
|
+
_DPCPMESSAGE._serialized_start=1566
|
71
|
+
_DPCPMESSAGE._serialized_end=1688
|
72
|
+
_CPDPMETADATA._serialized_start=1690
|
73
|
+
_CPDPMETADATA._serialized_end=1761
|
74
|
+
_CPDPMESSAGE._serialized_start=1763
|
75
|
+
_CPDPMESSAGE._serialized_end=1885
|
76
|
+
_STARTSESSION._serialized_start=1887
|
77
|
+
_STARTSESSION._serialized_end=1967
|
78
|
+
_STOPSESSION._serialized_start=1969
|
79
|
+
_STOPSESSION._serialized_end=1982
|
80
|
+
_FORWARDMESSAGE._serialized_start=1984
|
81
|
+
_FORWARDMESSAGE._serialized_end=2052
|
82
|
+
_ENDPOINTPROXYREQUEST._serialized_start=2055
|
83
|
+
_ENDPOINTPROXYREQUEST._serialized_end=2406
|
84
|
+
_HEARTBEAT._serialized_start=2408
|
85
|
+
_HEARTBEAT._serialized_end=2419
|
86
|
+
_ENDPOINTPROXYRESPONSE._serialized_start=2422
|
87
|
+
_ENDPOINTPROXYRESPONSE._serialized_end=2735
|
88
|
+
# @@protoc_insertion_point(module_scope)
|
@@ -20,9 +20,12 @@ from gml.proto.opentelemetry.proto.metrics.v1 import metrics_pb2 as opentelemetr
|
|
20
20
|
from gml.proto.src.api.corepb.v1 import device_info_pb2 as src_dot_api_dot_corepb_dot_v1_dot_device__info__pb2
|
21
21
|
from gml.proto.src.api.corepb.v1 import model_exec_pb2 as src_dot_api_dot_corepb_dot_v1_dot_model__exec__pb2
|
22
22
|
from gml.proto.src.api.corepb.v1 import gem_config_pb2 as src_dot_api_dot_corepb_dot_v1_dot_gem__config__pb2
|
23
|
+
from gml.proto.src.api.corepb.v1 import deployed_pipeline_pb2 as src_dot_api_dot_corepb_dot_v1_dot_deployed__pipeline__pb2
|
24
|
+
from gml.proto.src.api.corepb.v1 import compiled_pipeline_pb2 as src_dot_api_dot_corepb_dot_v1_dot_compiled__pipeline__pb2
|
25
|
+
from gml.proto.src.api.corepb.v1 import mediastream_pb2 as src_dot_api_dot_corepb_dot_v1_dot_mediastream__pb2
|
23
26
|
|
24
27
|
|
25
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1fsrc/api/corepb/v1/cp_edge.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a\x1fsrc/common/typespb/status.proto\x1a\x19google/protobuf/any.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a,opentelemetry/proto/metrics/v1/metrics.proto\x1a#src/api/corepb/v1/device_info.proto\x1a\"src/api/corepb/v1/model_exec.proto\x1a\"src/api/corepb/v1/gem_config.proto\"1\n\rEdgeHeartbeat\x12 \n\x06seq_id\x18\x01 \x01(\x03\x42\t\xe2\xde\x1f\x05SeqIDR\x05seqId\"4\n\x10\x45\x64geHeartbeatAck\x12 \n\x06seq_id\x18\x01 \x01(\x03\x42\t\xe2\xde\x1f\x05SeqIDR\x05seqId\"\xbb\x01\n\x1aPhysicalPipelineSpecUpdate\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x42\n\x04spec\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.PhysicalPipelineSpecR\x04spec\"\xdd\x01\n\x1cPhysicalPipelineStatusUpdate\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12H\n\x06status\x18\x03 \x01(\x0b\x32\x30.gml.internal.api.core.v1.PhysicalPipelineStatusR\x06status\"\x0c\n\nCPRunModel\"\x0f\n\rCPRunModelAck\"\xb2\x01\n\x12\x45xecutionGraphSpec\x12=\n\x05graph\x18\x01 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x05graph\x12\x43\n\x05state\x18\x02 \x01(\x0e\x32-.gml.internal.api.core.v1.ExecutionGraphStateR\x05state\x12\x18\n\x07version\x18\x03 \x01(\x03R\x07version\"\x8d\x01\n\x14\x45xecutionGraphStatus\x12\x43\n\x05state\x18\x01 \x01(\x0e\x32-.gml.internal.api.core.v1.ExecutionGraphStateR\x05state\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reason\x12\x18\n\x07version\x18\x03 \x01(\x03R\x07version\"\x8a\x02\n\x13\x41pplyExecutionGraph\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12V\n\x13logical_pipeline_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12@\n\x04spec\x18\x02 \x01(\x0b\x32,.gml.internal.api.core.v1.ExecutionGraphSpecR\x04spec\"q\n\x14\x44\x65leteExecutionGraph\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\"\xbf\x01\n\x1a\x45xecutionGraphStatusUpdate\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x46\n\x06status\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.ExecutionGraphStatusR\x06status\"\x12\n\x10MediaStreamStart\"\x11\n\x0fMediaStreamStop\"\x16\n\x14MediaStreamKeepAlive\"q\n\x12MediaStreamControl\x12[\n\x13text_stream_control\x18\x01 \x01(\x0b\x32+.gml.internal.api.core.v1.TextStreamControlR\x11textStreamControl\"\x95\x01\n\x11TextStreamControl\x12\x16\n\x06prompt\x18\x01 \x01(\tR\x06prompt\x12\x34\n\x07\x63onv_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x43onvIDR\x06\x63onvId\x12\x32\n\x15max_completion_tokens\x18\x03 \x01(\x03R\x13maxCompletionTokens\"\x7f\n\x18\x45\x64geCPMediaStreamMessage\x12:\n\tstream_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08StreamIDR\x08streamId\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"\x7f\n\x18\x43PEdgeMediaStreamMessage\x12:\n\tstream_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08StreamIDR\x08streamId\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"m\n\x0f\x45\x64geOTelMetrics\x12Z\n\x10resource_metrics\x18\x01 \x01(\x0b\x32/.opentelemetry.proto.metrics.v1.ResourceMetricsR\x0fresourceMetrics\"\x94\x01\n\x13\x46ileTransferRequest\x12\x34\n\x07\x66ile_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x46ileIDR\x06\x66ileId\x12*\n\x11\x63hunk_start_bytes\x18\x02 \x01(\x03R\x0f\x63hunkStartBytes\x12\x1b\n\tnum_bytes\x18\x03 \x01(\x03R\x08numBytes\"\x8f\x02\n\x14\x46ileTransferResponse\x12)\n\x06status\x18\x01 \x01(\x0b\x32\x11.gml.types.StatusR\x06status\x12N\n\x05\x63hunk\x18\x02 \x01(\x0b\x32\x38.gml.internal.api.core.v1.FileTransferResponse.FileChunkR\x05\x63hunk\x12\x34\n\x07\x66ile_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x46ileIDR\x06\x66ileId\x1a\x46\n\tFileChunk\x12\x1f\n\x0bstart_bytes\x18\x01 \x01(\x03R\nstartBytes\x12\x18\n\x07payload\x18\x02 \x01(\x0cR\x07payload\"\xc9\x02\n\x12\x44\x65viceCapabilities\x12Q\n\x0emodel_runtimes\x18\x01 \x03(\x0b\x32*.gml.internal.api.core.v1.ModelRuntimeInfoR\rmodelRuntimes\x12>\n\x07\x63\x61meras\x18\x02 \x03(\x0b\x32$.gml.internal.api.core.v1.CameraInfoR\x07\x63\x61meras\x12Q\n\x0e\x63\x61mera_drivers\x18\x03 \x03(\x0b\x32*.gml.internal.api.core.v1.CameraDriverInfoR\rcameraDrivers\x12M\n\x0c\x61\x63\x63\x65lerators\x18\x04 \x03(\x0b\x32).gml.internal.api.core.v1.AcceleratorInfoR\x0c\x61\x63\x63\x65lerators\"\x89\x01\n\x17\x44\x65viceConfigStateUpdate\x12>\n\x05state\x18\x01 \x01(\x0b\x32(.gml.internal.api.core.v1.GEMConfigStateR\x05state\x12.\n\x13\x62\x61se_config_version\x18\x02 \x01(\x03R\x11\x62\x61seConfigVersion\"o\n\x16\x44\x65viceBaseConfigUpdate\x12;\n\x06\x63onfig\x18\x01 \x01(\x0b\x32#.gml.internal.api.core.v1.GEMConfigR\x06\x63onfig\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\"\xcc\x01\n\x0e\x45\x64geCPMetadata\x12;\n\x05topic\x18\x01 \x01(\x0e\x32%.gml.internal.api.core.v1.EdgeCPTopicR\x05topic\x12:\n\tdevice_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x41\n\x0erecv_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rrecvTimestamp\"~\n\rEdgeCPMessage\x12\x44\n\x08metadata\x18\x01 \x01(\x0b\x32(.gml.internal.api.core.v1.EdgeCPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"\xcc\x01\n\x0e\x43PEdgeMetadata\x12;\n\x05topic\x18\x01 \x01(\x0e\x32%.gml.internal.api.core.v1.CPEdgeTopicR\x05topic\x12:\n\tdevice_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x41\n\x0erecv_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rrecvTimestamp\"~\n\rCPEdgeMessage\x12\x44\n\x08metadata\x18\x01 \x01(\x0b\x32(.gml.internal.api.core.v1.CPEdgeMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg*\xbe\x02\n\x13\x45xecutionGraphState\x12!\n\x1d\x45XECUTION_GRAPH_STATE_UNKNOWN\x10\x00\x12*\n&EXECUTION_GRAPH_STATE_UPDATE_REQUESTED\x10\n\x12%\n!EXECUTION_GRAPH_STATE_DOWNLOADING\x10\x14\x12#\n\x1f\x45XECUTION_GRAPH_STATE_COMPILING\x10\x1e\x12\x1f\n\x1b\x45XECUTION_GRAPH_STATE_READY\x10(\x12\"\n\x1e\x45XECUTION_GRAPH_STATE_DEPLOYED\x10\x32\x12%\n!EXECUTION_GRAPH_STATE_TERMINATING\x10<\x12 \n\x1c\x45XECUTION_GRAPH_STATE_FAILED\x10\x64*\xe7\x01\n\x0b\x45\x64geCPTopic\x12\x19\n\x15\x45\x44GE_CP_TOPIC_UNKNOWN\x10\x00\x12\x18\n\x14\x45\x44GE_CP_TOPIC_STATUS\x10\x01\x12\x16\n\x12\x45\x44GE_CP_TOPIC_EXEC\x10\x03\x12\x19\n\x15\x45\x44GE_CP_TOPIC_METRICS\x10\x04\x12\x1f\n\x1b\x45\x44GE_CP_TOPIC_FILE_TRANSFER\x10\x05\x12\x16\n\x12\x45\x44GE_CP_TOPIC_INFO\x10\x06\x12\x17\n\x13\x45\x44GE_CP_TOPIC_MEDIA\x10\x07\x12\x18\n\x14\x45\x44GE_CP_TOPIC_CONFIG\x10\x08\"\x04\x08\x02\x10\x02*\xe7\x01\n\x0b\x43PEdgeTopic\x12\x19\n\x15\x43P_EDGE_TOPIC_UNKNOWN\x10\x00\x12\x18\n\x14\x43P_EDGE_TOPIC_STATUS\x10\x01\x12\x16\n\x12\x43P_EDGE_TOPIC_EXEC\x10\x03\x12\x19\n\x15\x43P_EDGE_TOPIC_METRICS\x10\x04\x12\x1f\n\x1b\x43P_EDGE_TOPIC_FILE_TRANSFER\x10\x05\x12\x16\n\x12\x43P_EDGE_TOPIC_INFO\x10\x06\x12\x17\n\x13\x43P_EDGE_TOPIC_MEDIA\x10\x07\x12\x18\n\x14\x43P_EDGE_TOPIC_CONFIG\x10\x08\"\x04\x08\x02\x10\x02\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1fsrc/api/corepb/v1/cp_edge.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a\x1fsrc/common/typespb/status.proto\x1a\x19google/protobuf/any.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a,opentelemetry/proto/metrics/v1/metrics.proto\x1a#src/api/corepb/v1/device_info.proto\x1a\"src/api/corepb/v1/model_exec.proto\x1a\"src/api/corepb/v1/gem_config.proto\x1a)src/api/corepb/v1/deployed_pipeline.proto\x1a)src/api/corepb/v1/compiled_pipeline.proto\x1a#src/api/corepb/v1/mediastream.proto\"1\n\rEdgeHeartbeat\x12 \n\x06seq_id\x18\x01 \x01(\x03\x42\t\xe2\xde\x1f\x05SeqIDR\x05seqId\"4\n\x10\x45\x64geHeartbeatAck\x12 \n\x06seq_id\x18\x01 \x01(\x03\x42\t\xe2\xde\x1f\x05SeqIDR\x05seqId\"\xbb\x01\n\x1aPhysicalPipelineSpecUpdate\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x42\n\x04spec\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.PhysicalPipelineSpecR\x04spec\"\xdd\x01\n\x1cPhysicalPipelineStatusUpdate\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12H\n\x06status\x18\x03 \x01(\x0b\x32\x30.gml.internal.api.core.v1.PhysicalPipelineStatusR\x06status\"\x92\x01\n\x12\x46ragmentSpecUpdate\x12@\n\x0b\x66ragment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12:\n\x04spec\x18\x02 \x01(\x0b\x32&.gml.internal.api.core.v1.FragmentSpecR\x04spec\"\xb4\x01\n\x14\x46ragmentStatusUpdate\x12@\n\x0b\x66ragment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12@\n\x06status\x18\x03 \x01(\x0b\x32(.gml.internal.api.core.v1.FragmentStatusR\x06status\"\xed\x01\n EdgePipelineDeploymentSpecUpdate\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12=\n\x05state\x18\x02 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x42\n\x04spec\x18\x03 \x01(\x0b\x32..gml.internal.api.core.v1.PipelineFragmentSpecR\x04spec\"\xc3\x01\n\"EdgePipelineDeploymentStatusUpdate\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12=\n\x05state\x18\x02 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x16\n\x06reason\x18\x03 \x01(\tR\x06reason\"\x0c\n\nCPRunModel\"\x0f\n\rCPRunModelAck\"\xb2\x01\n\x12\x45xecutionGraphSpec\x12=\n\x05graph\x18\x01 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x05graph\x12\x43\n\x05state\x18\x02 \x01(\x0e\x32-.gml.internal.api.core.v1.ExecutionGraphStateR\x05state\x12\x18\n\x07version\x18\x03 \x01(\x03R\x07version\"\x8d\x01\n\x14\x45xecutionGraphStatus\x12\x43\n\x05state\x18\x01 \x01(\x0e\x32-.gml.internal.api.core.v1.ExecutionGraphStateR\x05state\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reason\x12\x18\n\x07version\x18\x03 \x01(\x03R\x07version\"\x8a\x02\n\x13\x41pplyExecutionGraph\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12V\n\x13logical_pipeline_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12@\n\x04spec\x18\x02 \x01(\x0b\x32,.gml.internal.api.core.v1.ExecutionGraphSpecR\x04spec\"q\n\x14\x44\x65leteExecutionGraph\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\"\xbf\x01\n\x1a\x45xecutionGraphStatusUpdate\x12Y\n\x14physical_pipeline_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12PhysicalPipelineIDR\x12physicalPipelineId\x12\x46\n\x06status\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.ExecutionGraphStatusR\x06status\"\x12\n\x10MediaStreamStart\"\x11\n\x0fMediaStreamStop\"\x16\n\x14MediaStreamKeepAlive\"\xc7\x01\n\x12MediaStreamControl\x12[\n\x13text_stream_control\x18\x01 \x01(\x0b\x32+.gml.internal.api.core.v1.TextStreamControlR\x11textStreamControl\x12T\n\x10\x65ndpoint_request\x18\x02 \x01(\x0b\x32).gml.internal.api.core.v1.EndpointRequestR\x0f\x65ndpointRequest\"\x95\x01\n\x11TextStreamControl\x12\x16\n\x06prompt\x18\x01 \x01(\tR\x06prompt\x12\x34\n\x07\x63onv_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x43onvIDR\x06\x63onvId\x12\x32\n\x15max_completion_tokens\x18\x03 \x01(\x03R\x13maxCompletionTokens\"m\n\x0f\x45\x64geOTelMetrics\x12Z\n\x10resource_metrics\x18\x01 \x01(\x0b\x32/.opentelemetry.proto.metrics.v1.ResourceMetricsR\x0fresourceMetrics\"\x94\x01\n\x13\x46ileTransferRequest\x12\x34\n\x07\x66ile_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x46ileIDR\x06\x66ileId\x12*\n\x11\x63hunk_start_bytes\x18\x02 \x01(\x03R\x0f\x63hunkStartBytes\x12\x1b\n\tnum_bytes\x18\x03 \x01(\x03R\x08numBytes\"\x8f\x02\n\x14\x46ileTransferResponse\x12)\n\x06status\x18\x01 \x01(\x0b\x32\x11.gml.types.StatusR\x06status\x12N\n\x05\x63hunk\x18\x02 \x01(\x0b\x32\x38.gml.internal.api.core.v1.FileTransferResponse.FileChunkR\x05\x63hunk\x12\x34\n\x07\x66ile_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x46ileIDR\x06\x66ileId\x1a\x46\n\tFileChunk\x12\x1f\n\x0bstart_bytes\x18\x01 \x01(\x03R\nstartBytes\x12\x18\n\x07payload\x18\x02 \x01(\x0cR\x07payload\"\xfc\x01\n\x12\x44\x65viceCapabilities\x12>\n\x07\x63\x61meras\x18\x02 \x03(\x0b\x32$.gml.internal.api.core.v1.CameraInfoR\x07\x63\x61meras\x12Q\n\x0e\x63\x61mera_drivers\x18\x03 \x03(\x0b\x32*.gml.internal.api.core.v1.CameraDriverInfoR\rcameraDrivers\x12M\n\x0c\x61\x63\x63\x65lerators\x18\x04 \x03(\x0b\x32).gml.internal.api.core.v1.AcceleratorInfoR\x0c\x61\x63\x63\x65leratorsJ\x04\x08\x01\x10\x02\"\x89\x01\n\x17\x44\x65viceConfigStateUpdate\x12>\n\x05state\x18\x01 \x01(\x0b\x32(.gml.internal.api.core.v1.GEMConfigStateR\x05state\x12.\n\x13\x62\x61se_config_version\x18\x02 \x01(\x03R\x11\x62\x61seConfigVersion\"o\n\x16\x44\x65viceBaseConfigUpdate\x12;\n\x06\x63onfig\x18\x01 \x01(\x0b\x32#.gml.internal.api.core.v1.GEMConfigR\x06\x63onfig\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\"\x9a\x02\n\x13\x46\x61\x62ricJoinCommGroup\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12@\n\x0b\x66ragment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x1d\n\ngroup_name\x18\x03 \x01(\tR\tgroupName\x12\x1d\n\ngroup_size\x18\x04 \x01(\x05R\tgroupSize\x12\x12\n\x04rank\x18\x05 \x01(\x05R\x04rank\x12\'\n\x0fserialized_addr\x18\x06 \x01(\x0cR\x0eserializedAddr\"\xcd\x01\n\"FabricGetCommGroupAddressesRequest\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12@\n\x0b\x66ragment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x1d\n\ngroup_name\x18\x03 \x01(\tR\tgroupName\"\xf1\x01\n#FabricGetCommGroupAddressesResponse\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12@\n\x0b\x66ragment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x1d\n\ngroup_name\x18\x03 \x01(\tR\tgroupName\x12!\n\x0cmember_addrs\x18\x04 \x03(\x0cR\x0bmemberAddrs\"\xf0\x01\n\x1e\x46\x61\x62ricRegisterCommPortConsumer\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12@\n\x0b\x66ragment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x1b\n\tport_name\x18\x03 \x01(\tR\x08portName\x12\'\n\x0fserialized_addr\x18\x04 \x01(\x0cR\x0eserializedAddr\"\xc9\x01\n FabricGetCommPortConsumerRequest\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12@\n\x0b\x66ragment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x1b\n\tport_name\x18\x03 \x01(\tR\x08portName\"\xf3\x01\n!FabricGetCommPortConsumerResponse\x12\x46\n\rdeployment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12@\n\x0b\x66ragment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0e\xe2\xde\x1f\nFragmentIDR\nfragmentId\x12\x1b\n\tport_name\x18\x03 \x01(\tR\x08portName\x12\'\n\x0fserialized_addr\x18\x04 \x01(\x0cR\x0eserializedAddr\"\xcc\x01\n\x0e\x45\x64geCPMetadata\x12;\n\x05topic\x18\x01 \x01(\x0e\x32%.gml.internal.api.core.v1.EdgeCPTopicR\x05topic\x12:\n\tdevice_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x41\n\x0erecv_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rrecvTimestamp\"~\n\rEdgeCPMessage\x12\x44\n\x08metadata\x18\x01 \x01(\x0b\x32(.gml.internal.api.core.v1.EdgeCPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg\"\xcc\x01\n\x0e\x43PEdgeMetadata\x12;\n\x05topic\x18\x01 \x01(\x0e\x32%.gml.internal.api.core.v1.CPEdgeTopicR\x05topic\x12:\n\tdevice_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x41\n\x0erecv_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rrecvTimestamp\"~\n\rCPEdgeMessage\x12\x44\n\x08metadata\x18\x01 \x01(\x0b\x32(.gml.internal.api.core.v1.CPEdgeMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msg*\xbe\x02\n\x13\x45xecutionGraphState\x12!\n\x1d\x45XECUTION_GRAPH_STATE_UNKNOWN\x10\x00\x12*\n&EXECUTION_GRAPH_STATE_UPDATE_REQUESTED\x10\n\x12%\n!EXECUTION_GRAPH_STATE_DOWNLOADING\x10\x14\x12#\n\x1f\x45XECUTION_GRAPH_STATE_COMPILING\x10\x1e\x12\x1f\n\x1b\x45XECUTION_GRAPH_STATE_READY\x10(\x12\"\n\x1e\x45XECUTION_GRAPH_STATE_DEPLOYED\x10\x32\x12%\n!EXECUTION_GRAPH_STATE_TERMINATING\x10<\x12 \n\x1c\x45XECUTION_GRAPH_STATE_FAILED\x10\x64*\xa2\x02\n\x0b\x45\x64geCPTopic\x12\x19\n\x15\x45\x44GE_CP_TOPIC_UNKNOWN\x10\x00\x12\x18\n\x14\x45\x44GE_CP_TOPIC_STATUS\x10\x01\x12\x16\n\x12\x45\x44GE_CP_TOPIC_EXEC\x10\x03\x12\x19\n\x15\x45\x44GE_CP_TOPIC_METRICS\x10\x04\x12\x1f\n\x1b\x45\x44GE_CP_TOPIC_FILE_TRANSFER\x10\x05\x12\x16\n\x12\x45\x44GE_CP_TOPIC_INFO\x10\x06\x12\x17\n\x13\x45\x44GE_CP_TOPIC_MEDIA\x10\x07\x12\x18\n\x14\x45\x44GE_CP_TOPIC_CONFIG\x10\x08\x12\x1f\n\x1b\x45\x44GE_CP_TOPIC_FRAGMENT_EXEC\x10\t\x12\x18\n\x14\x45\x44GE_CP_TOPIC_FABRIC\x10\n\"\x04\x08\x02\x10\x02*\xa2\x02\n\x0b\x43PEdgeTopic\x12\x19\n\x15\x43P_EDGE_TOPIC_UNKNOWN\x10\x00\x12\x18\n\x14\x43P_EDGE_TOPIC_STATUS\x10\x01\x12\x16\n\x12\x43P_EDGE_TOPIC_EXEC\x10\x03\x12\x19\n\x15\x43P_EDGE_TOPIC_METRICS\x10\x04\x12\x1f\n\x1b\x43P_EDGE_TOPIC_FILE_TRANSFER\x10\x05\x12\x16\n\x12\x43P_EDGE_TOPIC_INFO\x10\x06\x12\x17\n\x13\x43P_EDGE_TOPIC_MEDIA\x10\x07\x12\x18\n\x14\x43P_EDGE_TOPIC_CONFIG\x10\x08\x12\x1f\n\x1b\x43P_EDGE_TOPIC_FRAGMENT_EXEC\x10\t\x12\x18\n\x14\x43P_EDGE_TOPIC_FABRIC\x10\n\"\x04\x08\x02\x10\x02\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
26
29
|
|
27
30
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
28
31
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.cp_edge_pb2', globals())
|
@@ -38,6 +41,14 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
38
41
|
_PHYSICALPIPELINESPECUPDATE.fields_by_name['physical_pipeline_id']._serialized_options = b'\342\336\037\022PhysicalPipelineID'
|
39
42
|
_PHYSICALPIPELINESTATUSUPDATE.fields_by_name['physical_pipeline_id']._options = None
|
40
43
|
_PHYSICALPIPELINESTATUSUPDATE.fields_by_name['physical_pipeline_id']._serialized_options = b'\342\336\037\022PhysicalPipelineID'
|
44
|
+
_FRAGMENTSPECUPDATE.fields_by_name['fragment_id']._options = None
|
45
|
+
_FRAGMENTSPECUPDATE.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
46
|
+
_FRAGMENTSTATUSUPDATE.fields_by_name['fragment_id']._options = None
|
47
|
+
_FRAGMENTSTATUSUPDATE.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
48
|
+
_EDGEPIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['deployment_id']._options = None
|
49
|
+
_EDGEPIPELINEDEPLOYMENTSPECUPDATE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
50
|
+
_EDGEPIPELINEDEPLOYMENTSTATUSUPDATE.fields_by_name['deployment_id']._options = None
|
51
|
+
_EDGEPIPELINEDEPLOYMENTSTATUSUPDATE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
41
52
|
_APPLYEXECUTIONGRAPH.fields_by_name['physical_pipeline_id']._options = None
|
42
53
|
_APPLYEXECUTIONGRAPH.fields_by_name['physical_pipeline_id']._serialized_options = b'\342\336\037\022PhysicalPipelineID'
|
43
54
|
_APPLYEXECUTIONGRAPH.fields_by_name['logical_pipeline_id']._options = None
|
@@ -48,80 +59,116 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
48
59
|
_EXECUTIONGRAPHSTATUSUPDATE.fields_by_name['physical_pipeline_id']._serialized_options = b'\342\336\037\022PhysicalPipelineID'
|
49
60
|
_TEXTSTREAMCONTROL.fields_by_name['conv_id']._options = None
|
50
61
|
_TEXTSTREAMCONTROL.fields_by_name['conv_id']._serialized_options = b'\342\336\037\006ConvID'
|
51
|
-
_EDGECPMEDIASTREAMMESSAGE.fields_by_name['stream_id']._options = None
|
52
|
-
_EDGECPMEDIASTREAMMESSAGE.fields_by_name['stream_id']._serialized_options = b'\342\336\037\010StreamID'
|
53
|
-
_CPEDGEMEDIASTREAMMESSAGE.fields_by_name['stream_id']._options = None
|
54
|
-
_CPEDGEMEDIASTREAMMESSAGE.fields_by_name['stream_id']._serialized_options = b'\342\336\037\010StreamID'
|
55
62
|
_FILETRANSFERREQUEST.fields_by_name['file_id']._options = None
|
56
63
|
_FILETRANSFERREQUEST.fields_by_name['file_id']._serialized_options = b'\342\336\037\006FileID'
|
57
64
|
_FILETRANSFERRESPONSE.fields_by_name['file_id']._options = None
|
58
65
|
_FILETRANSFERRESPONSE.fields_by_name['file_id']._serialized_options = b'\342\336\037\006FileID'
|
66
|
+
_FABRICJOINCOMMGROUP.fields_by_name['deployment_id']._options = None
|
67
|
+
_FABRICJOINCOMMGROUP.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
68
|
+
_FABRICJOINCOMMGROUP.fields_by_name['fragment_id']._options = None
|
69
|
+
_FABRICJOINCOMMGROUP.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
70
|
+
_FABRICGETCOMMGROUPADDRESSESREQUEST.fields_by_name['deployment_id']._options = None
|
71
|
+
_FABRICGETCOMMGROUPADDRESSESREQUEST.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
72
|
+
_FABRICGETCOMMGROUPADDRESSESREQUEST.fields_by_name['fragment_id']._options = None
|
73
|
+
_FABRICGETCOMMGROUPADDRESSESREQUEST.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
74
|
+
_FABRICGETCOMMGROUPADDRESSESRESPONSE.fields_by_name['deployment_id']._options = None
|
75
|
+
_FABRICGETCOMMGROUPADDRESSESRESPONSE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
76
|
+
_FABRICGETCOMMGROUPADDRESSESRESPONSE.fields_by_name['fragment_id']._options = None
|
77
|
+
_FABRICGETCOMMGROUPADDRESSESRESPONSE.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
78
|
+
_FABRICREGISTERCOMMPORTCONSUMER.fields_by_name['deployment_id']._options = None
|
79
|
+
_FABRICREGISTERCOMMPORTCONSUMER.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
80
|
+
_FABRICREGISTERCOMMPORTCONSUMER.fields_by_name['fragment_id']._options = None
|
81
|
+
_FABRICREGISTERCOMMPORTCONSUMER.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
82
|
+
_FABRICGETCOMMPORTCONSUMERREQUEST.fields_by_name['deployment_id']._options = None
|
83
|
+
_FABRICGETCOMMPORTCONSUMERREQUEST.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
84
|
+
_FABRICGETCOMMPORTCONSUMERREQUEST.fields_by_name['fragment_id']._options = None
|
85
|
+
_FABRICGETCOMMPORTCONSUMERREQUEST.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
86
|
+
_FABRICGETCOMMPORTCONSUMERRESPONSE.fields_by_name['deployment_id']._options = None
|
87
|
+
_FABRICGETCOMMPORTCONSUMERRESPONSE.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
88
|
+
_FABRICGETCOMMPORTCONSUMERRESPONSE.fields_by_name['fragment_id']._options = None
|
89
|
+
_FABRICGETCOMMPORTCONSUMERRESPONSE.fields_by_name['fragment_id']._serialized_options = b'\342\336\037\nFragmentID'
|
59
90
|
_EDGECPMETADATA.fields_by_name['device_id']._options = None
|
60
91
|
_EDGECPMETADATA.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
61
92
|
_CPEDGEMETADATA.fields_by_name['device_id']._options = None
|
62
93
|
_CPEDGEMETADATA.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
63
|
-
_EXECUTIONGRAPHSTATE._serialized_start=
|
64
|
-
_EXECUTIONGRAPHSTATE._serialized_end=
|
65
|
-
_EDGECPTOPIC._serialized_start=
|
66
|
-
_EDGECPTOPIC._serialized_end=
|
67
|
-
_CPEDGETOPIC._serialized_start=
|
68
|
-
_CPEDGETOPIC._serialized_end=
|
69
|
-
_EDGEHEARTBEAT._serialized_start=
|
70
|
-
_EDGEHEARTBEAT._serialized_end=
|
71
|
-
_EDGEHEARTBEATACK._serialized_start=
|
72
|
-
_EDGEHEARTBEATACK._serialized_end=
|
73
|
-
_PHYSICALPIPELINESPECUPDATE._serialized_start=
|
74
|
-
_PHYSICALPIPELINESPECUPDATE._serialized_end=
|
75
|
-
_PHYSICALPIPELINESTATUSUPDATE._serialized_start=
|
76
|
-
_PHYSICALPIPELINESTATUSUPDATE._serialized_end=
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
94
|
+
_EXECUTIONGRAPHSTATE._serialized_start=6270
|
95
|
+
_EXECUTIONGRAPHSTATE._serialized_end=6588
|
96
|
+
_EDGECPTOPIC._serialized_start=6591
|
97
|
+
_EDGECPTOPIC._serialized_end=6881
|
98
|
+
_CPEDGETOPIC._serialized_start=6884
|
99
|
+
_CPEDGETOPIC._serialized_end=7174
|
100
|
+
_EDGEHEARTBEAT._serialized_start=485
|
101
|
+
_EDGEHEARTBEAT._serialized_end=534
|
102
|
+
_EDGEHEARTBEATACK._serialized_start=536
|
103
|
+
_EDGEHEARTBEATACK._serialized_end=588
|
104
|
+
_PHYSICALPIPELINESPECUPDATE._serialized_start=591
|
105
|
+
_PHYSICALPIPELINESPECUPDATE._serialized_end=778
|
106
|
+
_PHYSICALPIPELINESTATUSUPDATE._serialized_start=781
|
107
|
+
_PHYSICALPIPELINESTATUSUPDATE._serialized_end=1002
|
108
|
+
_FRAGMENTSPECUPDATE._serialized_start=1005
|
109
|
+
_FRAGMENTSPECUPDATE._serialized_end=1151
|
110
|
+
_FRAGMENTSTATUSUPDATE._serialized_start=1154
|
111
|
+
_FRAGMENTSTATUSUPDATE._serialized_end=1334
|
112
|
+
_EDGEPIPELINEDEPLOYMENTSPECUPDATE._serialized_start=1337
|
113
|
+
_EDGEPIPELINEDEPLOYMENTSPECUPDATE._serialized_end=1574
|
114
|
+
_EDGEPIPELINEDEPLOYMENTSTATUSUPDATE._serialized_start=1577
|
115
|
+
_EDGEPIPELINEDEPLOYMENTSTATUSUPDATE._serialized_end=1772
|
116
|
+
_CPRUNMODEL._serialized_start=1774
|
117
|
+
_CPRUNMODEL._serialized_end=1786
|
118
|
+
_CPRUNMODELACK._serialized_start=1788
|
119
|
+
_CPRUNMODELACK._serialized_end=1803
|
120
|
+
_EXECUTIONGRAPHSPEC._serialized_start=1806
|
121
|
+
_EXECUTIONGRAPHSPEC._serialized_end=1984
|
122
|
+
_EXECUTIONGRAPHSTATUS._serialized_start=1987
|
123
|
+
_EXECUTIONGRAPHSTATUS._serialized_end=2128
|
124
|
+
_APPLYEXECUTIONGRAPH._serialized_start=2131
|
125
|
+
_APPLYEXECUTIONGRAPH._serialized_end=2397
|
126
|
+
_DELETEEXECUTIONGRAPH._serialized_start=2399
|
127
|
+
_DELETEEXECUTIONGRAPH._serialized_end=2512
|
128
|
+
_EXECUTIONGRAPHSTATUSUPDATE._serialized_start=2515
|
129
|
+
_EXECUTIONGRAPHSTATUSUPDATE._serialized_end=2706
|
130
|
+
_MEDIASTREAMSTART._serialized_start=2708
|
131
|
+
_MEDIASTREAMSTART._serialized_end=2726
|
132
|
+
_MEDIASTREAMSTOP._serialized_start=2728
|
133
|
+
_MEDIASTREAMSTOP._serialized_end=2745
|
134
|
+
_MEDIASTREAMKEEPALIVE._serialized_start=2747
|
135
|
+
_MEDIASTREAMKEEPALIVE._serialized_end=2769
|
136
|
+
_MEDIASTREAMCONTROL._serialized_start=2772
|
137
|
+
_MEDIASTREAMCONTROL._serialized_end=2971
|
138
|
+
_TEXTSTREAMCONTROL._serialized_start=2974
|
139
|
+
_TEXTSTREAMCONTROL._serialized_end=3123
|
140
|
+
_EDGEOTELMETRICS._serialized_start=3125
|
141
|
+
_EDGEOTELMETRICS._serialized_end=3234
|
142
|
+
_FILETRANSFERREQUEST._serialized_start=3237
|
143
|
+
_FILETRANSFERREQUEST._serialized_end=3385
|
144
|
+
_FILETRANSFERRESPONSE._serialized_start=3388
|
145
|
+
_FILETRANSFERRESPONSE._serialized_end=3659
|
146
|
+
_FILETRANSFERRESPONSE_FILECHUNK._serialized_start=3589
|
147
|
+
_FILETRANSFERRESPONSE_FILECHUNK._serialized_end=3659
|
148
|
+
_DEVICECAPABILITIES._serialized_start=3662
|
149
|
+
_DEVICECAPABILITIES._serialized_end=3914
|
150
|
+
_DEVICECONFIGSTATEUPDATE._serialized_start=3917
|
151
|
+
_DEVICECONFIGSTATEUPDATE._serialized_end=4054
|
152
|
+
_DEVICEBASECONFIGUPDATE._serialized_start=4056
|
153
|
+
_DEVICEBASECONFIGUPDATE._serialized_end=4167
|
154
|
+
_FABRICJOINCOMMGROUP._serialized_start=4170
|
155
|
+
_FABRICJOINCOMMGROUP._serialized_end=4452
|
156
|
+
_FABRICGETCOMMGROUPADDRESSESREQUEST._serialized_start=4455
|
157
|
+
_FABRICGETCOMMGROUPADDRESSESREQUEST._serialized_end=4660
|
158
|
+
_FABRICGETCOMMGROUPADDRESSESRESPONSE._serialized_start=4663
|
159
|
+
_FABRICGETCOMMGROUPADDRESSESRESPONSE._serialized_end=4904
|
160
|
+
_FABRICREGISTERCOMMPORTCONSUMER._serialized_start=4907
|
161
|
+
_FABRICREGISTERCOMMPORTCONSUMER._serialized_end=5147
|
162
|
+
_FABRICGETCOMMPORTCONSUMERREQUEST._serialized_start=5150
|
163
|
+
_FABRICGETCOMMPORTCONSUMERREQUEST._serialized_end=5351
|
164
|
+
_FABRICGETCOMMPORTCONSUMERRESPONSE._serialized_start=5354
|
165
|
+
_FABRICGETCOMMPORTCONSUMERRESPONSE._serialized_end=5597
|
166
|
+
_EDGECPMETADATA._serialized_start=5600
|
167
|
+
_EDGECPMETADATA._serialized_end=5804
|
168
|
+
_EDGECPMESSAGE._serialized_start=5806
|
169
|
+
_EDGECPMESSAGE._serialized_end=5932
|
170
|
+
_CPEDGEMETADATA._serialized_start=5935
|
171
|
+
_CPEDGEMETADATA._serialized_end=6139
|
172
|
+
_CPEDGEMESSAGE._serialized_start=6141
|
173
|
+
_CPEDGEMESSAGE._serialized_end=6267
|
127
174
|
# @@protoc_insertion_point(module_scope)
|