sapiopycommons 2025.4.25a497__py3-none-any.whl → 2025.4.30a499__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.
Potentially problematic release.
This version of sapiopycommons might be problematic. Click here for more details.
- sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.py +43 -0
- sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.pyi +31 -0
- sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2_grpc.py +24 -0
- sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.py +89 -89
- sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.pyi +174 -174
- sapiopycommons/ai/api/plan/proto/step_output_pb2.py +11 -11
- sapiopycommons/ai/api/plan/proto/step_output_pb2.pyi +27 -27
- sapiopycommons/ai/api/plan/proto/step_pb2.py +9 -9
- sapiopycommons/ai/api/plan/proto/step_pb2.pyi +10 -10
- sapiopycommons/ai/api/plan/script/proto/script_pb2.py +13 -13
- sapiopycommons/ai/api/plan/script/proto/script_pb2.pyi +39 -39
- sapiopycommons/ai/api/plan/script/proto/script_pb2_grpc.py +12 -12
- sapiopycommons/ai/api/plan/tool/proto/entry_pb2.py +23 -23
- sapiopycommons/ai/api/plan/tool/proto/entry_pb2.pyi +63 -63
- sapiopycommons/ai/api/plan/tool/proto/tool_pb2.py +25 -31
- sapiopycommons/ai/api/plan/tool/proto/tool_pb2.pyi +136 -158
- sapiopycommons/ai/api/plan/tool/proto/tool_pb2_grpc.py +12 -12
- sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.py +5 -5
- sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.pyi +8 -8
- sapiopycommons/ai/protobuf_utils.py +452 -0
- sapiopycommons/ai/tool_service_base.py +288 -162
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/METADATA +1 -1
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/RECORD +25 -22
- sapiopycommons/ai/tool_of_tools.py +0 -917
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/WHEEL +0 -0
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,91 +6,91 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|
|
6
6
|
|
|
7
7
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
8
|
|
|
9
|
-
class
|
|
9
|
+
class DataTypePbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
10
|
__slots__ = ()
|
|
11
|
-
BINARY: _ClassVar[
|
|
12
|
-
JSON: _ClassVar[
|
|
13
|
-
CSV: _ClassVar[
|
|
14
|
-
TEXT: _ClassVar[
|
|
15
|
-
IMAGE: _ClassVar[
|
|
16
|
-
BINARY:
|
|
17
|
-
JSON:
|
|
18
|
-
CSV:
|
|
19
|
-
TEXT:
|
|
20
|
-
IMAGE:
|
|
11
|
+
BINARY: _ClassVar[DataTypePbo]
|
|
12
|
+
JSON: _ClassVar[DataTypePbo]
|
|
13
|
+
CSV: _ClassVar[DataTypePbo]
|
|
14
|
+
TEXT: _ClassVar[DataTypePbo]
|
|
15
|
+
IMAGE: _ClassVar[DataTypePbo]
|
|
16
|
+
BINARY: DataTypePbo
|
|
17
|
+
JSON: DataTypePbo
|
|
18
|
+
CSV: DataTypePbo
|
|
19
|
+
TEXT: DataTypePbo
|
|
20
|
+
IMAGE: DataTypePbo
|
|
21
21
|
|
|
22
|
-
class
|
|
22
|
+
class StepCsvHeaderRowPbo(_message.Message):
|
|
23
23
|
__slots__ = ("cells",)
|
|
24
24
|
CELLS_FIELD_NUMBER: _ClassVar[int]
|
|
25
25
|
cells: _containers.RepeatedScalarFieldContainer[str]
|
|
26
26
|
def __init__(self, cells: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
27
27
|
|
|
28
|
-
class
|
|
28
|
+
class StepCsvRowPbo(_message.Message):
|
|
29
29
|
__slots__ = ("cells",)
|
|
30
30
|
CELLS_FIELD_NUMBER: _ClassVar[int]
|
|
31
31
|
cells: _containers.RepeatedScalarFieldContainer[str]
|
|
32
32
|
def __init__(self, cells: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
33
33
|
|
|
34
|
-
class
|
|
35
|
-
__slots__ = ("header", "
|
|
34
|
+
class StepCsvContainerPbo(_message.Message):
|
|
35
|
+
__slots__ = ("header", "items")
|
|
36
36
|
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
-
|
|
38
|
-
header:
|
|
39
|
-
|
|
40
|
-
def __init__(self, header: _Optional[_Union[
|
|
37
|
+
ITEMS_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
header: StepCsvHeaderRowPbo
|
|
39
|
+
items: _containers.RepeatedCompositeFieldContainer[StepCsvRowPbo]
|
|
40
|
+
def __init__(self, header: _Optional[_Union[StepCsvHeaderRowPbo, _Mapping]] = ..., items: _Optional[_Iterable[_Union[StepCsvRowPbo, _Mapping]]] = ...) -> None: ...
|
|
41
41
|
|
|
42
|
-
class
|
|
43
|
-
__slots__ = ("
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
def __init__(self,
|
|
42
|
+
class StepJsonContainerPbo(_message.Message):
|
|
43
|
+
__slots__ = ("items",)
|
|
44
|
+
ITEMS_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
items: _containers.RepeatedScalarFieldContainer[str]
|
|
46
|
+
def __init__(self, items: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
47
47
|
|
|
48
|
-
class
|
|
49
|
-
__slots__ = ("
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
def __init__(self,
|
|
48
|
+
class StepTextContainerPbo(_message.Message):
|
|
49
|
+
__slots__ = ("items",)
|
|
50
|
+
ITEMS_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
items: _containers.RepeatedScalarFieldContainer[str]
|
|
52
|
+
def __init__(self, items: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
53
53
|
|
|
54
|
-
class
|
|
55
|
-
__slots__ = ("
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
def __init__(self,
|
|
54
|
+
class StepBinaryContainerPbo(_message.Message):
|
|
55
|
+
__slots__ = ("items",)
|
|
56
|
+
ITEMS_FIELD_NUMBER: _ClassVar[int]
|
|
57
|
+
items: _containers.RepeatedScalarFieldContainer[bytes]
|
|
58
|
+
def __init__(self, items: _Optional[_Iterable[bytes]] = ...) -> None: ...
|
|
59
59
|
|
|
60
|
-
class
|
|
61
|
-
__slots__ = ("image_format", "
|
|
60
|
+
class StepImageContainerPbo(_message.Message):
|
|
61
|
+
__slots__ = ("image_format", "items")
|
|
62
62
|
IMAGE_FORMAT_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
-
|
|
63
|
+
ITEMS_FIELD_NUMBER: _ClassVar[int]
|
|
64
64
|
image_format: str
|
|
65
|
-
|
|
66
|
-
def __init__(self, image_format: _Optional[str] = ...,
|
|
65
|
+
items: _containers.RepeatedScalarFieldContainer[bytes]
|
|
66
|
+
def __init__(self, image_format: _Optional[str] = ..., items: _Optional[_Iterable[bytes]] = ...) -> None: ...
|
|
67
67
|
|
|
68
|
-
class
|
|
69
|
-
__slots__ = ("dataType", "
|
|
68
|
+
class StepItemContainerPbo(_message.Message):
|
|
69
|
+
__slots__ = ("dataType", "binary_container", "csv_container", "json_container", "text_container", "image_container")
|
|
70
70
|
DATATYPE_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
dataType:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
def __init__(self, dataType: _Optional[_Union[
|
|
71
|
+
BINARY_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
CSV_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
JSON_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
TEXT_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
IMAGE_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
dataType: DataTypePbo
|
|
77
|
+
binary_container: StepBinaryContainerPbo
|
|
78
|
+
csv_container: StepCsvContainerPbo
|
|
79
|
+
json_container: StepJsonContainerPbo
|
|
80
|
+
text_container: StepTextContainerPbo
|
|
81
|
+
image_container: StepImageContainerPbo
|
|
82
|
+
def __init__(self, dataType: _Optional[_Union[DataTypePbo, str]] = ..., binary_container: _Optional[_Union[StepBinaryContainerPbo, _Mapping]] = ..., csv_container: _Optional[_Union[StepCsvContainerPbo, _Mapping]] = ..., json_container: _Optional[_Union[StepJsonContainerPbo, _Mapping]] = ..., text_container: _Optional[_Union[StepTextContainerPbo, _Mapping]] = ..., image_container: _Optional[_Union[StepImageContainerPbo, _Mapping]] = ...) -> None: ...
|
|
83
83
|
|
|
84
|
-
class
|
|
85
|
-
__slots__ = ("is_partial", "
|
|
84
|
+
class StepInputBatchPbo(_message.Message):
|
|
85
|
+
__slots__ = ("is_partial", "item_container")
|
|
86
86
|
IS_PARTIAL_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
-
|
|
87
|
+
ITEM_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
88
88
|
is_partial: bool
|
|
89
|
-
|
|
90
|
-
def __init__(self, is_partial: bool = ...,
|
|
89
|
+
item_container: StepItemContainerPbo
|
|
90
|
+
def __init__(self, is_partial: bool = ..., item_container: _Optional[_Union[StepItemContainerPbo, _Mapping]] = ...) -> None: ...
|
|
91
91
|
|
|
92
|
-
class
|
|
93
|
-
__slots__ = ("
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
def __init__(self,
|
|
92
|
+
class StepOutputBatchPbo(_message.Message):
|
|
93
|
+
__slots__ = ("item_container",)
|
|
94
|
+
ITEM_CONTAINER_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
item_container: StepItemContainerPbo
|
|
96
|
+
def __init__(self, item_container: _Optional[_Union[StepItemContainerPbo, _Mapping]] = ...) -> None: ...
|
|
@@ -22,17 +22,19 @@ _runtime_version.ValidateProtobufRuntimeVersion(
|
|
|
22
22
|
_sym_db = _symbol_database.Default()
|
|
23
23
|
|
|
24
24
|
|
|
25
|
+
from sapiopycommons.ai.api.fielddefinitions.proto import fields_pb2 as sapiopycommons_dot_ai_dot_api_dot_fielddefinitions_dot_proto_dot_fields__pb2
|
|
25
26
|
from sapiopycommons.ai.api.fielddefinitions.proto import velox_field_def_pb2 as sapiopycommons_dot_ai_dot_api_dot_fielddefinitions_dot_proto_dot_velox__field__def__pb2
|
|
26
27
|
from sapiopycommons.ai.api.plan.tool.proto import entry_pb2 as sapiopycommons_dot_ai_dot_api_dot_plan_dot_tool_dot_proto_dot_entry__pb2
|
|
27
28
|
from sapiopycommons.ai.api.plan.proto import step_pb2 as sapiopycommons_dot_ai_dot_api_dot_plan_dot_proto_dot_step__pb2
|
|
28
29
|
from sapiopycommons.ai.api.session.proto import sapio_conn_info_pb2 as sapiopycommons_dot_ai_dot_api_dot_session_dot_proto_dot_sapio__conn__info__pb2
|
|
29
30
|
|
|
31
|
+
from sapiopycommons.ai.api.fielddefinitions.proto.fields_pb2 import *
|
|
30
32
|
from sapiopycommons.ai.api.fielddefinitions.proto.velox_field_def_pb2 import *
|
|
31
33
|
from sapiopycommons.ai.api.plan.tool.proto.entry_pb2 import *
|
|
32
34
|
from sapiopycommons.ai.api.plan.proto.step_pb2 import *
|
|
33
35
|
from sapiopycommons.ai.api.session.proto.sapio_conn_info_pb2 import *
|
|
34
36
|
|
|
35
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0sapiopycommons/ai/api/plan/tool/proto/tool.proto\x1a\x42sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def.proto\x1a\x31sapiopycommons/ai/api/plan/tool/proto/entry.proto\x1a+sapiopycommons/ai/api/plan/proto/step.proto\x1a\x39sapiopycommons/ai/api/session/proto/sapio_conn_info.proto\"
|
|
37
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0sapiopycommons/ai/api/plan/tool/proto/tool.proto\x1a\x39sapiopycommons/ai/api/fielddefinitions/proto/fields.proto\x1a\x42sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def.proto\x1a\x31sapiopycommons/ai/api/plan/tool/proto/entry.proto\x1a+sapiopycommons/ai/api/plan/proto/step.proto\x1a\x39sapiopycommons/ai/api/session/proto/sapio_conn_info.proto\"z\n\x13ToolIoConfigBasePbo\x12\x14\n\x0c\x63ontent_type\x18\x01 \x01(\t\x12\x11\n\tio_number\x18\x02 \x01(\x05\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12\x0f\n\x07\x65xample\x18\x05 \x01(\t\"\xd9\x02\n\x13ToolInputDetailsPbo\x12)\n\x0b\x62\x61se_config\x18\x01 \x01(\x0b\x32\x14.ToolIoConfigBasePbo\x12\x12\n\nvalidation\x18\x02 \x01(\t\x12\x1c\n\x0fmin_input_count\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x1c\n\x0fmax_input_count\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12\r\n\x05paged\x18\x05 \x01(\x08\x12\x1a\n\rmin_page_size\x18\x06 \x01(\x05H\x02\x88\x01\x01\x12\x1a\n\rmax_page_size\x18\x07 \x01(\x05H\x03\x88\x01\x01\x12\x1e\n\x11max_request_bytes\x18\x08 \x01(\x05H\x04\x88\x01\x01\x42\x12\n\x10_min_input_countB\x12\n\x10_max_input_countB\x10\n\x0e_min_page_sizeB\x10\n\x0e_max_page_sizeB\x14\n\x12_max_request_bytes\"A\n\x14ToolOutputDetailsPbo\x12)\n\x0b\x62\x61se_config\x18\x01 \x01(\x0b\x32\x14.ToolIoConfigBasePbo\"\xab\x03\n\x15ProcessStepRequestPbo\x12+\n\nsapio_user\x18\x01 \x01(\x0b\x32\x17.SapioConnectionInfoPbo\x12\x11\n\ttool_name\x18\x02 \x01(\t\x12\x18\n\x10plan_instance_id\x18\x03 \x01(\x03\x12\x18\n\x10step_instance_id\x18\x04 \x01(\x03\x12\x15\n\rinvocation_id\x18\x05 \x01(\x03\x12%\n\rinput_configs\x18\x06 \x03(\x0b\x32\x0e.StepIoInfoPbo\x12&\n\x0eoutput_configs\x18\x07 \x03(\x0b\x32\x0e.StepIoInfoPbo\x12J\n\x13\x63onfig_field_values\x18\x08 \x03(\x0b\x32-.ProcessStepRequestPbo.ConfigFieldValuesEntry\x12\"\n\x05input\x18\xff\x0f \x03(\x0b\x32\x12.StepInputBatchPbo\x1aH\n\x16\x43onfigFieldValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1d\n\x05value\x18\x02 \x01(\x0b\x32\x0e.FieldValuePbo:\x02\x38\x01\"u\n\x16ProcessStepResponsePbo\x12\'\n\x0bnew_records\x18\xfd\x0f \x03(\x0b\x32\x11.FieldValueMapPbo\x12\x0c\n\x03log\x18\xfe\x0f \x03(\t\x12$\n\x06output\x18\xff\x0f \x03(\x0b\x32\x13.StepOutputBatchPbo\"I\n\x15ToolDetailsRequestPbo\x12\x30\n\x0fsapio_conn_info\x18\x01 \x01(\x0b\x32\x17.SapioConnectionInfoPbo\"\xd8\x01\n\x0eToolDetailsPbo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x1d\n\x15output_data_type_name\x18\x04 \x01(\t\x12+\n\rinput_configs\x18\x05 \x03(\x0b\x32\x14.ToolInputDetailsPbo\x12-\n\x0eoutput_configs\x18\x06 \x03(\x0b\x32\x15.ToolOutputDetailsPbo\x12(\n\rconfig_fields\x18\x07 \x03(\x0b\x32\x11.VeloxFieldDefPbo\"_\n\x16ToolDetailsResponsePbo\x12\x1e\n\x16tool_framework_version\x18\x01 \x01(\x05\x12%\n\x0ctool_details\x18\x02 \x03(\x0b\x32\x0f.ToolDetailsPbo2\x90\x01\n\x0bToolService\x12\x41\n\x0eGetToolDetails\x12\x16.ToolDetailsRequestPbo\x1a\x17.ToolDetailsResponsePbo\x12>\n\x0bProcessData\x12\x16.ProcessStepRequestPbo\x1a\x17.ProcessStepResponsePboB!\n\x1d\x63om.velox.api.plan.tool.protoP\x01P\x00P\x01P\x02P\x03P\x04\x62\x06proto3')
|
|
36
38
|
|
|
37
39
|
_globals = globals()
|
|
38
40
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -40,34 +42,26 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'sapiopycommons.ai.api.plan.
|
|
|
40
42
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
41
43
|
_globals['DESCRIPTOR']._loaded_options = None
|
|
42
44
|
_globals['DESCRIPTOR']._serialized_options = b'\n\035com.velox.api.plan.tool.protoP\001'
|
|
43
|
-
_globals['
|
|
44
|
-
_globals['
|
|
45
|
-
_globals['
|
|
46
|
-
_globals['
|
|
47
|
-
_globals['
|
|
48
|
-
_globals['
|
|
49
|
-
_globals['
|
|
50
|
-
_globals['
|
|
51
|
-
_globals['
|
|
52
|
-
_globals['
|
|
53
|
-
_globals['
|
|
54
|
-
_globals['
|
|
55
|
-
_globals['
|
|
56
|
-
_globals['
|
|
57
|
-
_globals['
|
|
58
|
-
_globals['
|
|
59
|
-
_globals['
|
|
60
|
-
_globals['
|
|
61
|
-
_globals['
|
|
62
|
-
_globals['
|
|
63
|
-
_globals['
|
|
64
|
-
_globals['
|
|
65
|
-
_globals['_STEPRECORD_FIELDSENTRY']._serialized_start=1590
|
|
66
|
-
_globals['_STEPRECORD_FIELDSENTRY']._serialized_end=1658
|
|
67
|
-
_globals['_TOOLDETAILS']._serialized_start=1661
|
|
68
|
-
_globals['_TOOLDETAILS']._serialized_end=1870
|
|
69
|
-
_globals['_TOOLDETAILSRESPONSE']._serialized_start=1872
|
|
70
|
-
_globals['_TOOLDETAILSRESPONSE']._serialized_end=1961
|
|
71
|
-
_globals['_TOOLSERVICE']._serialized_start=1964
|
|
72
|
-
_globals['_TOOLSERVICE']._serialized_end=2096
|
|
45
|
+
_globals['_PROCESSSTEPREQUESTPBO_CONFIGFIELDVALUESENTRY']._loaded_options = None
|
|
46
|
+
_globals['_PROCESSSTEPREQUESTPBO_CONFIGFIELDVALUESENTRY']._serialized_options = b'8\001'
|
|
47
|
+
_globals['_TOOLIOCONFIGBASEPBO']._serialized_start=334
|
|
48
|
+
_globals['_TOOLIOCONFIGBASEPBO']._serialized_end=456
|
|
49
|
+
_globals['_TOOLINPUTDETAILSPBO']._serialized_start=459
|
|
50
|
+
_globals['_TOOLINPUTDETAILSPBO']._serialized_end=804
|
|
51
|
+
_globals['_TOOLOUTPUTDETAILSPBO']._serialized_start=806
|
|
52
|
+
_globals['_TOOLOUTPUTDETAILSPBO']._serialized_end=871
|
|
53
|
+
_globals['_PROCESSSTEPREQUESTPBO']._serialized_start=874
|
|
54
|
+
_globals['_PROCESSSTEPREQUESTPBO']._serialized_end=1301
|
|
55
|
+
_globals['_PROCESSSTEPREQUESTPBO_CONFIGFIELDVALUESENTRY']._serialized_start=1229
|
|
56
|
+
_globals['_PROCESSSTEPREQUESTPBO_CONFIGFIELDVALUESENTRY']._serialized_end=1301
|
|
57
|
+
_globals['_PROCESSSTEPRESPONSEPBO']._serialized_start=1303
|
|
58
|
+
_globals['_PROCESSSTEPRESPONSEPBO']._serialized_end=1420
|
|
59
|
+
_globals['_TOOLDETAILSREQUESTPBO']._serialized_start=1422
|
|
60
|
+
_globals['_TOOLDETAILSREQUESTPBO']._serialized_end=1495
|
|
61
|
+
_globals['_TOOLDETAILSPBO']._serialized_start=1498
|
|
62
|
+
_globals['_TOOLDETAILSPBO']._serialized_end=1714
|
|
63
|
+
_globals['_TOOLDETAILSRESPONSEPBO']._serialized_start=1716
|
|
64
|
+
_globals['_TOOLDETAILSRESPONSEPBO']._serialized_end=1811
|
|
65
|
+
_globals['_TOOLSERVICE']._serialized_start=1814
|
|
66
|
+
_globals['_TOOLSERVICE']._serialized_end=1958
|
|
73
67
|
# @@protoc_insertion_point(module_scope)
|