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
@@ -0,0 +1,33 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: src/api/corepb/v1/dataplane.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
|
+
|
18
|
+
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!src/api/corepb/v1/dataplane.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x19google/protobuf/any.proto\x1a\x1dsrc/common/typespb/uuid.proto\"H\n\nDPMetadata\x12:\n\tdevice_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\"v\n\tDPMessage\x12@\n\x08metadata\x18\x01 \x01(\x0b\x32$.gml.internal.api.core.v1.DPMetadataR\x08metadata\x12\'\n\x03msg\x18\xe8\x07 \x01(\x0b\x32\x14.google.protobuf.AnyR\x03msgB/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
20
|
+
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.dataplane_pb2', globals())
|
23
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
+
|
25
|
+
DESCRIPTOR._options = None
|
26
|
+
DESCRIPTOR._serialized_options = b'Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepb'
|
27
|
+
_DPMETADATA.fields_by_name['device_id']._options = None
|
28
|
+
_DPMETADATA.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
29
|
+
_DPMETADATA._serialized_start=143
|
30
|
+
_DPMETADATA._serialized_end=215
|
31
|
+
_DPMESSAGE._serialized_start=217
|
32
|
+
_DPMESSAGE._serialized_end=335
|
33
|
+
# @@protoc_insertion_point(module_scope)
|
@@ -14,9 +14,11 @@ _sym_db = _symbol_database.Default()
|
|
14
14
|
from gml.proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
15
15
|
from gml.proto.src.api.corepb.v1 import compiled_pipeline_pb2 as src_dot_api_dot_corepb_dot_v1_dot_compiled__pipeline__pb2
|
16
16
|
from gml.proto.src.common.typespb import uuid_pb2 as src_dot_common_dot_typespb_dot_uuid__pb2
|
17
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__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
|
17
19
|
|
18
20
|
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)src/api/corepb/v1/deployed_pipeline.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a)src/api/corepb/v1/compiled_pipeline.proto\x1a\x1dsrc/common/typespb/uuid.proto\"\xfd\x01\n\x18\x44\x65ployedPipelineFragment\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12\x66\n\rcompiled_spec\x18\x02 \x01(\x0b\x32\x41.gml.internal.api.core.v1.PipelineFragmentConfigurationOptionSpecR\x0c\x63ompiledSpec\x12P\n\x0b\x63omm_groups\x18\x03 \x03(\x0b\x32/.gml.internal.api.core.v1.DeployedCommGroupSpecR\ncommGroups\"\xd3\x01\n\x15\x44\x65ployedCommGroupSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12N\n\x0ctopology_key\x18\x02 \x01(\x0e\x32+.gml.internal.api.core.v1.FabricTopologyKeyR\x0btopologyKey\x12V\n\x0b\x61ll_members\x18\x03 \x03(\x0b\x32\x35.gml.internal.api.core.v1.DeployedCommGroupMemberSpecR\nallMembers\"\x8c\x01\n\x1b\x44\x65ployedCommGroupMemberSpec\x12Y\n\x14\x64\x65ployed_fragment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12\x44\x65ployedFragmentIDR\x12\x64\x65ployedFragmentId\x12\x12\n\x04rank\x18\x02 \x01(\x03R\
|
21
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)src/api/corepb/v1/deployed_pipeline.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a)src/api/corepb/v1/compiled_pipeline.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\"src/api/corepb/v1/model_exec.proto\"\xfd\x01\n\x18\x44\x65ployedPipelineFragment\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12\x66\n\rcompiled_spec\x18\x02 \x01(\x0b\x32\x41.gml.internal.api.core.v1.PipelineFragmentConfigurationOptionSpecR\x0c\x63ompiledSpec\x12P\n\x0b\x63omm_groups\x18\x03 \x03(\x0b\x32/.gml.internal.api.core.v1.DeployedCommGroupSpecR\ncommGroups\"\xd3\x01\n\x15\x44\x65ployedCommGroupSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12N\n\x0ctopology_key\x18\x02 \x01(\x0e\x32+.gml.internal.api.core.v1.FabricTopologyKeyR\x0btopologyKey\x12V\n\x0b\x61ll_members\x18\x03 \x03(\x0b\x32\x35.gml.internal.api.core.v1.DeployedCommGroupMemberSpecR\nallMembers\"\x8c\x01\n\x1b\x44\x65ployedCommGroupMemberSpec\x12Y\n\x14\x64\x65ployed_fragment_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x16\xe2\xde\x1f\x12\x44\x65ployedFragmentIDR\x12\x64\x65ployedFragmentId\x12\x12\n\x04rank\x18\x02 \x01(\x03R\x04rank\"\xc1\x03\n\rFragmentGroup\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x46\n\rdeployment_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x10\xe2\xde\x1f\x0c\x44\x65ploymentIDR\x0c\x64\x65ploymentId\x12-\n\x12\x64\x65ployment_version\x18\x04 \x01(\x03R\x11\x64\x65ploymentVersion\x12\x39\n\ncreated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12?\n\x04spec\x18\x07 \x01(\x0b\x32+.gml.internal.api.core.v1.FragmentGroupSpecR\x04spec\x12\x45\n\x06status\x18\x08 \x01(\x0b\x32-.gml.internal.api.core.v1.FragmentGroupStatusR\x06status\"R\n\x11\x46ragmentGroupSpec\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\"l\n\x13\x46ragmentGroupStatus\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reason\"\xb5\x03\n\x08\x46ragment\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12P\n\x11\x66ragment_group_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x13\xe2\xde\x1f\x0f\x46ragmentGroupIDR\x0f\x66ragmentGroupId\x12:\n\tdevice_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12:\n\x04spec\x18\x06 \x01(\x0b\x32&.gml.internal.api.core.v1.FragmentSpecR\x04spec\x12@\n\x06status\x18\x07 \x01(\x0b\x32(.gml.internal.api.core.v1.FragmentStatusR\x06status\"\x95\x01\n\x0c\x46ragmentSpec\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x46\n\x04spec\x18\x02 \x01(\x0b\x32\x32.gml.internal.api.core.v1.DeployedPipelineFragmentR\x04spec\"g\n\x0e\x46ragmentStatus\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reasonB/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
20
22
|
|
21
23
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
22
24
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.deployed_pipeline_pb2', globals())
|
@@ -28,10 +30,32 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
28
30
|
_DEPLOYEDPIPELINEFRAGMENT.fields_by_name['id']._serialized_options = b'\342\336\037\002ID'
|
29
31
|
_DEPLOYEDCOMMGROUPMEMBERSPEC.fields_by_name['deployed_fragment_id']._options = None
|
30
32
|
_DEPLOYEDCOMMGROUPMEMBERSPEC.fields_by_name['deployed_fragment_id']._serialized_options = b'\342\336\037\022DeployedFragmentID'
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
_FRAGMENTGROUP.fields_by_name['id']._options = None
|
34
|
+
_FRAGMENTGROUP.fields_by_name['id']._serialized_options = b'\342\336\037\002ID'
|
35
|
+
_FRAGMENTGROUP.fields_by_name['deployment_id']._options = None
|
36
|
+
_FRAGMENTGROUP.fields_by_name['deployment_id']._serialized_options = b'\342\336\037\014DeploymentID'
|
37
|
+
_FRAGMENT.fields_by_name['id']._options = None
|
38
|
+
_FRAGMENT.fields_by_name['id']._serialized_options = b'\342\336\037\002ID'
|
39
|
+
_FRAGMENT.fields_by_name['fragment_group_id']._options = None
|
40
|
+
_FRAGMENT.fields_by_name['fragment_group_id']._serialized_options = b'\342\336\037\017FragmentGroupID'
|
41
|
+
_FRAGMENT.fields_by_name['device_id']._options = None
|
42
|
+
_FRAGMENT.fields_by_name['device_id']._serialized_options = b'\342\336\037\010DeviceID'
|
43
|
+
_DEPLOYEDPIPELINEFRAGMENT._serialized_start=237
|
44
|
+
_DEPLOYEDPIPELINEFRAGMENT._serialized_end=490
|
45
|
+
_DEPLOYEDCOMMGROUPSPEC._serialized_start=493
|
46
|
+
_DEPLOYEDCOMMGROUPSPEC._serialized_end=704
|
47
|
+
_DEPLOYEDCOMMGROUPMEMBERSPEC._serialized_start=707
|
48
|
+
_DEPLOYEDCOMMGROUPMEMBERSPEC._serialized_end=847
|
49
|
+
_FRAGMENTGROUP._serialized_start=850
|
50
|
+
_FRAGMENTGROUP._serialized_end=1299
|
51
|
+
_FRAGMENTGROUPSPEC._serialized_start=1301
|
52
|
+
_FRAGMENTGROUPSPEC._serialized_end=1383
|
53
|
+
_FRAGMENTGROUPSTATUS._serialized_start=1385
|
54
|
+
_FRAGMENTGROUPSTATUS._serialized_end=1493
|
55
|
+
_FRAGMENT._serialized_start=1496
|
56
|
+
_FRAGMENT._serialized_end=1933
|
57
|
+
_FRAGMENTSPEC._serialized_start=1936
|
58
|
+
_FRAGMENTSPEC._serialized_end=2085
|
59
|
+
_FRAGMENTSTATUS._serialized_start=2087
|
60
|
+
_FRAGMENTSTATUS._serialized_end=2190
|
37
61
|
# @@protoc_insertion_point(module_scope)
|
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
14
14
|
from gml.proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
15
15
|
|
16
16
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#src/api/corepb/v1/device_info.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\"R\n\x10\x43\x61meraDriverInfo\x12>\n\x06\x64river\x18\x01 \x01(\x0e\x32&.gml.internal.api.core.v1.CameraDriverR\x06\x64river\"\xb4\x02\n\nCameraMode\x12\x16\n\x06\x66ourcc\x18\x01 \x01(\tR\x06\x66ourcc\x12Q\n\x0bresolutions\x18\x02 \x03(\x0b\x32/.gml.internal.api.core.v1.CameraMode.ResolutionR\x0bresolutions\x1a\xba\x01\n\nResolution\x12\x14\n\x05width\x18\x01 \x01(\x05R\x05width\x12\x16\n\x06height\x18\x02 \x01(\x05R\x06height\x12V\n\tintervals\x18\x03 \x03(\x0b\x32\x38.gml.internal.api.core.v1.CameraMode.Resolution.IntervalR\tintervals\x1a&\n\x08Interval\x12\x1a\n\x08interval\x18\x01 \x01(\x01R\x08interval\"\xb3\x01\n\nCameraInfo\x12>\n\x06\x64river\x18\x01 \x01(\x0e\x32&.gml.internal.api.core.v1.CameraDriverR\x06\x64river\x12)\n\tcamera_id\x18\x02 \x01(\tB\x0c\xe2\xde\x1f\x08\x43\x61meraIDR\x08\x63\x61meraId\x12:\n\x05modes\x18\x03 \x03(\x0b\x32$.gml.internal.api.core.v1.CameraModeR\x05modes\"d\n\x15IREELLVMCPUTargetInfo\x12\x16\n\x06triple\x18\x01 \x01(\tR\x06triple\x12\x10\n\x03\x63pu\x18\x02 \x01(\tR\x03\x63pu\x12!\n\x0c\x63pu_features\x18\x03 \x03(\tR\x0b\x63puFeatures\"(\n\x12IREEROCmTargetInfo\x12\x12\n\x04\x61rch\x18\x01 \x01(\tR\x04\x61rch\"\x9f\x02\n\x0fIREERuntimeInfo\x12\x1b\n\tdevice_id\x18\x01 \x01(\x04R\x08\x64\x65viceId\x12<\n\x06target\x18\x02 \x01(\x0e\x32$.gml.internal.api.core.v1.IREETargetR\x06target\x12Y\n\x10llvm_target_info\x18\x03 \x01(\x0b\x32/.gml.internal.api.core.v1.IREELLVMCPUTargetInfoR\x0ellvmTargetInfo\x12V\n\x10rocm_target_info\x18\x04 \x01(\x0b\x32,.gml.internal.api.core.v1.IREEROCmTargetInfoR\x0erocmTargetInfo\"t\n\x13OpenVINORuntimeInfo\x12\x1b\n\tdevice_id\x18\x01 \x01(\tR\x08\x64\x65viceId\x12@\n\x06target\x18\x02 \x01(\x0e\x32(.gml.internal.api.core.v1.OpenVINOTargetR\x06target\"I\n\x13TensorRTRuntimeInfo\x12\x18\n\x07plugins\x18\x01 \x03(\tR\x07plugins\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\"\
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#src/api/corepb/v1/device_info.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\"R\n\x10\x43\x61meraDriverInfo\x12>\n\x06\x64river\x18\x01 \x01(\x0e\x32&.gml.internal.api.core.v1.CameraDriverR\x06\x64river\"\xb4\x02\n\nCameraMode\x12\x16\n\x06\x66ourcc\x18\x01 \x01(\tR\x06\x66ourcc\x12Q\n\x0bresolutions\x18\x02 \x03(\x0b\x32/.gml.internal.api.core.v1.CameraMode.ResolutionR\x0bresolutions\x1a\xba\x01\n\nResolution\x12\x14\n\x05width\x18\x01 \x01(\x05R\x05width\x12\x16\n\x06height\x18\x02 \x01(\x05R\x06height\x12V\n\tintervals\x18\x03 \x03(\x0b\x32\x38.gml.internal.api.core.v1.CameraMode.Resolution.IntervalR\tintervals\x1a&\n\x08Interval\x12\x1a\n\x08interval\x18\x01 \x01(\x01R\x08interval\"\xb3\x01\n\nCameraInfo\x12>\n\x06\x64river\x18\x01 \x01(\x0e\x32&.gml.internal.api.core.v1.CameraDriverR\x06\x64river\x12)\n\tcamera_id\x18\x02 \x01(\tB\x0c\xe2\xde\x1f\x08\x43\x61meraIDR\x08\x63\x61meraId\x12:\n\x05modes\x18\x03 \x03(\x0b\x32$.gml.internal.api.core.v1.CameraModeR\x05modes\"d\n\x15IREELLVMCPUTargetInfo\x12\x16\n\x06triple\x18\x01 \x01(\tR\x06triple\x12\x10\n\x03\x63pu\x18\x02 \x01(\tR\x03\x63pu\x12!\n\x0c\x63pu_features\x18\x03 \x03(\tR\x0b\x63puFeatures\"(\n\x12IREEROCmTargetInfo\x12\x12\n\x04\x61rch\x18\x01 \x01(\tR\x04\x61rch\"\x9f\x02\n\x0fIREERuntimeInfo\x12\x1b\n\tdevice_id\x18\x01 \x01(\x04R\x08\x64\x65viceId\x12<\n\x06target\x18\x02 \x01(\x0e\x32$.gml.internal.api.core.v1.IREETargetR\x06target\x12Y\n\x10llvm_target_info\x18\x03 \x01(\x0b\x32/.gml.internal.api.core.v1.IREELLVMCPUTargetInfoR\x0ellvmTargetInfo\x12V\n\x10rocm_target_info\x18\x04 \x01(\x0b\x32,.gml.internal.api.core.v1.IREEROCmTargetInfoR\x0erocmTargetInfo\"t\n\x13OpenVINORuntimeInfo\x12\x1b\n\tdevice_id\x18\x01 \x01(\tR\x08\x64\x65viceId\x12@\n\x06target\x18\x02 \x01(\x0e\x32(.gml.internal.api.core.v1.OpenVINOTargetR\x06target\"0\n\x11HabanaRuntimeInfo\x12\x1b\n\tdevice_id\x18\x01 \x01(\tR\x08\x64\x65viceId\"I\n\x13TensorRTRuntimeInfo\x12\x18\n\x07plugins\x18\x01 \x03(\tR\x07plugins\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\"\x90\x03\n\x10ModelRuntimeInfo\x12>\n\x04type\x18\x01 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x04type\x12\x46\n\tiree_info\x18\x02 \x01(\x0b\x32).gml.internal.api.core.v1.IREERuntimeInfoR\x08ireeInfo\x12R\n\ropenvino_info\x18\x03 \x01(\x0b\x32-.gml.internal.api.core.v1.OpenVINORuntimeInfoR\x0copenvinoInfo\x12R\n\rtensorrt_info\x18\x04 \x01(\x0b\x32-.gml.internal.api.core.v1.TensorRTRuntimeInfoR\x0ctensorrtInfo\x12L\n\x0bhabana_info\x18\x05 \x01(\x0b\x32+.gml.internal.api.core.v1.HabanaRuntimeInfoR\nhabanaInfo\"\x9f\x03\n\x0f\x41\x63\x63\x65leratorInfo\x12\x16\n\x02id\x18\x01 \x01(\tB\x06\xe2\xde\x1f\x02IDR\x02id\x12M\n\x04kind\x18\x02 \x01(\x0e\x32\x39.gml.internal.api.core.v1.AcceleratorInfo.AcceleratorKindR\x04kind\x12Y\n\x12supported_runtimes\x18\x03 \x03(\x0b\x32*.gml.internal.api.core.v1.ModelRuntimeInfoR\x11supportedRuntimes\x12!\n\x0cproduct_name\x18\x04 \x01(\tR\x0bproductName\x12\x16\n\x06vendor\x18\x05 \x01(\tR\x06vendor\x12*\n\x11memory_size_bytes\x18\x64 \x01(\x03R\x0fmemorySizeBytes\"c\n\x0f\x41\x63\x63\x65leratorKind\x12\x1c\n\x18\x41\x43\x43\x45LERATOR_KIND_UNKNOWN\x10\x00\x12\x18\n\x14\x41\x43\x43\x45LERATOR_KIND_CPU\x10\x01\x12\x18\n\x14\x41\x43\x43\x45LERATOR_KIND_GPU\x10\x02*Z\n\x0c\x43\x61meraDriver\x12\x19\n\x15\x43\x41MERA_DRIVER_UNKNOWN\x10\x00\x12\x17\n\x13\x43\x41MERA_DRIVER_ARGUS\x10\x01\x12\x16\n\x12\x43\x41MERA_DRIVER_V4L2\x10\x02*\xfe\x01\n\x10ModelRuntimeType\x12\x1e\n\x1aMODEL_RUNTIME_TYPE_UNKNOWN\x10\x00\x12\x1f\n\x1bMODEL_RUNTIME_TYPE_TENSORRT\x10\x01\x12\x1f\n\x1bMODEL_RUNTIME_TYPE_OPENVINO\x10\x02\x12\x1b\n\x17MODEL_RUNTIME_TYPE_IREE\x10\x03\x12,\n(MODEL_RUNTIME_TYPE_HUGGINGFACE_TOKENIZER\x10\x04\x12\x1e\n\x1aMODEL_RUNTIME_TYPE_HAILORT\x10\x05\x12\x1d\n\x19MODEL_RUNTIME_TYPE_HABANA\x10\x06*k\n\nIREETarget\x12\x17\n\x13IREE_TARGET_UNKNOWN\x10\x00\x12\x18\n\x14IREE_TARGET_LLVM_CPU\x10\x01\x12\x14\n\x10IREE_TARGET_ROCM\x10\x02\x12\x14\n\x10IREE_TARGET_VMVX\x10\x03*b\n\x0eOpenVINOTarget\x12\x1c\n\x18OPEN_VINO_TARGET_UNKNOWN\x10\x00\x12\x18\n\x14OPEN_VINO_TARGET_CPU\x10\x01\x12\x18\n\x14OPEN_VINO_TARGET_GPU\x10\x02\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
18
18
|
|
19
19
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
20
20
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.device_info_pb2', globals())
|
@@ -26,14 +26,14 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
26
26
|
_CAMERAINFO.fields_by_name['camera_id']._serialized_options = b'\342\336\037\010CameraID'
|
27
27
|
_ACCELERATORINFO.fields_by_name['id']._options = None
|
28
28
|
_ACCELERATORINFO.fields_by_name['id']._serialized_options = b'\342\336\037\002ID'
|
29
|
-
_CAMERADRIVER._serialized_start=
|
30
|
-
_CAMERADRIVER._serialized_end=
|
31
|
-
_MODELRUNTIMETYPE._serialized_start=
|
32
|
-
_MODELRUNTIMETYPE._serialized_end=
|
33
|
-
_IREETARGET._serialized_start=
|
34
|
-
_IREETARGET._serialized_end=
|
35
|
-
_OPENVINOTARGET._serialized_start=
|
36
|
-
_OPENVINOTARGET._serialized_end=
|
29
|
+
_CAMERADRIVER._serialized_start=2162
|
30
|
+
_CAMERADRIVER._serialized_end=2252
|
31
|
+
_MODELRUNTIMETYPE._serialized_start=2255
|
32
|
+
_MODELRUNTIMETYPE._serialized_end=2509
|
33
|
+
_IREETARGET._serialized_start=2511
|
34
|
+
_IREETARGET._serialized_end=2618
|
35
|
+
_OPENVINOTARGET._serialized_start=2620
|
36
|
+
_OPENVINOTARGET._serialized_end=2718
|
37
37
|
_CAMERADRIVERINFO._serialized_start=87
|
38
38
|
_CAMERADRIVERINFO._serialized_end=169
|
39
39
|
_CAMERAMODE._serialized_start=172
|
@@ -52,12 +52,14 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
52
52
|
_IREERUNTIMEINFO._serialized_end=1096
|
53
53
|
_OPENVINORUNTIMEINFO._serialized_start=1098
|
54
54
|
_OPENVINORUNTIMEINFO._serialized_end=1214
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
55
|
+
_HABANARUNTIMEINFO._serialized_start=1216
|
56
|
+
_HABANARUNTIMEINFO._serialized_end=1264
|
57
|
+
_TENSORRTRUNTIMEINFO._serialized_start=1266
|
58
|
+
_TENSORRTRUNTIMEINFO._serialized_end=1339
|
59
|
+
_MODELRUNTIMEINFO._serialized_start=1342
|
60
|
+
_MODELRUNTIMEINFO._serialized_end=1742
|
61
|
+
_ACCELERATORINFO._serialized_start=1745
|
62
|
+
_ACCELERATORINFO._serialized_end=2160
|
63
|
+
_ACCELERATORINFO_ACCELERATORKIND._serialized_start=2061
|
64
|
+
_ACCELERATORINFO_ACCELERATORKIND._serialized_end=2160
|
63
65
|
# @@protoc_insertion_point(module_scope)
|
@@ -16,7 +16,7 @@ from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb
|
|
16
16
|
from gml.proto.src.common.typespb import uuid_pb2 as src_dot_common_dot_typespb_dot_uuid__pb2
|
17
17
|
|
18
18
|
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#src/api/corepb/v1/mediastream.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x1dsrc/common/typespb/uuid.proto\"3\n\x05Label\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x14\n\x05score\x18\x02 \x01(\x02R\x05score\"d\n\x14NormalizedCenterRect\x12\x0e\n\x02xc\x18\x01 \x01(\x02R\x02xc\x12\x0e\n\x02yc\x18\x02 \x01(\x02R\x02yc\x12\x14\n\x05width\x18\x03 \x01(\x02R\x05width\x12\x16\n\x06height\x18\x04 \x01(\x02R\x06height\"G\n\x0e\x43lassification\x12\x35\n\x05label\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.LabelR\x05label\"\xcd\x01\n\tDetection\x12\x35\n\x05label\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.LabelR\x05label\x12Q\n\x0c\x62ounding_box\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.NormalizedCenterRectR\x0b\x62oundingBox\x12\x36\n\x08track_id\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x07trackId\"R\n\rDetectionList\x12\x41\n\tdetection\x18\x01 \x03(\x0b\x32#.gml.internal.api.core.v1.DetectionR\tdetection\"<\n\x0eTracksMetadata\x12*\n\x11removed_track_ids\x18\x01 \x03(\x03R\x0fremovedTrackIds\"X\n\x10SegmentationMask\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12.\n\x13run_length_encoding\x18\x02 \x03(\x05R\x11runLengthEncoding\"~\n\x0cSegmentation\x12@\n\x05masks\x18\x01 \x03(\x0b\x32*.gml.internal.api.core.v1.SegmentationMaskR\x05masks\x12\x14\n\x05width\x18\x02 \x01(\x03R\x05width\x12\x16\n\x06height\x18\x03 \x01(\x03R\x06height\"F\n\x16PerPixelRegressionMask\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x16\n\x06values\x18\x02 \x03(\x01R\x06values\"\x8a\x01\n\x12PerPixelRegression\x12\x46\n\x05masks\x18\x01 \x03(\x0b\x32\x30.gml.internal.api.core.v1.PerPixelRegressionMaskR\x05masks\x12\x14\n\x05width\x18\x02 \x01(\x03R\x05width\x12\x16\n\x06height\x18\x03 \x01(\x03R\x06height\"8\n\nRegression\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x14\n\x05value\x18\x02 \x01(\x01R\x05value\"\xbb\x01\n\x0eImageHistogram\x12\x45\n\x07\x63hannel\x18\x01 \x01(\x0e\x32+.gml.internal.api.core.v1.ImageColorChannelR\x07\x63hannel\x12\x10\n\x03min\x18\x02 \x01(\x01R\x03min\x12\x10\n\x03max\x18\x03 \x01(\x01R\x03max\x12\x10\n\x03num\x18\x04 \x01(\x03R\x03num\x12\x10\n\x03sum\x18\x05 \x01(\x01R\x03sum\x12\x1a\n\x06\x62ucket\x18\x06 \x03(\x03\x42\x02\x10\x01R\x06\x62ucket\"_\n\x13ImageHistogramBatch\x12H\n\nhistograms\x18\x01 \x03(\x0b\x32(.gml.internal.api.core.v1.ImageHistogramR\nhistograms\"e\n\x13ImageQualityMetrics\x12#\n\rbrisque_score\x18\x01 \x01(\x01R\x0c\x62risqueScore\x12)\n\x10\x62lurriness_score\x18\x02 \x01(\x01R\x0f\x62lurrinessScore\"\xe5\x04\n\x11ImageOverlayChunk\x12\x31\n\x08\x66rame_ts\x18\x01 \x01(\x03\x42\x16\xe2\xde\x1f\x07\x46rameTS\xea\xde\x1f\x07\x66rameTSR\x07\x66rameTS\x12\x19\n\x03\x65of\x18\x02 \x01(\x08\x42\x07\xe2\xde\x1f\x03\x45OFR\x03\x65of\x12I\n\ndetections\x18\x64 \x01(\x0b\x32\'.gml.internal.api.core.v1.DetectionListH\x00R\ndetections\x12L\n\x0csegmentation\x18\x65 \x01(\x0b\x32&.gml.internal.api.core.v1.SegmentationH\x00R\x0csegmentation\x12R\n\x0e\x63lassification\x18\x66 \x01(\x0b\x32(.gml.internal.api.core.v1.ClassificationH\x00R\x0e\x63lassification\x12P\n\nhistograms\x18\xc8\x01 \x01(\x0b\x32-.gml.internal.api.core.v1.ImageHistogramBatchH\x00R\nhistograms\x12U\n\rimage_quality\x18\xac\x02 \x01(\x0b\x32-.gml.internal.api.core.v1.ImageQualityMetricsH\x00R\x0cimageQuality\x12\x61\n\x14per_pixel_regression\x18\x90\x03 \x01(\x0b\x32,.gml.internal.api.core.v1.PerPixelRegressionH\x00R\x12perPixelRegressionB\t\n\x07overlay\"\x81\x01\n\tH264Chunk\x12\x31\n\x08\x66rame_ts\x18\x01 \x01(\x03\x42\x16\xe2\xde\x1f\x07\x46rameTS\xea\xde\x1f\x07\x66rameTSR\x07\x66rameTS\x12\x19\n\x03\x65of\x18\x02 \x01(\x08\x42\x07\xe2\xde\x1f\x03\x45OFR\x03\x65of\x12&\n\x08nal_data\x18\x03 \x01(\x0c\x42\x0b\xe2\xde\x1f\x07NALDataR\x07nalData\"A\n\x0bVideoHeader\x12\x14\n\x05width\x18\x01 \x01(\x03R\x05width\x12\x16\n\x06height\x18\x02 \x01(\x03R\x06heightJ\x04\x08\x03\x10\x04\"p\n\tTextBatch\x12\x12\n\x04text\x18\x01 \x01(\tR\x04text\x12\x19\n\x03\x65os\x18\x02 \x01(\x08\x42\x07\xe2\xde\x1f\x03\x45OSR\x03\x65os\x12\x34\n\x07\x63onv_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x43onvIDR\x06\x63onvId*\xac\x01\n\x11ImageColorChannel\x12\x1f\n\x1bIMAGE_COLOR_CHANNEL_UNKNOWN\x10\x00\x12\x1c\n\x18IMAGE_COLOR_CHANNEL_GRAY\x10\x01\x12\x1b\n\x17IMAGE_COLOR_CHANNEL_RED\x10\x02\x12\x1d\n\x19IMAGE_COLOR_CHANNEL_GREEN\x10\x03\x12\x1c\n\x18IMAGE_COLOR_CHANNEL_BLUE\x10\x04\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#src/api/corepb/v1/mediastream.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x1dsrc/common/typespb/uuid.proto\"3\n\x05Label\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x14\n\x05score\x18\x02 \x01(\x02R\x05score\"d\n\x14NormalizedCenterRect\x12\x0e\n\x02xc\x18\x01 \x01(\x02R\x02xc\x12\x0e\n\x02yc\x18\x02 \x01(\x02R\x02yc\x12\x14\n\x05width\x18\x03 \x01(\x02R\x05width\x12\x16\n\x06height\x18\x04 \x01(\x02R\x06height\"G\n\x0e\x43lassification\x12\x35\n\x05label\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.LabelR\x05label\"\xcd\x01\n\tDetection\x12\x35\n\x05label\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.LabelR\x05label\x12Q\n\x0c\x62ounding_box\x18\x02 \x01(\x0b\x32..gml.internal.api.core.v1.NormalizedCenterRectR\x0b\x62oundingBox\x12\x36\n\x08track_id\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueR\x07trackId\"R\n\rDetectionList\x12\x41\n\tdetection\x18\x01 \x03(\x0b\x32#.gml.internal.api.core.v1.DetectionR\tdetection\"<\n\x0eTracksMetadata\x12*\n\x11removed_track_ids\x18\x01 \x03(\x03R\x0fremovedTrackIds\"X\n\x10SegmentationMask\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12.\n\x13run_length_encoding\x18\x02 \x03(\x05R\x11runLengthEncoding\"~\n\x0cSegmentation\x12@\n\x05masks\x18\x01 \x03(\x0b\x32*.gml.internal.api.core.v1.SegmentationMaskR\x05masks\x12\x14\n\x05width\x18\x02 \x01(\x03R\x05width\x12\x16\n\x06height\x18\x03 \x01(\x03R\x06height\"F\n\x16PerPixelRegressionMask\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x16\n\x06values\x18\x02 \x03(\x01R\x06values\"\x8a\x01\n\x12PerPixelRegression\x12\x46\n\x05masks\x18\x01 \x03(\x0b\x32\x30.gml.internal.api.core.v1.PerPixelRegressionMaskR\x05masks\x12\x14\n\x05width\x18\x02 \x01(\x03R\x05width\x12\x16\n\x06height\x18\x03 \x01(\x03R\x06height\"8\n\nRegression\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x14\n\x05value\x18\x02 \x01(\x01R\x05value\"\xbb\x01\n\x0eImageHistogram\x12\x45\n\x07\x63hannel\x18\x01 \x01(\x0e\x32+.gml.internal.api.core.v1.ImageColorChannelR\x07\x63hannel\x12\x10\n\x03min\x18\x02 \x01(\x01R\x03min\x12\x10\n\x03max\x18\x03 \x01(\x01R\x03max\x12\x10\n\x03num\x18\x04 \x01(\x03R\x03num\x12\x10\n\x03sum\x18\x05 \x01(\x01R\x03sum\x12\x1a\n\x06\x62ucket\x18\x06 \x03(\x03\x42\x02\x10\x01R\x06\x62ucket\"_\n\x13ImageHistogramBatch\x12H\n\nhistograms\x18\x01 \x03(\x0b\x32(.gml.internal.api.core.v1.ImageHistogramR\nhistograms\"e\n\x13ImageQualityMetrics\x12#\n\rbrisque_score\x18\x01 \x01(\x01R\x0c\x62risqueScore\x12)\n\x10\x62lurriness_score\x18\x02 \x01(\x01R\x0f\x62lurrinessScore\"\xe5\x04\n\x11ImageOverlayChunk\x12\x31\n\x08\x66rame_ts\x18\x01 \x01(\x03\x42\x16\xe2\xde\x1f\x07\x46rameTS\xea\xde\x1f\x07\x66rameTSR\x07\x66rameTS\x12\x19\n\x03\x65of\x18\x02 \x01(\x08\x42\x07\xe2\xde\x1f\x03\x45OFR\x03\x65of\x12I\n\ndetections\x18\x64 \x01(\x0b\x32\'.gml.internal.api.core.v1.DetectionListH\x00R\ndetections\x12L\n\x0csegmentation\x18\x65 \x01(\x0b\x32&.gml.internal.api.core.v1.SegmentationH\x00R\x0csegmentation\x12R\n\x0e\x63lassification\x18\x66 \x01(\x0b\x32(.gml.internal.api.core.v1.ClassificationH\x00R\x0e\x63lassification\x12P\n\nhistograms\x18\xc8\x01 \x01(\x0b\x32-.gml.internal.api.core.v1.ImageHistogramBatchH\x00R\nhistograms\x12U\n\rimage_quality\x18\xac\x02 \x01(\x0b\x32-.gml.internal.api.core.v1.ImageQualityMetricsH\x00R\x0cimageQuality\x12\x61\n\x14per_pixel_regression\x18\x90\x03 \x01(\x0b\x32,.gml.internal.api.core.v1.PerPixelRegressionH\x00R\x12perPixelRegressionB\t\n\x07overlay\"\x81\x01\n\tH264Chunk\x12\x31\n\x08\x66rame_ts\x18\x01 \x01(\x03\x42\x16\xe2\xde\x1f\x07\x46rameTS\xea\xde\x1f\x07\x66rameTSR\x07\x66rameTS\x12\x19\n\x03\x65of\x18\x02 \x01(\x08\x42\x07\xe2\xde\x1f\x03\x45OFR\x03\x65of\x12&\n\x08nal_data\x18\x03 \x01(\x0c\x42\x0b\xe2\xde\x1f\x07NALDataR\x07nalData\"A\n\x0bVideoHeader\x12\x14\n\x05width\x18\x01 \x01(\x03R\x05width\x12\x16\n\x06height\x18\x02 \x01(\x03R\x06heightJ\x04\x08\x03\x10\x04\"p\n\tTextBatch\x12\x12\n\x04text\x18\x01 \x01(\tR\x04text\x12\x19\n\x03\x65os\x18\x02 \x01(\x08\x42\x07\xe2\xde\x1f\x03\x45OSR\x03\x65os\x12\x34\n\x07\x63onv_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x43onvIDR\x06\x63onvId\"\xd3\x01\n\x0f\x45ndpointRequest\x12L\n\x0f\x63onversation_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0e\x43onversationIDR\x0e\x63onversationId\x12=\n\nrequest_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\r\xe2\xde\x1f\tRequestIDR\trequestId\x12\x16\n\x06prompt\x18\x03 \x01(\tR\x06prompt\x12\x1b\n\timage_url\x18\x04 \x01(\tR\x08imageUrl\"\x9f\x01\n\x10\x45ndpointResponse\x12L\n\x0f\x63onversation_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x12\xe2\xde\x1f\x0e\x43onversationIDR\x0e\x63onversationId\x12=\n\nrequest_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\r\xe2\xde\x1f\tRequestIDR\trequestId*\xac\x01\n\x11ImageColorChannel\x12\x1f\n\x1bIMAGE_COLOR_CHANNEL_UNKNOWN\x10\x00\x12\x1c\n\x18IMAGE_COLOR_CHANNEL_GRAY\x10\x01\x12\x1b\n\x17IMAGE_COLOR_CHANNEL_RED\x10\x02\x12\x1d\n\x19IMAGE_COLOR_CHANNEL_GREEN\x10\x03\x12\x1c\n\x18IMAGE_COLOR_CHANNEL_BLUE\x10\x04\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
20
20
|
|
21
21
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
22
22
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.mediastream_pb2', globals())
|
@@ -40,8 +40,16 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
40
40
|
_TEXTBATCH.fields_by_name['eos']._serialized_options = b'\342\336\037\003EOS'
|
41
41
|
_TEXTBATCH.fields_by_name['conv_id']._options = None
|
42
42
|
_TEXTBATCH.fields_by_name['conv_id']._serialized_options = b'\342\336\037\006ConvID'
|
43
|
-
|
44
|
-
|
43
|
+
_ENDPOINTREQUEST.fields_by_name['conversation_id']._options = None
|
44
|
+
_ENDPOINTREQUEST.fields_by_name['conversation_id']._serialized_options = b'\342\336\037\016ConversationID'
|
45
|
+
_ENDPOINTREQUEST.fields_by_name['request_id']._options = None
|
46
|
+
_ENDPOINTREQUEST.fields_by_name['request_id']._serialized_options = b'\342\336\037\tRequestID'
|
47
|
+
_ENDPOINTRESPONSE.fields_by_name['conversation_id']._options = None
|
48
|
+
_ENDPOINTRESPONSE.fields_by_name['conversation_id']._serialized_options = b'\342\336\037\016ConversationID'
|
49
|
+
_ENDPOINTRESPONSE.fields_by_name['request_id']._options = None
|
50
|
+
_ENDPOINTRESPONSE.fields_by_name['request_id']._serialized_options = b'\342\336\037\tRequestID'
|
51
|
+
_IMAGECOLORCHANNEL._serialized_start=2917
|
52
|
+
_IMAGECOLORCHANNEL._serialized_end=3089
|
45
53
|
_LABEL._serialized_start=150
|
46
54
|
_LABEL._serialized_end=201
|
47
55
|
_NORMALIZEDCENTERRECT._serialized_start=203
|
@@ -78,4 +86,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
78
86
|
_VIDEOHEADER._serialized_end=2424
|
79
87
|
_TEXTBATCH._serialized_start=2426
|
80
88
|
_TEXTBATCH._serialized_end=2538
|
89
|
+
_ENDPOINTREQUEST._serialized_start=2541
|
90
|
+
_ENDPOINTREQUEST._serialized_end=2752
|
91
|
+
_ENDPOINTRESPONSE._serialized_start=2755
|
92
|
+
_ENDPOINTRESPONSE._serialized_end=2914
|
81
93
|
# @@protoc_insertion_point(module_scope)
|
@@ -23,7 +23,7 @@ from gml.proto.src.common.typespb import uuid_pb2 as src_dot_common_dot_typespb_
|
|
23
23
|
from gml.proto.src.api.corepb.v1 import device_info_pb2 as src_dot_api_dot_corepb_dot_v1_dot_device__info__pb2
|
24
24
|
|
25
25
|
|
26
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"src/api/corepb/v1/model_exec.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a$mediapipe/framework/calculator.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a#src/api/corepb/v1/device_info.proto\"\xa7\x02\n\x0f\x42oundingBoxInfo\x12Z\n\nbox_format\x18\x01 \x01(\x0e\x32;.gml.internal.api.core.v1.BoundingBoxInfo.BoundingBoxFormatR\tboxFormat\x12%\n\x0e\x62ox_normalized\x18\x02 \x01(\x08R\rboxNormalized\"\x90\x01\n\x11\x42oundingBoxFormat\x12\x1f\n\x1b\x42OUNDING_BOX_FORMAT_UNKNOWN\x10\x00\x12\x1e\n\x1a\x42OUNDING_BOX_FORMAT_CXCYWH\x10\x01\x12\x1c\n\x18\x42OUNDING_BOX_FORMAT_YXYX\x10\x02\x12\x1c\n\x18\x42OUNDING_BOX_FORMAT_XYXY\x10\x03\"\xd8\x08\n\x16ImagePreprocessingStep\x12[\n\x04kind\x18\x01 \x01(\x0e\x32G.gml.internal.api.core.v1.ImagePreprocessingStep.ImagePreprocessingKindR\x04kind\x12s\n\x11\x63onversion_params\x18\x02 \x01(\x0b\x32\x46.gml.internal.api.core.v1.ImagePreprocessingStep.ImageConversionParamsR\x10\x63onversionParams\x12g\n\rresize_params\x18\x03 \x01(\x0b\x32\x42.gml.internal.api.core.v1.ImagePreprocessingStep.ImageResizeParamsR\x0cresizeParams\x12v\n\x12standardize_params\x18\x04 \x01(\x0b\x32G.gml.internal.api.core.v1.ImagePreprocessingStep.ImageStandardizeParamsR\x11standardizeParams\x1an\n\x15ImageConversionParams\x12\x14\n\x05scale\x18\x01 \x01(\x08R\x05scale\x12?\n\x0cscale_factor\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValueR\x0bscaleFactor\x1a\x90\x02\n\x11ImageResizeParams\x12\x66\n\x04kind\x18\x01 \x01(\x0e\x32R.gml.internal.api.core.v1.ImagePreprocessingStep.ImageResizeParams.ImageResizeKindR\x04kind\"\x92\x01\n\x0fImageResizeKind\x12\x1d\n\x19IMAGE_RESIZE_KIND_UNKNOWN\x10\x00\x12\x1d\n\x19IMAGE_RESIZE_KIND_STRETCH\x10\x01\x12\x1f\n\x1bIMAGE_RESIZE_KIND_LETTERBOX\x10\x02\x12 \n\x1cIMAGE_RESIZE_KIND_CENTERCROP\x10\x03\x1aH\n\x16ImageStandardizeParams\x12\x14\n\x05means\x18\x01 \x03(\x02R\x05means\x12\x18\n\x07stddevs\x18\x02 \x03(\x02R\x07stddevs\"\xbd\x01\n\x16ImagePreprocessingKind\x12$\n IMAGE_PREPROCESSING_KIND_UNKNOWN\x10\x00\x12.\n*IMAGE_PREPROCESSING_KIND_CONVERT_TO_TENSOR\x10\x01\x12#\n\x1fIMAGE_PREPROCESSING_KIND_RESIZE\x10\x02\x12(\n$IMAGE_PREPROCESSING_KIND_STANDARDIZE\x10\x03\"\xba\x15\n\x12\x44imensionSemantics\x12W\n\x04kind\x18\x01 \x01(\x0e\x32\x43.gml.internal.api.core.v1.DimensionSemantics.DimensionSemanticsKindR\x04kind\x12q\n\x14image_channel_params\x18\x02 \x01(\x0b\x32?.gml.internal.api.core.v1.DimensionSemantics.ImageChannelParamsR\x12imageChannelParams\x12\x86\x01\n\x1b\x64\x65tection_candidates_params\x18\x03 \x01(\x0b\x32\x46.gml.internal.api.core.v1.DimensionSemantics.DetectionCandidatesParamsR\x19\x64\x65tectionCandidatesParams\x12z\n\x17\x64\x65tection_output_params\x18\x04 \x01(\x0b\x32\x42.gml.internal.api.core.v1.DimensionSemantics.DetectionOutputParamsR\x15\x64\x65tectionOutputParams\x12}\n\x18segmentation_mask_params\x18\x05 \x01(\x0b\x32\x43.gml.internal.api.core.v1.DimensionSemantics.SegmentationMaskParamsR\x16segmentationMaskParams\x12j\n\x11regression_params\x18\x06 \x01(\x0b\x32=.gml.internal.api.core.v1.DimensionSemantics.RegressionParamsR\x10regressionParams\x1a\x99\x02\n\x12ImageChannelParams\x12j\n\x06\x66ormat\x18\x01 \x01(\x0e\x32R.gml.internal.api.core.v1.DimensionSemantics.ImageChannelParams.ImageChannelFormatR\x06\x66ormat\"\x96\x01\n\x12ImageChannelFormat\x12 \n\x1cIMAGE_CHANNEL_FORMAT_UNKNOWN\x10\x00\x12\x1c\n\x18IMAGE_CHANNEL_FORMAT_RGB\x10\x01\x12\x1c\n\x18IMAGE_CHANNEL_FORMAT_BGR\x10\x02\x12\"\n\x1eIMAGE_CHANNEL_FORMAT_GRAYSCALE\x10\x03\x1a=\n\x19\x44\x65tectionCandidatesParams\x12 \n\x0cis_nms_boxes\x18\x01 \x01(\x08R\nisNmsBoxes\x1a\x8b\x04\n\x15\x44\x65tectionOutputParams\x12\x7f\n\x14\x62ox_coordinate_range\x18\x01 \x01(\x0b\x32M.gml.internal.api.core.v1.DimensionSemantics.DetectionOutputParams.IndexRangeR\x12\x62oxCoordinateRange\x12H\n\nbox_format\x18\x02 \x01(\x0b\x32).gml.internal.api.core.v1.BoundingBoxInfoR\tboxFormat\x12\x30\n\x14\x62ox_confidence_index\x18\x03 \x01(\x05R\x12\x62oxConfidenceIndex\x12\x1f\n\x0b\x63lass_index\x18\x04 \x01(\x05R\nclassIndex\x12p\n\x0cscores_range\x18\x05 \x01(\x0b\x32M.gml.internal.api.core.v1.DimensionSemantics.DetectionOutputParams.IndexRangeR\x0bscoresRange\x12*\n\x11scores_are_logits\x18\x06 \x01(\x08R\x0fscoresAreLogits\x1a\x36\n\nIndexRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x12\n\x04size\x18\x02 \x01(\x05R\x04size\x1a\xd1\x02\n\x16SegmentationMaskParams\x12l\n\x04kind\x18\x01 \x01(\x0e\x32X.gml.internal.api.core.v1.DimensionSemantics.SegmentationMaskParams.SegmentationMaskKindR\x04kind\"\xc8\x01\n\x14SegmentationMaskKind\x12\"\n\x1eSEGMENTATION_MASK_KIND_UNKNOWN\x10\x00\x12&\n\"SEGMENTATION_MASK_KIND_CLASS_LABEL\x10\x01\x12\x1f\n\x1bSEGMENTATION_MASK_KIND_BOOL\x10\x02\x12 \n\x1cSEGMENTATION_MASK_KIND_SCORE\x10\x03\x12!\n\x1dSEGMENTATION_MASK_KIND_LOGITS\x10\x04\x1a\\\n\x10RegressionParams\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x32\n\x05scale\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValueR\x05scale\"\xcc\x05\n\x16\x44imensionSemanticsKind\x12$\n DIMENSION_SEMANTICS_KIND_UNKNOWN\x10\x00\x12\"\n\x1e\x44IMENSION_SEMANTICS_KIND_BATCH\x10\x01\x12#\n\x1f\x44IMENSION_SEMANTICS_KIND_IGNORE\x10\x02\x12*\n&DIMENSION_SEMANTICS_KIND_IMAGE_CHANNEL\x10\x03\x12)\n%DIMENSION_SEMANTICS_KIND_IMAGE_HEIGHT\x10\x04\x12(\n$DIMENSION_SEMANTICS_KIND_IMAGE_WIDTH\x10\x05\x12\x31\n-DIMENSION_SEMANTICS_KIND_DETECTION_CANDIDATES\x10\x06\x12-\n)DIMENSION_SEMANTICS_KIND_DETECTION_OUTPUT\x10\x07\x12)\n%DIMENSION_SEMANTICS_KIND_CLASS_SCORES\x10\x08\x12\x36\n2DIMENSION_SEMANTICS_KIND_SEGMENTATION_MASK_CHANNEL\x10\t\x12)\n%DIMENSION_SEMANTICS_KIND_CLASS_LABELS\x10\n\x12-\n)DIMENSION_SEMANTICS_KIND_REGRESSION_VALUE\x10\x0b\x12#\n\x1f\x44IMENSION_SEMANTICS_KIND_TOKENS\x10\x0c\x12+\n\'DIMENSION_SEMANTICS_KIND_ATTENTION_MASK\x10\r\x12)\n%DIMENSION_SEMANTICS_KIND_VOCAB_LOGITS\x10\x0e\x12&\n\"DIMENSION_SEMANTICS_KIND_EMBEDDING\x10\x0f\"\xe9\x02\n\x0fTensorSemantics\x12L\n\ndimensions\x18\x01 \x03(\x0b\x32,.gml.internal.api.core.v1.DimensionSemanticsR\ndimensions\x12Q\n\x04kind\x18\x02 \x01(\x0e\x32=.gml.internal.api.core.v1.TensorSemantics.TensorSemanticsKindR\x04kind\"\xb4\x01\n\x13TensorSemanticsKind\x12!\n\x1dTENSOR_SEMANTICS_KIND_UNKNOWN\x10\x00\x12 \n\x1cTENSOR_SEMANTICS_KIND_UNUSED\x10\x01\x12#\n\x1fTENSOR_SEMANTICS_KIND_DIMENSION\x10\x02\x12\x33\n/TENSOR_SEMANTICS_KIND_ATTENTION_KEY_VALUE_CACHE\x10\x03\"6\n\x10GenerationConfig\x12\"\n\reos_token_ids\x18\x01 \x03(\x03R\x0b\x65osTokenIds\"J\n\rKVCacheConfig\x12\x39\n\x04kind\x18\x01 \x01(\x0e\x32%.gml.internal.api.core.v1.KVCacheKindR\x04kind\"i\n\x05Model\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12\x37\n\x04info\x18\x02 \x01(\x0b\x32#.gml.internal.api.core.v1.ModelInfoR\x04info\";\n\x0bPackageInfo\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\"[\n\x0fTracingMetadata\x12H\n\x0cpackage_info\x18\x01 \x03(\x0b\x32%.gml.internal.api.core.v1.PackageInfoR\x0bpackageInfo\"\x93\x01\n\x11\x44\x65\x66\x61ultRopeConfig\x12\x14\n\x05theta\x18\x01 \x01(\x01R\x05theta\x12\x36\n\x17max_position_embeddings\x18\x02 \x01(\x03R\x15maxPositionEmbeddings\x12\x30\n\x14rotary_embedding_dim\x18\x03 \x01(\x03R\x12rotaryEmbeddingDim\"\xc5\x02\n\x10Llama3RopeConfig\x12\x14\n\x05theta\x18\x01 \x01(\x01R\x05theta\x12\x36\n\x17max_position_embeddings\x18\x02 \x01(\x03R\x15maxPositionEmbeddings\x12\x30\n\x14rotary_embedding_dim\x18\x03 \x01(\x03R\x12rotaryEmbeddingDim\x12\x16\n\x06\x66\x61\x63tor\x18\x04 \x01(\x01R\x06\x66\x61\x63tor\x12(\n\x10high_freq_factor\x18\x05 \x01(\x01R\x0ehighFreqFactor\x12&\n\x0flow_freq_factor\x18\x06 \x01(\x01R\rlowFreqFactor\x12G\n original_max_position_embeddings\x18\x07 \x01(\x03R\x1doriginalMaxPositionEmbeddings\"\x95\x02\n\x17PositionEmbeddingConfig\x12\x43\n\x04kind\x18\x01 \x01(\x0e\x32/.gml.internal.api.core.v1.PositionEmbeddingKindR\x04kind\x12[\n\x13\x64\x65\x66\x61ult_rope_config\x18\x02 \x01(\x0b\x32+.gml.internal.api.core.v1.DefaultRopeConfigR\x11\x64\x65\x66\x61ultRopeConfig\x12X\n\x12llama3_rope_config\x18\x03 \x01(\x0b\x32*.gml.internal.api.core.v1.Llama3RopeConfigR\x10llama3RopeConfig\"\x82\x01\n\x11TransformerConfig\x12m\n\x19position_embedding_config\x18\x01 \x01(\x0b\x32\x31.gml.internal.api.core.v1.PositionEmbeddingConfigR\x17positionEmbeddingConfig\"\x80\r\n\tModelInfo\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x41\n\x04kind\x18\x02 \x01(\x0e\x32-.gml.internal.api.core.v1.ModelInfo.ModelKindR\x04kind\x12N\n\x06\x66ormat\x18\x03 \x01(\x0e\x32\x36.gml.internal.api.core.v1.ModelInfo.ModelStorageFormatR\x06\x66ormat\x12T\n\x0b\x66ile_assets\x18\x04 \x03(\x0b\x32\x33.gml.internal.api.core.v1.ModelInfo.FileAssetsEntryR\nfileAssets\x12_\n\x16input_tensor_semantics\x18\x05 \x03(\x0b\x32).gml.internal.api.core.v1.TensorSemanticsR\x14inputTensorSemantics\x12\x61\n\x17output_tensor_semantics\x18\x06 \x03(\x0b\x32).gml.internal.api.core.v1.TensorSemanticsR\x15outputTensorSemantics\x12!\n\x0c\x63lass_labels\x18\x64 \x03(\tR\x0b\x63lassLabels\x12\x46\n\tbbox_info\x18\x65 \x01(\x0b\x32).gml.internal.api.core.v1.BoundingBoxInfoR\x08\x62\x62oxInfo\x12l\n\x19image_preprocessing_steps\x18\x66 \x03(\x0b\x32\x30.gml.internal.api.core.v1.ImagePreprocessingStepR\x17imagePreprocessingSteps\x12W\n\x11generation_config\x18g \x01(\x0b\x32*.gml.internal.api.core.v1.GenerationConfigR\x10generationConfig\x12O\n\x0fkv_cache_config\x18h \x01(\x0b\x32\'.gml.internal.api.core.v1.KVCacheConfigR\rkvCacheConfig\x12T\n\x10tracing_metadata\x18i \x01(\x0b\x32).gml.internal.api.core.v1.TracingMetadataR\x0ftracingMetadata\x12Z\n\x12transformer_config\x18j \x01(\x0b\x32+.gml.internal.api.core.v1.TransformerConfigR\x11transformerConfig\x1aN\n\x0f\x46ileAssetsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDR\x05value:\x02\x38\x01\"\xd8\x01\n\tModelKind\x12\x16\n\x12MODEL_KIND_UNKNOWN\x10\x00\x12\x14\n\x10MODEL_KIND_TORCH\x10\x01\x12\x1a\n\x16MODEL_KIND_TORCHSCRIPT\x10\x02\x12\x13\n\x0fMODEL_KIND_ONNX\x10\x03\x12\x15\n\x11MODEL_KIND_TFLITE\x10\x04\x12\x17\n\x13MODEL_KIND_OPENVINO\x10\x05\x12$\n MODEL_KIND_HUGGINGFACE_TOKENIZER\x10\x06\x12\x16\n\x12MODEL_KIND_HAILORT\x10\x07\"\xd1\x02\n\x12ModelStorageFormat\x12 \n\x1cMODEL_STORAGE_FORMAT_UNKNOWN\x10\x00\x12&\n\"MODEL_STORAGE_FORMAT_MLIR_BYTECODE\x10\x01\x12\"\n\x1eMODEL_STORAGE_FORMAT_MLIR_TEXT\x10\x02\x12!\n\x1dMODEL_STORAGE_FORMAT_PROTOBUF\x10\x03\x12#\n\x1fMODEL_STORAGE_FORMAT_PROTO_TEXT\x10\x04\x12#\n\x1fMODEL_STORAGE_FORMAT_FLATBUFFER\x10\x05\x12!\n\x1dMODEL_STORAGE_FORMAT_OPENVINO\x10\x06\x12\x1f\n\x1bMODEL_STORAGE_FORMAT_OPAQUE\x10\x07\x12\x1c\n\x18MODEL_STORAGE_FORMAT_HEF\x10\x08\"\xa8\x02\n\x04Node\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x45\n\x04kind\x18\x02 \x01(\x0e\x32\x31.gml.internal.api.core.v1.LogicalPipelineNodeKindR\x04kind\x12H\n\nattributes\x18\x03 \x03(\x0b\x32(.gml.internal.api.core.v1.NodeAttributesR\nattributes\x12;\n\x06inputs\x18\x04 \x03(\x0b\x32#.gml.internal.api.core.v1.NodeInputR\x06inputs\x12>\n\x07outputs\x18\x05 \x03(\x0b\x32$.gml.internal.api.core.v1.NodeOutputR\x07outputs\"\x1e\n\x08ParamRef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"\xab\x04\n\x05Value\x12!\n\x0bstring_data\x18\x01 \x01(\tH\x00R\nstringData\x12\x1f\n\nint64_data\x18\x02 \x01(\x03H\x00R\tint64Data\x12!\n\x0b\x64ouble_data\x18\x03 \x01(\x01H\x00R\ndoubleData\x12\x1d\n\tbool_data\x18\x04 \x01(\x08H\x00R\x08\x62oolData\x12I\n\x0blambda_data\x18\x05 \x01(\x0b\x32&.gml.internal.api.core.v1.Value.LambdaH\x00R\nlambdaData\x12I\n\nmodel_data\x18\x06 \x01(\x0b\x32(.gml.internal.api.core.v1.Value.ModelRefH\x00R\tmodelData\x12\x43\n\nparam_data\x18\x07 \x01(\x0b\x32\".gml.internal.api.core.v1.ParamRefH\x00R\tparamData\x1aG\n\x08ModelRef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\'\n\x02id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x1ap\n\x06Lambda\x12\x16\n\x06inputs\x18\x01 \x03(\tR\x06inputs\x12\x18\n\x07outputs\x18\x02 \x03(\tR\x07outputs\x12\x34\n\x05nodes\x18\x03 \x03(\x0b\x32\x1e.gml.internal.api.core.v1.NodeR\x05nodesB\x06\n\x04\x64\x61ta\"[\n\x0eNodeAttributes\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32\x1f.gml.internal.api.core.v1.ValueR\x05value\"\x9c\x03\n\tNodeInput\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x45\n\x0bparam_value\x18\x02 \x01(\x0b\x32\".gml.internal.api.core.v1.ParamRefH\x00R\nparamValue\x12_\n\x11node_output_value\x18\x03 \x01(\x0b\x32\x31.gml.internal.api.core.v1.NodeInput.NodeOutputRefH\x00R\x0fnodeOutputValue\x12\x62\n\x12lambda_input_value\x18\x04 \x01(\x0b\x32\x32.gml.internal.api.core.v1.NodeInput.LambdaInputRefH\x00R\x10lambdaInputValue\x1a@\n\rNodeOutputRef\x12\x1b\n\tnode_name\x18\x01 \x01(\tR\x08nodeName\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x1a$\n\x0eLambdaInputRef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04nameB\x07\n\x05value\" \n\nNodeOutput\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"a\n\x05Param\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x44\n\rdefault_value\x18\x02 \x01(\x0b\x32\x1f.gml.internal.api.core.v1.ValueR\x0c\x64\x65\x66\x61ultValue\"\xbc\x01\n\x0fLogicalPipeline\x12\x37\n\x06params\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.ParamR\x06params\x12\x34\n\x05nodes\x18\x02 \x03(\x0b\x32\x1e.gml.internal.api.core.v1.NodeR\x05nodes\x12:\n\tmodel_ids\x18\x03 \x03(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08ModelIDsR\x08modelIds\"\xab\x04\n\x12PipelineDeployment\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12V\n\x13logical_pipeline_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12\x37\n\x08\x66leet_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x18\n\x07version\x18\x06 \x01(\x03R\x07version\x12\x44\n\x04spec\x18\x07 \x01(\x0b\x32\x30.gml.internal.api.core.v1.PipelineDeploymentSpecR\x04spec\x12J\n\x06status\x18\x08 \x01(\x0b\x32\x32.gml.internal.api.core.v1.PipelineDeploymentStatusR\x06status\x12\x39\n\ndeleted_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tdeletedAt\"W\n\x16PipelineDeploymentSpec\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\"q\n\x18PipelineDeploymentStatus\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reason\"\xdc\x03\n\x10PhysicalPipeline\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12_\n\x16pipeline_deployment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\x12:\n\tdevice_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\x04spec\x18\x06 \x01(\x0b\x32..gml.internal.api.core.v1.PhysicalPipelineSpecR\x04spec\x12H\n\x06status\x18\x07 \x01(\x0b\x32\x30.gml.internal.api.core.v1.PhysicalPipelineStatusR\x06status\"\xcd\x02\n\x14PhysicalPipelineSpec\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12=\n\x05graph\x18\x03 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x05graph\x12\x30\n\x14\x64\x65vice_resource_hash\x18\x05 \x01(\tR\x12\x64\x65viceResourceHash\x12M\n\x0c\x65xec_runtime\x18\x06 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x0b\x65xecRuntime\x12\x1c\n\x07runtime\x18\x04 \x01(\tB\x02\x18\x01R\x07runtime\"\x88\x04\n\x16PhysicalPipelineStatus\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12\x16\n\x06reason\x18\x04 \x01(\tR\x06reason\x12\x30\n\x14\x64\x65vice_resource_hash\x18\x05 \x01(\tR\x12\x64\x65viceResourceHash\x12\x66\n\rruntime_specs\x18\x07 \x03(\x0b\x32\x41.gml.internal.api.core.v1.PhysicalPipelineStatus.ModelRuntimeSpecR\x0cruntimeSpecs\x12\x1c\n\x07runtime\x18\x03 \x01(\tB\x02\x18\x01R\x07runtime\x12S\n\rexec_runtimes\x18\x06 \x03(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeB\x02\x18\x01R\x0c\x65xecRuntimes\x1ap\n\x10ModelRuntimeSpec\x12\x44\n\x07runtime\x18\x01 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x07runtime\x12\x16\n\x06\x64\x65vice\x18\x02 \x01(\tR\x06\x64\x65vice\"\x84\x01\n\x0c\x46ileResource\x12\x34\n\x07\x66ile_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x46ileIDR\x06\x66ileId\x12\x1d\n\nsize_bytes\x18\x02 \x01(\x04R\tsizeBytes\x12\x1f\n\x0bsha256_hash\x18\x03 \x01(\tR\nsha256Hash\"\x8b\x01\n\rExecutionSpec\x12\x36\n\x05graph\x18\x01 \x01(\x0b\x32 .mediapipe.CalculatorGraphConfigR\x05graph\x12\x42\n\nmodel_spec\x18\x02 \x03(\x0b\x32#.gml.internal.api.core.v1.ModelSpecR\tmodelSpec\"\\\n\nNamedAsset\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x04\x66ile\x18\x02 \x01(\x0b\x32&.gml.internal.api.core.v1.FileResourceR\x04\x66ile\"\xa3\x05\n\tModelSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\ronnx_blob_key\x18\x02 \x01(\tB\x0f\xe2\xde\x1f\x0bONNXBlobKeyR\x0bonnxBlobKey\x12Q\n\tonnx_file\x18\x03 \x01(\x0b\x32&.gml.internal.api.core.v1.FileResourceB\x0c\xe2\xde\x1f\x08ONNXFileR\x08onnxFile\x12\x45\n\x0bnamed_asset\x18\x04 \x03(\x0b\x32$.gml.internal.api.core.v1.NamedAssetR\nnamedAsset\x12M\n\x0c\x65xec_runtime\x18\x33 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x0b\x65xecRuntime\x12%\n\x0e\x61\x63\x63\x65lerator_id\x18\x34 \x01(\tR\racceleratorId\x12\x62\n\rtensorrt_spec\x18\x64 \x01(\x0b\x32+.gml.internal.api.core.v1.TensorRTModelSpecB\x10\xe2\xde\x1f\x0cTensorRTSpecR\x0ctensorrtSpec\x12\x62\n\ropenvino_spec\x18\x65 \x01(\x0b\x32+.gml.internal.api.core.v1.OpenVINOModelSpecB\x10\xe2\xde\x1f\x0cOpenVINOSpecR\x0copenvinoSpec\x12W\n\tiree_spec\x18\x66 \x01(\x0b\x32\'.gml.internal.api.core.v1.IREEModelSpecB\x11\xe2\xde\x1f\rIREEModelSpecR\x08ireeSpec\x12\x1c\n\x07runtime\x18\x32 \x01(\tB\x02\x18\x01R\x07runtime\"\xfe\x01\n\x11TensorRTModelSpec\x12h\n\x14optimization_profile\x18\x01 \x03(\x0b\x32\x35.gml.internal.api.core.v1.TensorRTOptimizationProfileR\x13optimizationProfile\x12&\n\x0f\x65ngine_blob_key\x18\x02 \x01(\tR\rengineBlobKey\x12W\n\x0fmem_pool_limits\x18\x03 \x01(\x0b\x32/.gml.internal.api.core.v1.TensorRTMemPoolLimitsR\rmemPoolLimits\"\x7f\n\x1bTensorRTOptimizationProfile\x12`\n\x12tensor_shape_range\x18\x01 \x03(\x0b\x32\x32.gml.internal.api.core.v1.TensorRTTensorShapeRangeR\x10tensorShapeRange\"w\n\x18TensorRTTensorShapeRange\x12\x1f\n\x0btensor_name\x18\x01 \x01(\tR\ntensorName\x12\x10\n\x03min\x18\x03 \x03(\x05R\x03min\x12\x10\n\x03opt\x18\x04 \x03(\x05R\x03opt\x12\x10\n\x03max\x18\x05 \x03(\x05R\x03maxJ\x04\x08\x02\x10\x03\"5\n\x15TensorRTMemPoolLimits\x12\x1c\n\tworkspace\x18\x01 \x01(\x03R\tworkspace\"\xab\x01\n\x11OpenVINOModelSpec\x12X\n\x0binput_shape\x18\x01 \x03(\x0b\x32\x37.gml.internal.api.core.v1.OpenVINOModelSpec.TensorShapeR\ninputShape\x12\x1b\n\tdevice_id\x18\x02 \x01(\tR\x08\x64\x65viceId\x1a\x1f\n\x0bTensorShape\x12\x10\n\x03\x64im\x18\x01 \x03(\x05R\x03\x64im\"M\n\rIREEModelSpec\x12\x1f\n\x0b\x64river_name\x18\x01 \x01(\tR\ndriverName\x12\x1b\n\tdevice_id\x18\x02 \x01(\x04R\x08\x64\x65viceId*_\n\x0bKVCacheKind\x12\x19\n\x15KV_CACHE_KIND_UNKNOWN\x10\x00\x12\x1c\n\x18KV_CACHE_KIND_CONTIGUOUS\x10\x01\x12\x17\n\x13KV_CACHE_KIND_PAGED\x10\x02*\x8f\x01\n\x15PositionEmbeddingKind\x12#\n\x1fPOSITION_EMBEDDING_KIND_UNKNOWN\x10\x00\x12(\n$POSITION_EMBEDDING_KIND_ROPE_DEFAULT\x10\x01\x12\'\n#POSITION_EMBEDDING_KIND_ROPE_LLAMA3\x10\x02*\xd2\x08\n\x17LogicalPipelineNodeKind\x12&\n\"LOGICAL_PIPELINE_NODE_KIND_UNKNOWN\x10\x00\x12,\n(LOGICAL_PIPELINE_NODE_KIND_CAMERA_SOURCE\x10\n\x12\x31\n-LOGICAL_PIPELINE_NODE_KIND_TEXT_STREAM_SOURCE\x10\x0b\x12&\n!LOGICAL_PIPELINE_NODE_KIND_DETECT\x10\xe8\x07\x12(\n#LOGICAL_PIPELINE_NODE_KIND_CLASSIFY\x10\xe9\x07\x12\'\n\"LOGICAL_PIPELINE_NODE_KIND_SEGMENT\x10\xea\x07\x12\x33\n.LOGICAL_PIPELINE_NODE_KIND_MULTI_PURPOSE_MODEL\x10\xeb\x07\x12\'\n\"LOGICAL_PIPELINE_NODE_KIND_REGRESS\x10\xec\x07\x12%\n LOGICAL_PIPELINE_NODE_KIND_TRACK\x10\xed\x07\x12/\n*LOGICAL_PIPELINE_NODE_KIND_GENERATE_TOKENS\x10\xee\x07\x12(\n#LOGICAL_PIPELINE_NODE_KIND_TOKENIZE\x10\xef\x07\x12*\n%LOGICAL_PIPELINE_NODE_KIND_DETOKENIZE\x10\xf0\x07\x12%\n LOGICAL_PIPELINE_NODE_KIND_EMBED\x10\xf1\x07\x12\x35\n0LOGICAL_PIPELINE_NODE_KIND_TEMPLATE_CHAT_MESSAGE\x10\xf2\x07\x12.\n)LOGICAL_PIPELINE_NODE_KIND_ESTIMATE_DEPTH\x10\xf3\x07\x12,\n\'LOGICAL_PIPELINE_NODE_KIND_FOR_EACH_ROI\x10\xdf\x0b\x12-\n(LOGICAL_PIPELINE_NODE_KIND_VECTOR_SEARCH\x10\xe0\x0b\x12\x34\n/LOGICAL_PIPELINE_NODE_KIND_FILTER_MOVING_TRACKS\x10\xe1\x0b\x12\x31\n,LOGICAL_PIPELINE_NODE_KIND_VIDEO_STREAM_SINK\x10\xd0\x0f\x12\x37\n2LOGICAL_PIPELINE_NODE_KIND_DETECTIONS_METRICS_SINK\x10\xd1\x0f\x12\x34\n/LOGICAL_PIPELINE_NODE_KIND_LATENCY_METRICS_SINK\x10\xd2\x0f\x12\x32\n-LOGICAL_PIPELINE_NODE_KIND_FRAME_METRICS_SINK\x10\xd3\x0f\x12\x30\n+LOGICAL_PIPELINE_NODE_KIND_TEXT_STREAM_SINK\x10\xd4\x0f*\xd7\x01\n\rPipelineState\x12\x1a\n\x16PIPELINE_STATE_UNKNOWN\x10\x00\x12\x1a\n\x16PIPELINE_STATE_PENDING\x10\x01\x12\x18\n\x14PIPELINE_STATE_READY\x10\x02\x12\x1a\n\x16PIPELINE_STATE_RUNNING\x10\x03\x12\x1e\n\x1aPIPELINE_STATE_TERMINATING\x10\x04\x12\x1d\n\x19PIPELINE_STATE_TERMINATED\x10\x05\x12\x19\n\x15PIPELINE_STATE_FAILED\x10\x06*\xc6\x01\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\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
26
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"src/api/corepb/v1/model_exec.proto\x12\x18gml.internal.api.core.v1\x1a\x14gogoproto/gogo.proto\x1a$mediapipe/framework/calculator.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x1dsrc/common/typespb/uuid.proto\x1a#src/api/corepb/v1/device_info.proto\"\xa7\x02\n\x0f\x42oundingBoxInfo\x12Z\n\nbox_format\x18\x01 \x01(\x0e\x32;.gml.internal.api.core.v1.BoundingBoxInfo.BoundingBoxFormatR\tboxFormat\x12%\n\x0e\x62ox_normalized\x18\x02 \x01(\x08R\rboxNormalized\"\x90\x01\n\x11\x42oundingBoxFormat\x12\x1f\n\x1b\x42OUNDING_BOX_FORMAT_UNKNOWN\x10\x00\x12\x1e\n\x1a\x42OUNDING_BOX_FORMAT_CXCYWH\x10\x01\x12\x1c\n\x18\x42OUNDING_BOX_FORMAT_YXYX\x10\x02\x12\x1c\n\x18\x42OUNDING_BOX_FORMAT_XYXY\x10\x03\"\xd8\x08\n\x16ImagePreprocessingStep\x12[\n\x04kind\x18\x01 \x01(\x0e\x32G.gml.internal.api.core.v1.ImagePreprocessingStep.ImagePreprocessingKindR\x04kind\x12s\n\x11\x63onversion_params\x18\x02 \x01(\x0b\x32\x46.gml.internal.api.core.v1.ImagePreprocessingStep.ImageConversionParamsR\x10\x63onversionParams\x12g\n\rresize_params\x18\x03 \x01(\x0b\x32\x42.gml.internal.api.core.v1.ImagePreprocessingStep.ImageResizeParamsR\x0cresizeParams\x12v\n\x12standardize_params\x18\x04 \x01(\x0b\x32G.gml.internal.api.core.v1.ImagePreprocessingStep.ImageStandardizeParamsR\x11standardizeParams\x1an\n\x15ImageConversionParams\x12\x14\n\x05scale\x18\x01 \x01(\x08R\x05scale\x12?\n\x0cscale_factor\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValueR\x0bscaleFactor\x1a\x90\x02\n\x11ImageResizeParams\x12\x66\n\x04kind\x18\x01 \x01(\x0e\x32R.gml.internal.api.core.v1.ImagePreprocessingStep.ImageResizeParams.ImageResizeKindR\x04kind\"\x92\x01\n\x0fImageResizeKind\x12\x1d\n\x19IMAGE_RESIZE_KIND_UNKNOWN\x10\x00\x12\x1d\n\x19IMAGE_RESIZE_KIND_STRETCH\x10\x01\x12\x1f\n\x1bIMAGE_RESIZE_KIND_LETTERBOX\x10\x02\x12 \n\x1cIMAGE_RESIZE_KIND_CENTERCROP\x10\x03\x1aH\n\x16ImageStandardizeParams\x12\x14\n\x05means\x18\x01 \x03(\x02R\x05means\x12\x18\n\x07stddevs\x18\x02 \x03(\x02R\x07stddevs\"\xbd\x01\n\x16ImagePreprocessingKind\x12$\n IMAGE_PREPROCESSING_KIND_UNKNOWN\x10\x00\x12.\n*IMAGE_PREPROCESSING_KIND_CONVERT_TO_TENSOR\x10\x01\x12#\n\x1fIMAGE_PREPROCESSING_KIND_RESIZE\x10\x02\x12(\n$IMAGE_PREPROCESSING_KIND_STANDARDIZE\x10\x03\"\xe5\x15\n\x12\x44imensionSemantics\x12W\n\x04kind\x18\x01 \x01(\x0e\x32\x43.gml.internal.api.core.v1.DimensionSemantics.DimensionSemanticsKindR\x04kind\x12q\n\x14image_channel_params\x18\x02 \x01(\x0b\x32?.gml.internal.api.core.v1.DimensionSemantics.ImageChannelParamsR\x12imageChannelParams\x12\x86\x01\n\x1b\x64\x65tection_candidates_params\x18\x03 \x01(\x0b\x32\x46.gml.internal.api.core.v1.DimensionSemantics.DetectionCandidatesParamsR\x19\x64\x65tectionCandidatesParams\x12z\n\x17\x64\x65tection_output_params\x18\x04 \x01(\x0b\x32\x42.gml.internal.api.core.v1.DimensionSemantics.DetectionOutputParamsR\x15\x64\x65tectionOutputParams\x12}\n\x18segmentation_mask_params\x18\x05 \x01(\x0b\x32\x43.gml.internal.api.core.v1.DimensionSemantics.SegmentationMaskParamsR\x16segmentationMaskParams\x12j\n\x11regression_params\x18\x06 \x01(\x0b\x32=.gml.internal.api.core.v1.DimensionSemantics.RegressionParamsR\x10regressionParams\x1a\x99\x02\n\x12ImageChannelParams\x12j\n\x06\x66ormat\x18\x01 \x01(\x0e\x32R.gml.internal.api.core.v1.DimensionSemantics.ImageChannelParams.ImageChannelFormatR\x06\x66ormat\"\x96\x01\n\x12ImageChannelFormat\x12 \n\x1cIMAGE_CHANNEL_FORMAT_UNKNOWN\x10\x00\x12\x1c\n\x18IMAGE_CHANNEL_FORMAT_RGB\x10\x01\x12\x1c\n\x18IMAGE_CHANNEL_FORMAT_BGR\x10\x02\x12\"\n\x1eIMAGE_CHANNEL_FORMAT_GRAYSCALE\x10\x03\x1a=\n\x19\x44\x65tectionCandidatesParams\x12 \n\x0cis_nms_boxes\x18\x01 \x01(\x08R\nisNmsBoxes\x1a\x8b\x04\n\x15\x44\x65tectionOutputParams\x12\x7f\n\x14\x62ox_coordinate_range\x18\x01 \x01(\x0b\x32M.gml.internal.api.core.v1.DimensionSemantics.DetectionOutputParams.IndexRangeR\x12\x62oxCoordinateRange\x12H\n\nbox_format\x18\x02 \x01(\x0b\x32).gml.internal.api.core.v1.BoundingBoxInfoR\tboxFormat\x12\x30\n\x14\x62ox_confidence_index\x18\x03 \x01(\x05R\x12\x62oxConfidenceIndex\x12\x1f\n\x0b\x63lass_index\x18\x04 \x01(\x05R\nclassIndex\x12p\n\x0cscores_range\x18\x05 \x01(\x0b\x32M.gml.internal.api.core.v1.DimensionSemantics.DetectionOutputParams.IndexRangeR\x0bscoresRange\x12*\n\x11scores_are_logits\x18\x06 \x01(\x08R\x0fscoresAreLogits\x1a\x36\n\nIndexRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x12\n\x04size\x18\x02 \x01(\x05R\x04size\x1a\xd1\x02\n\x16SegmentationMaskParams\x12l\n\x04kind\x18\x01 \x01(\x0e\x32X.gml.internal.api.core.v1.DimensionSemantics.SegmentationMaskParams.SegmentationMaskKindR\x04kind\"\xc8\x01\n\x14SegmentationMaskKind\x12\"\n\x1eSEGMENTATION_MASK_KIND_UNKNOWN\x10\x00\x12&\n\"SEGMENTATION_MASK_KIND_CLASS_LABEL\x10\x01\x12\x1f\n\x1bSEGMENTATION_MASK_KIND_BOOL\x10\x02\x12 \n\x1cSEGMENTATION_MASK_KIND_SCORE\x10\x03\x12!\n\x1dSEGMENTATION_MASK_KIND_LOGITS\x10\x04\x1a\\\n\x10RegressionParams\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x32\n\x05scale\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.DoubleValueR\x05scale\"\xf7\x05\n\x16\x44imensionSemanticsKind\x12$\n DIMENSION_SEMANTICS_KIND_UNKNOWN\x10\x00\x12\"\n\x1e\x44IMENSION_SEMANTICS_KIND_BATCH\x10\x01\x12#\n\x1f\x44IMENSION_SEMANTICS_KIND_IGNORE\x10\x02\x12*\n&DIMENSION_SEMANTICS_KIND_IMAGE_CHANNEL\x10\x03\x12)\n%DIMENSION_SEMANTICS_KIND_IMAGE_HEIGHT\x10\x04\x12(\n$DIMENSION_SEMANTICS_KIND_IMAGE_WIDTH\x10\x05\x12\x31\n-DIMENSION_SEMANTICS_KIND_DETECTION_CANDIDATES\x10\x06\x12-\n)DIMENSION_SEMANTICS_KIND_DETECTION_OUTPUT\x10\x07\x12)\n%DIMENSION_SEMANTICS_KIND_CLASS_SCORES\x10\x08\x12\x36\n2DIMENSION_SEMANTICS_KIND_SEGMENTATION_MASK_CHANNEL\x10\t\x12)\n%DIMENSION_SEMANTICS_KIND_CLASS_LABELS\x10\n\x12-\n)DIMENSION_SEMANTICS_KIND_REGRESSION_VALUE\x10\x0b\x12#\n\x1f\x44IMENSION_SEMANTICS_KIND_TOKENS\x10\x0c\x12+\n\'DIMENSION_SEMANTICS_KIND_ATTENTION_MASK\x10\r\x12)\n%DIMENSION_SEMANTICS_KIND_VOCAB_LOGITS\x10\x0e\x12&\n\"DIMENSION_SEMANTICS_KIND_EMBEDDING\x10\x0f\x12)\n%DIMENSION_SEMANTICS_KIND_POSITION_IDS\x10\x10\"\xe9\x02\n\x0fTensorSemantics\x12L\n\ndimensions\x18\x01 \x03(\x0b\x32,.gml.internal.api.core.v1.DimensionSemanticsR\ndimensions\x12Q\n\x04kind\x18\x02 \x01(\x0e\x32=.gml.internal.api.core.v1.TensorSemantics.TensorSemanticsKindR\x04kind\"\xb4\x01\n\x13TensorSemanticsKind\x12!\n\x1dTENSOR_SEMANTICS_KIND_UNKNOWN\x10\x00\x12 \n\x1cTENSOR_SEMANTICS_KIND_UNUSED\x10\x01\x12#\n\x1fTENSOR_SEMANTICS_KIND_DIMENSION\x10\x02\x12\x33\n/TENSOR_SEMANTICS_KIND_ATTENTION_KEY_VALUE_CACHE\x10\x03\"6\n\x10GenerationConfig\x12\"\n\reos_token_ids\x18\x01 \x03(\x03R\x0b\x65osTokenIds\"J\n\rKVCacheConfig\x12\x39\n\x04kind\x18\x01 \x01(\x0e\x32%.gml.internal.api.core.v1.KVCacheKindR\x04kind\"i\n\x05Model\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12\x37\n\x04info\x18\x02 \x01(\x0b\x32#.gml.internal.api.core.v1.ModelInfoR\x04info\";\n\x0bPackageInfo\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\"[\n\x0fTracingMetadata\x12H\n\x0cpackage_info\x18\x01 \x03(\x0b\x32%.gml.internal.api.core.v1.PackageInfoR\x0bpackageInfo\"\x93\x01\n\x11\x44\x65\x66\x61ultRopeConfig\x12\x14\n\x05theta\x18\x01 \x01(\x01R\x05theta\x12\x36\n\x17max_position_embeddings\x18\x02 \x01(\x03R\x15maxPositionEmbeddings\x12\x30\n\x14rotary_embedding_dim\x18\x03 \x01(\x03R\x12rotaryEmbeddingDim\"\xc5\x02\n\x10Llama3RopeConfig\x12\x14\n\x05theta\x18\x01 \x01(\x01R\x05theta\x12\x36\n\x17max_position_embeddings\x18\x02 \x01(\x03R\x15maxPositionEmbeddings\x12\x30\n\x14rotary_embedding_dim\x18\x03 \x01(\x03R\x12rotaryEmbeddingDim\x12\x16\n\x06\x66\x61\x63tor\x18\x04 \x01(\x01R\x06\x66\x61\x63tor\x12(\n\x10high_freq_factor\x18\x05 \x01(\x01R\x0ehighFreqFactor\x12&\n\x0flow_freq_factor\x18\x06 \x01(\x01R\rlowFreqFactor\x12G\n original_max_position_embeddings\x18\x07 \x01(\x03R\x1doriginalMaxPositionEmbeddings\"\x95\x02\n\x17PositionEmbeddingConfig\x12\x43\n\x04kind\x18\x01 \x01(\x0e\x32/.gml.internal.api.core.v1.PositionEmbeddingKindR\x04kind\x12[\n\x13\x64\x65\x66\x61ult_rope_config\x18\x02 \x01(\x0b\x32+.gml.internal.api.core.v1.DefaultRopeConfigR\x11\x64\x65\x66\x61ultRopeConfig\x12X\n\x12llama3_rope_config\x18\x03 \x01(\x0b\x32*.gml.internal.api.core.v1.Llama3RopeConfigR\x10llama3RopeConfig\"\x82\x01\n\x11TransformerConfig\x12m\n\x19position_embedding_config\x18\x01 \x01(\x0b\x32\x31.gml.internal.api.core.v1.PositionEmbeddingConfigR\x17positionEmbeddingConfig\"\xbc\r\n\tModelInfo\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x41\n\x04kind\x18\x02 \x01(\x0e\x32-.gml.internal.api.core.v1.ModelInfo.ModelKindR\x04kind\x12N\n\x06\x66ormat\x18\x03 \x01(\x0e\x32\x36.gml.internal.api.core.v1.ModelInfo.ModelStorageFormatR\x06\x66ormat\x12T\n\x0b\x66ile_assets\x18\x04 \x03(\x0b\x32\x33.gml.internal.api.core.v1.ModelInfo.FileAssetsEntryR\nfileAssets\x12_\n\x16input_tensor_semantics\x18\x05 \x03(\x0b\x32).gml.internal.api.core.v1.TensorSemanticsR\x14inputTensorSemantics\x12\x61\n\x17output_tensor_semantics\x18\x06 \x03(\x0b\x32).gml.internal.api.core.v1.TensorSemanticsR\x15outputTensorSemantics\x12!\n\x0c\x63lass_labels\x18\x64 \x03(\tR\x0b\x63lassLabels\x12\x46\n\tbbox_info\x18\x65 \x01(\x0b\x32).gml.internal.api.core.v1.BoundingBoxInfoR\x08\x62\x62oxInfo\x12l\n\x19image_preprocessing_steps\x18\x66 \x03(\x0b\x32\x30.gml.internal.api.core.v1.ImagePreprocessingStepR\x17imagePreprocessingSteps\x12W\n\x11generation_config\x18g \x01(\x0b\x32*.gml.internal.api.core.v1.GenerationConfigR\x10generationConfig\x12O\n\x0fkv_cache_config\x18h \x01(\x0b\x32\'.gml.internal.api.core.v1.KVCacheConfigR\rkvCacheConfig\x12T\n\x10tracing_metadata\x18i \x01(\x0b\x32).gml.internal.api.core.v1.TracingMetadataR\x0ftracingMetadata\x12Z\n\x12transformer_config\x18j \x01(\x0b\x32+.gml.internal.api.core.v1.TransformerConfigR\x11transformerConfig\x1aN\n\x0f\x46ileAssetsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12%\n\x05value\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDR\x05value:\x02\x38\x01\"\xef\x01\n\tModelKind\x12\x16\n\x12MODEL_KIND_UNKNOWN\x10\x00\x12\x14\n\x10MODEL_KIND_TORCH\x10\x01\x12\x1a\n\x16MODEL_KIND_TORCHSCRIPT\x10\x02\x12\x13\n\x0fMODEL_KIND_ONNX\x10\x03\x12\x15\n\x11MODEL_KIND_TFLITE\x10\x04\x12\x17\n\x13MODEL_KIND_OPENVINO\x10\x05\x12$\n MODEL_KIND_HUGGINGFACE_TOKENIZER\x10\x06\x12\x16\n\x12MODEL_KIND_HAILORT\x10\x07\x12\x15\n\x11MODEL_KIND_HABANA\x10\x08\"\xf6\x02\n\x12ModelStorageFormat\x12 \n\x1cMODEL_STORAGE_FORMAT_UNKNOWN\x10\x00\x12&\n\"MODEL_STORAGE_FORMAT_MLIR_BYTECODE\x10\x01\x12\"\n\x1eMODEL_STORAGE_FORMAT_MLIR_TEXT\x10\x02\x12!\n\x1dMODEL_STORAGE_FORMAT_PROTOBUF\x10\x03\x12#\n\x1fMODEL_STORAGE_FORMAT_PROTO_TEXT\x10\x04\x12#\n\x1fMODEL_STORAGE_FORMAT_FLATBUFFER\x10\x05\x12!\n\x1dMODEL_STORAGE_FORMAT_OPENVINO\x10\x06\x12\x1f\n\x1bMODEL_STORAGE_FORMAT_OPAQUE\x10\x07\x12\x1c\n\x18MODEL_STORAGE_FORMAT_HEF\x10\x08\x12#\n\x1fMODEL_STORAGE_FORMAT_HABANA_BIN\x10\t\"L\n\rModelInfoList\x12;\n\x06models\x18\x01 \x03(\x0b\x32#.gml.internal.api.core.v1.ModelInfoR\x06models\"\xa8\x02\n\x04Node\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x45\n\x04kind\x18\x02 \x01(\x0e\x32\x31.gml.internal.api.core.v1.LogicalPipelineNodeKindR\x04kind\x12H\n\nattributes\x18\x03 \x03(\x0b\x32(.gml.internal.api.core.v1.NodeAttributesR\nattributes\x12;\n\x06inputs\x18\x04 \x03(\x0b\x32#.gml.internal.api.core.v1.NodeInputR\x06inputs\x12>\n\x07outputs\x18\x05 \x03(\x0b\x32$.gml.internal.api.core.v1.NodeOutputR\x07outputs\"\x1e\n\x08ParamRef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"D\n\tValueList\x12\x37\n\x06values\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.ValueR\x06values\"\xb0\x01\n\tValueDict\x12G\n\x06values\x18\x01 \x03(\x0b\x32/.gml.internal.api.core.v1.ValueDict.ValuesEntryR\x06values\x1aZ\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32\x1f.gml.internal.api.core.v1.ValueR\x05value:\x02\x38\x01\"\x86\x06\n\x05Value\x12!\n\x0bstring_data\x18\x01 \x01(\tH\x00R\nstringData\x12\x1f\n\nint64_data\x18\x02 \x01(\x03H\x00R\tint64Data\x12!\n\x0b\x64ouble_data\x18\x03 \x01(\x01H\x00R\ndoubleData\x12\x1d\n\tbool_data\x18\x04 \x01(\x08H\x00R\x08\x62oolData\x12I\n\x0blambda_data\x18\x05 \x01(\x0b\x32&.gml.internal.api.core.v1.Value.LambdaH\x00R\nlambdaData\x12I\n\nmodel_data\x18\x06 \x01(\x0b\x32(.gml.internal.api.core.v1.Value.ModelRefH\x00R\tmodelData\x12\x43\n\nparam_data\x18\x07 \x01(\x0b\x32\".gml.internal.api.core.v1.ParamRefH\x00R\tparamData\x12\x44\n\nvalue_list\x18\x08 \x01(\x0b\x32#.gml.internal.api.core.v1.ValueListH\x00R\tvalueList\x12\x44\n\nvalue_dict\x18\t \x01(\x0b\x32#.gml.internal.api.core.v1.ValueDictH\x00R\tvalueDict\x12M\n\rsemantic_type\x18\n \x01(\x0e\x32&.gml.internal.api.core.v1.SemanticTypeH\x00R\x0csemanticType\x1aG\n\x08ModelRef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\'\n\x02id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x1ap\n\x06Lambda\x12\x16\n\x06inputs\x18\x01 \x03(\tR\x06inputs\x12\x18\n\x07outputs\x18\x02 \x03(\tR\x07outputs\x12\x34\n\x05nodes\x18\x03 \x03(\x0b\x32\x1e.gml.internal.api.core.v1.NodeR\x05nodesB\x06\n\x04\x64\x61ta\"[\n\x0eNodeAttributes\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32\x1f.gml.internal.api.core.v1.ValueR\x05value\"\x9c\x03\n\tNodeInput\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x45\n\x0bparam_value\x18\x02 \x01(\x0b\x32\".gml.internal.api.core.v1.ParamRefH\x00R\nparamValue\x12_\n\x11node_output_value\x18\x03 \x01(\x0b\x32\x31.gml.internal.api.core.v1.NodeInput.NodeOutputRefH\x00R\x0fnodeOutputValue\x12\x62\n\x12lambda_input_value\x18\x04 \x01(\x0b\x32\x32.gml.internal.api.core.v1.NodeInput.LambdaInputRefH\x00R\x10lambdaInputValue\x1a@\n\rNodeOutputRef\x12\x1b\n\tnode_name\x18\x01 \x01(\tR\x08nodeName\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x1a$\n\x0eLambdaInputRef\x12\x12\n\x04name\x18\x01 \x01(\tR\x04nameB\x07\n\x05value\" \n\nNodeOutput\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"a\n\x05Param\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x44\n\rdefault_value\x18\x02 \x01(\x0b\x32\x1f.gml.internal.api.core.v1.ValueR\x0c\x64\x65\x66\x61ultValue\"\xbc\x01\n\x0fLogicalPipeline\x12\x37\n\x06params\x18\x01 \x03(\x0b\x32\x1f.gml.internal.api.core.v1.ParamR\x06params\x12\x34\n\x05nodes\x18\x02 \x03(\x0b\x32\x1e.gml.internal.api.core.v1.NodeR\x05nodes\x12:\n\tmodel_ids\x18\x03 \x03(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08ModelIDsR\x08modelIds\"\xab\x04\n\x12PipelineDeployment\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12V\n\x13logical_pipeline_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x15\xe2\xde\x1f\x11LogicalPipelineIDR\x11logicalPipelineId\x12\x37\n\x08\x66leet_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0b\xe2\xde\x1f\x07\x46leetIDR\x07\x66leetId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x18\n\x07version\x18\x06 \x01(\x03R\x07version\x12\x44\n\x04spec\x18\x07 \x01(\x0b\x32\x30.gml.internal.api.core.v1.PipelineDeploymentSpecR\x04spec\x12J\n\x06status\x18\x08 \x01(\x0b\x32\x32.gml.internal.api.core.v1.PipelineDeploymentStatusR\x06status\x12\x39\n\ndeleted_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tdeletedAt\"\xb1\x01\n\x16PipelineDeploymentSpec\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12X\n\x0escaling_config\x18\x02 \x01(\x0b\x32\x31.gml.internal.api.core.v1.DeploymentScalingConfigR\rscalingConfig\"\xbd\x01\n\x17\x44\x65ploymentScalingConfig\x12z\n\x12replicate_per_node\x18\x01 \x01(\x0b\x32J.gml.internal.api.core.v1.DeploymentScalingConfig.ReplicatePerNodeStrategyH\x00R\x10replicatePerNode\x1a\x1a\n\x18ReplicatePerNodeStrategyB\n\n\x08strategy\"q\n\x18PipelineDeploymentStatus\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reason\"\xdc\x03\n\x10PhysicalPipeline\x12\'\n\x02id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\x06\xe2\xde\x1f\x02IDR\x02id\x12_\n\x16pipeline_deployment_id\x18\x02 \x01(\x0b\x32\x0f.gml.types.UUIDB\x18\xe2\xde\x1f\x14PipelineDeploymentIDR\x14pipelineDeploymentId\x12:\n\tdevice_id\x18\x03 \x01(\x0b\x32\x0f.gml.types.UUIDB\x0c\xe2\xde\x1f\x08\x44\x65viceIDR\x08\x64\x65viceId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\x04spec\x18\x06 \x01(\x0b\x32..gml.internal.api.core.v1.PhysicalPipelineSpecR\x04spec\x12H\n\x06status\x18\x07 \x01(\x0b\x32\x30.gml.internal.api.core.v1.PhysicalPipelineStatusR\x06status\"\xcd\x02\n\x14PhysicalPipelineSpec\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12=\n\x05graph\x18\x03 \x01(\x0b\x32\'.gml.internal.api.core.v1.ExecutionSpecR\x05graph\x12\x30\n\x14\x64\x65vice_resource_hash\x18\x05 \x01(\tR\x12\x64\x65viceResourceHash\x12M\n\x0c\x65xec_runtime\x18\x06 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x0b\x65xecRuntime\x12\x1c\n\x07runtime\x18\x04 \x01(\tB\x02\x18\x01R\x07runtime\"\x88\x04\n\x16PhysicalPipelineStatus\x12=\n\x05state\x18\x01 \x01(\x0e\x32\'.gml.internal.api.core.v1.PipelineStateR\x05state\x12\x18\n\x07version\x18\x02 \x01(\x03R\x07version\x12\x16\n\x06reason\x18\x04 \x01(\tR\x06reason\x12\x30\n\x14\x64\x65vice_resource_hash\x18\x05 \x01(\tR\x12\x64\x65viceResourceHash\x12\x66\n\rruntime_specs\x18\x07 \x03(\x0b\x32\x41.gml.internal.api.core.v1.PhysicalPipelineStatus.ModelRuntimeSpecR\x0cruntimeSpecs\x12\x1c\n\x07runtime\x18\x03 \x01(\tB\x02\x18\x01R\x07runtime\x12S\n\rexec_runtimes\x18\x06 \x03(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeB\x02\x18\x01R\x0c\x65xecRuntimes\x1ap\n\x10ModelRuntimeSpec\x12\x44\n\x07runtime\x18\x01 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x07runtime\x12\x16\n\x06\x64\x65vice\x18\x02 \x01(\tR\x06\x64\x65vice\"\x84\x01\n\x0c\x46ileResource\x12\x34\n\x07\x66ile_id\x18\x01 \x01(\x0b\x32\x0f.gml.types.UUIDB\n\xe2\xde\x1f\x06\x46ileIDR\x06\x66ileId\x12\x1d\n\nsize_bytes\x18\x02 \x01(\x04R\tsizeBytes\x12\x1f\n\x0bsha256_hash\x18\x03 \x01(\tR\nsha256Hash\"\x8b\x01\n\rExecutionSpec\x12\x36\n\x05graph\x18\x01 \x01(\x0b\x32 .mediapipe.CalculatorGraphConfigR\x05graph\x12\x42\n\nmodel_spec\x18\x02 \x03(\x0b\x32#.gml.internal.api.core.v1.ModelSpecR\tmodelSpec\"\\\n\nNamedAsset\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\x04\x66ile\x18\x02 \x01(\x0b\x32&.gml.internal.api.core.v1.FileResourceR\x04\x66ile\"\xad\x06\n\tModelSpec\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x33\n\ronnx_blob_key\x18\x02 \x01(\tB\x0f\xe2\xde\x1f\x0bONNXBlobKeyR\x0bonnxBlobKey\x12Q\n\tonnx_file\x18\x03 \x01(\x0b\x32&.gml.internal.api.core.v1.FileResourceB\x0c\xe2\xde\x1f\x08ONNXFileR\x08onnxFile\x12\x45\n\x0bnamed_asset\x18\x04 \x03(\x0b\x32$.gml.internal.api.core.v1.NamedAssetR\nnamedAsset\x12M\n\x0c\x65xec_runtime\x18\x33 \x01(\x0e\x32*.gml.internal.api.core.v1.ModelRuntimeTypeR\x0b\x65xecRuntime\x12%\n\x0e\x61\x63\x63\x65lerator_id\x18\x34 \x01(\tR\racceleratorId\x12\'\n\x0f\x61\x63\x63\x65lerator_idx\x18\x35 \x01(\x05R\x0e\x61\x63\x63\x65leratorIdx\x12\x62\n\rtensorrt_spec\x18\x64 \x01(\x0b\x32+.gml.internal.api.core.v1.TensorRTModelSpecB\x10\xe2\xde\x1f\x0cTensorRTSpecR\x0ctensorrtSpec\x12\x62\n\ropenvino_spec\x18\x65 \x01(\x0b\x32+.gml.internal.api.core.v1.OpenVINOModelSpecB\x10\xe2\xde\x1f\x0cOpenVINOSpecR\x0copenvinoSpec\x12W\n\tiree_spec\x18\x66 \x01(\x0b\x32\'.gml.internal.api.core.v1.IREEModelSpecB\x11\xe2\xde\x1f\rIREEModelSpecR\x08ireeSpec\x12_\n\x0bhabana_spec\x18g \x01(\x0b\x32).gml.internal.api.core.v1.HabanaModelSpecB\x13\xe2\xde\x1f\x0fHabanaModelSpecR\nhabanaSpec\x12\x1c\n\x07runtime\x18\x32 \x01(\tB\x02\x18\x01R\x07runtime\"\xfe\x01\n\x11TensorRTModelSpec\x12h\n\x14optimization_profile\x18\x01 \x03(\x0b\x32\x35.gml.internal.api.core.v1.TensorRTOptimizationProfileR\x13optimizationProfile\x12&\n\x0f\x65ngine_blob_key\x18\x02 \x01(\tR\rengineBlobKey\x12W\n\x0fmem_pool_limits\x18\x03 \x01(\x0b\x32/.gml.internal.api.core.v1.TensorRTMemPoolLimitsR\rmemPoolLimits\"\x7f\n\x1bTensorRTOptimizationProfile\x12`\n\x12tensor_shape_range\x18\x01 \x03(\x0b\x32\x32.gml.internal.api.core.v1.TensorRTTensorShapeRangeR\x10tensorShapeRange\"w\n\x18TensorRTTensorShapeRange\x12\x1f\n\x0btensor_name\x18\x01 \x01(\tR\ntensorName\x12\x10\n\x03min\x18\x03 \x03(\x05R\x03min\x12\x10\n\x03opt\x18\x04 \x03(\x05R\x03opt\x12\x10\n\x03max\x18\x05 \x03(\x05R\x03maxJ\x04\x08\x02\x10\x03\"5\n\x15TensorRTMemPoolLimits\x12\x1c\n\tworkspace\x18\x01 \x01(\x03R\tworkspace\"\xab\x01\n\x11OpenVINOModelSpec\x12X\n\x0binput_shape\x18\x01 \x03(\x0b\x32\x37.gml.internal.api.core.v1.OpenVINOModelSpec.TensorShapeR\ninputShape\x12\x1b\n\tdevice_id\x18\x02 \x01(\tR\x08\x64\x65viceId\x1a\x1f\n\x0bTensorShape\x12\x10\n\x03\x64im\x18\x01 \x03(\x05R\x03\x64im\"M\n\rIREEModelSpec\x12\x1f\n\x0b\x64river_name\x18\x01 \x01(\tR\ndriverName\x12\x1b\n\tdevice_id\x18\x02 \x01(\x04R\x08\x64\x65viceId\".\n\x0fHabanaModelSpec\x12\x1b\n\tdevice_id\x18\x01 \x01(\tR\x08\x64\x65viceId*_\n\x0bKVCacheKind\x12\x19\n\x15KV_CACHE_KIND_UNKNOWN\x10\x00\x12\x1c\n\x18KV_CACHE_KIND_CONTIGUOUS\x10\x01\x12\x17\n\x13KV_CACHE_KIND_PAGED\x10\x02*\x8f\x01\n\x15PositionEmbeddingKind\x12#\n\x1fPOSITION_EMBEDDING_KIND_UNKNOWN\x10\x00\x12(\n$POSITION_EMBEDDING_KIND_ROPE_DEFAULT\x10\x01\x12\'\n#POSITION_EMBEDDING_KIND_ROPE_LLAMA3\x10\x02*\x96\n\n\x17LogicalPipelineNodeKind\x12&\n\"LOGICAL_PIPELINE_NODE_KIND_UNKNOWN\x10\x00\x12,\n(LOGICAL_PIPELINE_NODE_KIND_CAMERA_SOURCE\x10\n\x12\x31\n-LOGICAL_PIPELINE_NODE_KIND_TEXT_STREAM_SOURCE\x10\x0b\x12.\n*LOGICAL_PIPELINE_NODE_KIND_ENDPOINT_SOURCE\x10\x0c\x12&\n!LOGICAL_PIPELINE_NODE_KIND_DETECT\x10\xe8\x07\x12(\n#LOGICAL_PIPELINE_NODE_KIND_CLASSIFY\x10\xe9\x07\x12\'\n\"LOGICAL_PIPELINE_NODE_KIND_SEGMENT\x10\xea\x07\x12\x33\n.LOGICAL_PIPELINE_NODE_KIND_MULTI_PURPOSE_MODEL\x10\xeb\x07\x12\'\n\"LOGICAL_PIPELINE_NODE_KIND_REGRESS\x10\xec\x07\x12%\n LOGICAL_PIPELINE_NODE_KIND_TRACK\x10\xed\x07\x12/\n*LOGICAL_PIPELINE_NODE_KIND_GENERATE_TOKENS\x10\xee\x07\x12(\n#LOGICAL_PIPELINE_NODE_KIND_TOKENIZE\x10\xef\x07\x12*\n%LOGICAL_PIPELINE_NODE_KIND_DETOKENIZE\x10\xf0\x07\x12%\n LOGICAL_PIPELINE_NODE_KIND_EMBED\x10\xf1\x07\x12\x35\n0LOGICAL_PIPELINE_NODE_KIND_TEMPLATE_CHAT_MESSAGE\x10\xf2\x07\x12.\n)LOGICAL_PIPELINE_NODE_KIND_ESTIMATE_DEPTH\x10\xf3\x07\x12,\n\'LOGICAL_PIPELINE_NODE_KIND_FOR_EACH_ROI\x10\xdf\x0b\x12-\n(LOGICAL_PIPELINE_NODE_KIND_VECTOR_SEARCH\x10\xe0\x0b\x12\x34\n/LOGICAL_PIPELINE_NODE_KIND_FILTER_MOVING_TRACKS\x10\xe1\x0b\x12\x33\n.LOGICAL_PIPELINE_NODE_KIND_EXTRACT_IMAGE_FRAME\x10\xe2\x0b\x12.\n)LOGICAL_PIPELINE_NODE_KIND_EXTRACT_PROMPT\x10\xe3\x0b\x12\x31\n,LOGICAL_PIPELINE_NODE_KIND_VIDEO_STREAM_SINK\x10\xd0\x0f\x12\x37\n2LOGICAL_PIPELINE_NODE_KIND_DETECTIONS_METRICS_SINK\x10\xd1\x0f\x12\x34\n/LOGICAL_PIPELINE_NODE_KIND_LATENCY_METRICS_SINK\x10\xd2\x0f\x12\x32\n-LOGICAL_PIPELINE_NODE_KIND_FRAME_METRICS_SINK\x10\xd3\x0f\x12\x30\n+LOGICAL_PIPELINE_NODE_KIND_TEXT_STREAM_SINK\x10\xd4\x0f\x12-\n(LOGICAL_PIPELINE_NODE_KIND_ENDPOINT_SINK\x10\xd5\x0f*\x98\x01\n\x0cSemanticType\x12\x19\n\x15SEMANTIC_TYPE_UNKNOWN\x10\x00\x12\x16\n\x12SEMANTIC_TYPE_TEXT\x10\x01\x12\x17\n\x13SEMANTIC_TYPE_IMAGE\x10\x02\x12\x1c\n\x18SEMANTIC_TYPE_DETECTIONS\x10\x03\x12\x1e\n\x1aSEMANTIC_TYPE_SEGMENTATION\x10\x04*\xf5\x01\n\rPipelineState\x12\x1a\n\x16PIPELINE_STATE_UNKNOWN\x10\x00\x12\x1a\n\x16PIPELINE_STATE_PENDING\x10\x01\x12\x18\n\x14PIPELINE_STATE_READY\x10\x02\x12\x1a\n\x16PIPELINE_STATE_RUNNING\x10\x03\x12\x1e\n\x1aPIPELINE_STATE_TERMINATING\x10\x04\x12\x1d\n\x19PIPELINE_STATE_TERMINATED\x10\x05\x12\x19\n\x15PIPELINE_STATE_FAILED\x10\x06\x12\x1c\n\x18PIPELINE_STATE_COMPILING\x10\x07*\xe8\x01\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\x42/Z-gimletlabs.ai/gimlet/src/api/corepb/v1;corepbb\x06proto3')
|
27
27
|
|
28
28
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
29
29
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'src.api.corepb.v1.model_exec_pb2', globals())
|
@@ -35,6 +35,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
35
35
|
_MODEL.fields_by_name['id']._serialized_options = b'\342\336\037\002ID'
|
36
36
|
_MODELINFO_FILEASSETSENTRY._options = None
|
37
37
|
_MODELINFO_FILEASSETSENTRY._serialized_options = b'8\001'
|
38
|
+
_VALUEDICT_VALUESENTRY._options = None
|
39
|
+
_VALUEDICT_VALUESENTRY._serialized_options = b'8\001'
|
38
40
|
_VALUE_MODELREF.fields_by_name['id']._options = None
|
39
41
|
_VALUE_MODELREF.fields_by_name['id']._serialized_options = b'\342\336\037\002ID'
|
40
42
|
_LOGICALPIPELINE.fields_by_name['model_ids']._options = None
|
@@ -69,18 +71,22 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
69
71
|
_MODELSPEC.fields_by_name['openvino_spec']._serialized_options = b'\342\336\037\014OpenVINOSpec'
|
70
72
|
_MODELSPEC.fields_by_name['iree_spec']._options = None
|
71
73
|
_MODELSPEC.fields_by_name['iree_spec']._serialized_options = b'\342\336\037\rIREEModelSpec'
|
74
|
+
_MODELSPEC.fields_by_name['habana_spec']._options = None
|
75
|
+
_MODELSPEC.fields_by_name['habana_spec']._serialized_options = b'\342\336\037\017HabanaModelSpec'
|
72
76
|
_MODELSPEC.fields_by_name['runtime']._options = None
|
73
77
|
_MODELSPEC.fields_by_name['runtime']._serialized_options = b'\030\001'
|
74
|
-
_KVCACHEKIND._serialized_start=
|
75
|
-
_KVCACHEKIND._serialized_end=
|
76
|
-
_POSITIONEMBEDDINGKIND._serialized_start=
|
77
|
-
_POSITIONEMBEDDINGKIND._serialized_end=
|
78
|
-
_LOGICALPIPELINENODEKIND._serialized_start=
|
79
|
-
_LOGICALPIPELINENODEKIND._serialized_end=
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
78
|
+
_KVCACHEKIND._serialized_start=14537
|
79
|
+
_KVCACHEKIND._serialized_end=14632
|
80
|
+
_POSITIONEMBEDDINGKIND._serialized_start=14635
|
81
|
+
_POSITIONEMBEDDINGKIND._serialized_end=14778
|
82
|
+
_LOGICALPIPELINENODEKIND._serialized_start=14781
|
83
|
+
_LOGICALPIPELINENODEKIND._serialized_end=16083
|
84
|
+
_SEMANTICTYPE._serialized_start=16086
|
85
|
+
_SEMANTICTYPE._serialized_end=16238
|
86
|
+
_PIPELINESTATE._serialized_start=16241
|
87
|
+
_PIPELINESTATE._serialized_end=16486
|
88
|
+
_KVCACHEFORMAT._serialized_start=16489
|
89
|
+
_KVCACHEFORMAT._serialized_end=16721
|
84
90
|
_BOUNDINGBOXINFO._serialized_start=258
|
85
91
|
_BOUNDINGBOXINFO._serialized_end=553
|
86
92
|
_BOUNDINGBOXINFO_BOUNDINGBOXFORMAT._serialized_start=409
|
@@ -98,7 +104,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
98
104
|
_IMAGEPREPROCESSINGSTEP_IMAGEPREPROCESSINGKIND._serialized_start=1479
|
99
105
|
_IMAGEPREPROCESSINGSTEP_IMAGEPREPROCESSINGKIND._serialized_end=1668
|
100
106
|
_DIMENSIONSEMANTICS._serialized_start=1671
|
101
|
-
_DIMENSIONSEMANTICS._serialized_end=
|
107
|
+
_DIMENSIONSEMANTICS._serialized_end=4460
|
102
108
|
_DIMENSIONSEMANTICS_IMAGECHANNELPARAMS._serialized_start=2394
|
103
109
|
_DIMENSIONSEMANTICS_IMAGECHANNELPARAMS._serialized_end=2675
|
104
110
|
_DIMENSIONSEMANTICS_IMAGECHANNELPARAMS_IMAGECHANNELFORMAT._serialized_start=2525
|
@@ -116,95 +122,109 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
116
122
|
_DIMENSIONSEMANTICS_REGRESSIONPARAMS._serialized_start=3606
|
117
123
|
_DIMENSIONSEMANTICS_REGRESSIONPARAMS._serialized_end=3698
|
118
124
|
_DIMENSIONSEMANTICS_DIMENSIONSEMANTICSKIND._serialized_start=3701
|
119
|
-
_DIMENSIONSEMANTICS_DIMENSIONSEMANTICSKIND._serialized_end=
|
120
|
-
_TENSORSEMANTICS._serialized_start=
|
121
|
-
_TENSORSEMANTICS._serialized_end=
|
122
|
-
_TENSORSEMANTICS_TENSORSEMANTICSKIND._serialized_start=
|
123
|
-
_TENSORSEMANTICS_TENSORSEMANTICSKIND._serialized_end=
|
124
|
-
_GENERATIONCONFIG._serialized_start=
|
125
|
-
_GENERATIONCONFIG._serialized_end=
|
126
|
-
_KVCACHECONFIG._serialized_start=
|
127
|
-
_KVCACHECONFIG._serialized_end=
|
128
|
-
_MODEL._serialized_start=
|
129
|
-
_MODEL._serialized_end=
|
130
|
-
_PACKAGEINFO._serialized_start=
|
131
|
-
_PACKAGEINFO._serialized_end=
|
132
|
-
_TRACINGMETADATA._serialized_start=
|
133
|
-
_TRACINGMETADATA._serialized_end=
|
134
|
-
_DEFAULTROPECONFIG._serialized_start=
|
135
|
-
_DEFAULTROPECONFIG._serialized_end=
|
136
|
-
_LLAMA3ROPECONFIG._serialized_start=
|
137
|
-
_LLAMA3ROPECONFIG._serialized_end=
|
138
|
-
_POSITIONEMBEDDINGCONFIG._serialized_start=
|
139
|
-
_POSITIONEMBEDDINGCONFIG._serialized_end=
|
140
|
-
_TRANSFORMERCONFIG._serialized_start=
|
141
|
-
_TRANSFORMERCONFIG._serialized_end=
|
142
|
-
_MODELINFO._serialized_start=
|
143
|
-
_MODELINFO._serialized_end=
|
144
|
-
_MODELINFO_FILEASSETSENTRY._serialized_start=
|
145
|
-
_MODELINFO_FILEASSETSENTRY._serialized_end=
|
146
|
-
_MODELINFO_MODELKIND._serialized_start=
|
147
|
-
_MODELINFO_MODELKIND._serialized_end=
|
148
|
-
_MODELINFO_MODELSTORAGEFORMAT._serialized_start=
|
149
|
-
_MODELINFO_MODELSTORAGEFORMAT._serialized_end=
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
125
|
+
_DIMENSIONSEMANTICS_DIMENSIONSEMANTICSKIND._serialized_end=4460
|
126
|
+
_TENSORSEMANTICS._serialized_start=4463
|
127
|
+
_TENSORSEMANTICS._serialized_end=4824
|
128
|
+
_TENSORSEMANTICS_TENSORSEMANTICSKIND._serialized_start=4644
|
129
|
+
_TENSORSEMANTICS_TENSORSEMANTICSKIND._serialized_end=4824
|
130
|
+
_GENERATIONCONFIG._serialized_start=4826
|
131
|
+
_GENERATIONCONFIG._serialized_end=4880
|
132
|
+
_KVCACHECONFIG._serialized_start=4882
|
133
|
+
_KVCACHECONFIG._serialized_end=4956
|
134
|
+
_MODEL._serialized_start=4958
|
135
|
+
_MODEL._serialized_end=5063
|
136
|
+
_PACKAGEINFO._serialized_start=5065
|
137
|
+
_PACKAGEINFO._serialized_end=5124
|
138
|
+
_TRACINGMETADATA._serialized_start=5126
|
139
|
+
_TRACINGMETADATA._serialized_end=5217
|
140
|
+
_DEFAULTROPECONFIG._serialized_start=5220
|
141
|
+
_DEFAULTROPECONFIG._serialized_end=5367
|
142
|
+
_LLAMA3ROPECONFIG._serialized_start=5370
|
143
|
+
_LLAMA3ROPECONFIG._serialized_end=5695
|
144
|
+
_POSITIONEMBEDDINGCONFIG._serialized_start=5698
|
145
|
+
_POSITIONEMBEDDINGCONFIG._serialized_end=5975
|
146
|
+
_TRANSFORMERCONFIG._serialized_start=5978
|
147
|
+
_TRANSFORMERCONFIG._serialized_end=6108
|
148
|
+
_MODELINFO._serialized_start=6111
|
149
|
+
_MODELINFO._serialized_end=7835
|
150
|
+
_MODELINFO_FILEASSETSENTRY._serialized_start=7138
|
151
|
+
_MODELINFO_FILEASSETSENTRY._serialized_end=7216
|
152
|
+
_MODELINFO_MODELKIND._serialized_start=7219
|
153
|
+
_MODELINFO_MODELKIND._serialized_end=7458
|
154
|
+
_MODELINFO_MODELSTORAGEFORMAT._serialized_start=7461
|
155
|
+
_MODELINFO_MODELSTORAGEFORMAT._serialized_end=7835
|
156
|
+
_MODELINFOLIST._serialized_start=7837
|
157
|
+
_MODELINFOLIST._serialized_end=7913
|
158
|
+
_NODE._serialized_start=7916
|
159
|
+
_NODE._serialized_end=8212
|
160
|
+
_PARAMREF._serialized_start=8214
|
161
|
+
_PARAMREF._serialized_end=8244
|
162
|
+
_VALUELIST._serialized_start=8246
|
163
|
+
_VALUELIST._serialized_end=8314
|
164
|
+
_VALUEDICT._serialized_start=8317
|
165
|
+
_VALUEDICT._serialized_end=8493
|
166
|
+
_VALUEDICT_VALUESENTRY._serialized_start=8403
|
167
|
+
_VALUEDICT_VALUESENTRY._serialized_end=8493
|
168
|
+
_VALUE._serialized_start=8496
|
169
|
+
_VALUE._serialized_end=9270
|
170
|
+
_VALUE_MODELREF._serialized_start=9077
|
171
|
+
_VALUE_MODELREF._serialized_end=9148
|
172
|
+
_VALUE_LAMBDA._serialized_start=9150
|
173
|
+
_VALUE_LAMBDA._serialized_end=9262
|
174
|
+
_NODEATTRIBUTES._serialized_start=9272
|
175
|
+
_NODEATTRIBUTES._serialized_end=9363
|
176
|
+
_NODEINPUT._serialized_start=9366
|
177
|
+
_NODEINPUT._serialized_end=9778
|
178
|
+
_NODEINPUT_NODEOUTPUTREF._serialized_start=9667
|
179
|
+
_NODEINPUT_NODEOUTPUTREF._serialized_end=9731
|
180
|
+
_NODEINPUT_LAMBDAINPUTREF._serialized_start=9733
|
181
|
+
_NODEINPUT_LAMBDAINPUTREF._serialized_end=9769
|
182
|
+
_NODEOUTPUT._serialized_start=9780
|
183
|
+
_NODEOUTPUT._serialized_end=9812
|
184
|
+
_PARAM._serialized_start=9814
|
185
|
+
_PARAM._serialized_end=9911
|
186
|
+
_LOGICALPIPELINE._serialized_start=9914
|
187
|
+
_LOGICALPIPELINE._serialized_end=10102
|
188
|
+
_PIPELINEDEPLOYMENT._serialized_start=10105
|
189
|
+
_PIPELINEDEPLOYMENT._serialized_end=10660
|
190
|
+
_PIPELINEDEPLOYMENTSPEC._serialized_start=10663
|
191
|
+
_PIPELINEDEPLOYMENTSPEC._serialized_end=10840
|
192
|
+
_DEPLOYMENTSCALINGCONFIG._serialized_start=10843
|
193
|
+
_DEPLOYMENTSCALINGCONFIG._serialized_end=11032
|
194
|
+
_DEPLOYMENTSCALINGCONFIG_REPLICATEPERNODESTRATEGY._serialized_start=10994
|
195
|
+
_DEPLOYMENTSCALINGCONFIG_REPLICATEPERNODESTRATEGY._serialized_end=11020
|
196
|
+
_PIPELINEDEPLOYMENTSTATUS._serialized_start=11034
|
197
|
+
_PIPELINEDEPLOYMENTSTATUS._serialized_end=11147
|
198
|
+
_PHYSICALPIPELINE._serialized_start=11150
|
199
|
+
_PHYSICALPIPELINE._serialized_end=11626
|
200
|
+
_PHYSICALPIPELINESPEC._serialized_start=11629
|
201
|
+
_PHYSICALPIPELINESPEC._serialized_end=11962
|
202
|
+
_PHYSICALPIPELINESTATUS._serialized_start=11965
|
203
|
+
_PHYSICALPIPELINESTATUS._serialized_end=12485
|
204
|
+
_PHYSICALPIPELINESTATUS_MODELRUNTIMESPEC._serialized_start=12373
|
205
|
+
_PHYSICALPIPELINESTATUS_MODELRUNTIMESPEC._serialized_end=12485
|
206
|
+
_FILERESOURCE._serialized_start=12488
|
207
|
+
_FILERESOURCE._serialized_end=12620
|
208
|
+
_EXECUTIONSPEC._serialized_start=12623
|
209
|
+
_EXECUTIONSPEC._serialized_end=12762
|
210
|
+
_NAMEDASSET._serialized_start=12764
|
211
|
+
_NAMEDASSET._serialized_end=12856
|
212
|
+
_MODELSPEC._serialized_start=12859
|
213
|
+
_MODELSPEC._serialized_end=13672
|
214
|
+
_TENSORRTMODELSPEC._serialized_start=13675
|
215
|
+
_TENSORRTMODELSPEC._serialized_end=13929
|
216
|
+
_TENSORRTOPTIMIZATIONPROFILE._serialized_start=13931
|
217
|
+
_TENSORRTOPTIMIZATIONPROFILE._serialized_end=14058
|
218
|
+
_TENSORRTTENSORSHAPERANGE._serialized_start=14060
|
219
|
+
_TENSORRTTENSORSHAPERANGE._serialized_end=14179
|
220
|
+
_TENSORRTMEMPOOLLIMITS._serialized_start=14181
|
221
|
+
_TENSORRTMEMPOOLLIMITS._serialized_end=14234
|
222
|
+
_OPENVINOMODELSPEC._serialized_start=14237
|
223
|
+
_OPENVINOMODELSPEC._serialized_end=14408
|
224
|
+
_OPENVINOMODELSPEC_TENSORSHAPE._serialized_start=14377
|
225
|
+
_OPENVINOMODELSPEC_TENSORSHAPE._serialized_end=14408
|
226
|
+
_IREEMODELSPEC._serialized_start=14410
|
227
|
+
_IREEMODELSPEC._serialized_end=14487
|
228
|
+
_HABANAMODELSPEC._serialized_start=14489
|
229
|
+
_HABANAMODELSPEC._serialized_end=14535
|
210
230
|
# @@protoc_insertion_point(module_scope)
|