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.

Files changed (26) hide show
  1. sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.py +43 -0
  2. sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.pyi +31 -0
  3. sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2_grpc.py +24 -0
  4. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.py +89 -89
  5. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.pyi +174 -174
  6. sapiopycommons/ai/api/plan/proto/step_output_pb2.py +11 -11
  7. sapiopycommons/ai/api/plan/proto/step_output_pb2.pyi +27 -27
  8. sapiopycommons/ai/api/plan/proto/step_pb2.py +9 -9
  9. sapiopycommons/ai/api/plan/proto/step_pb2.pyi +10 -10
  10. sapiopycommons/ai/api/plan/script/proto/script_pb2.py +13 -13
  11. sapiopycommons/ai/api/plan/script/proto/script_pb2.pyi +39 -39
  12. sapiopycommons/ai/api/plan/script/proto/script_pb2_grpc.py +12 -12
  13. sapiopycommons/ai/api/plan/tool/proto/entry_pb2.py +23 -23
  14. sapiopycommons/ai/api/plan/tool/proto/entry_pb2.pyi +63 -63
  15. sapiopycommons/ai/api/plan/tool/proto/tool_pb2.py +25 -31
  16. sapiopycommons/ai/api/plan/tool/proto/tool_pb2.pyi +136 -158
  17. sapiopycommons/ai/api/plan/tool/proto/tool_pb2_grpc.py +12 -12
  18. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.py +5 -5
  19. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.pyi +8 -8
  20. sapiopycommons/ai/protobuf_utils.py +452 -0
  21. sapiopycommons/ai/tool_service_base.py +288 -162
  22. {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/METADATA +1 -1
  23. {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/RECORD +25 -22
  24. sapiopycommons/ai/tool_of_tools.py +0 -917
  25. {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/WHEEL +0 -0
  26. {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 DataType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
9
+ class DataTypePbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
10
  __slots__ = ()
11
- BINARY: _ClassVar[DataType]
12
- JSON: _ClassVar[DataType]
13
- CSV: _ClassVar[DataType]
14
- TEXT: _ClassVar[DataType]
15
- IMAGE: _ClassVar[DataType]
16
- BINARY: DataType
17
- JSON: DataType
18
- CSV: DataType
19
- TEXT: DataType
20
- IMAGE: DataType
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 StepCsvHeaderRow(_message.Message):
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 StepCsvRow(_message.Message):
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 StepCsvData(_message.Message):
35
- __slots__ = ("header", "entries")
34
+ class StepCsvContainerPbo(_message.Message):
35
+ __slots__ = ("header", "items")
36
36
  HEADER_FIELD_NUMBER: _ClassVar[int]
37
- ENTRIES_FIELD_NUMBER: _ClassVar[int]
38
- header: StepCsvHeaderRow
39
- entries: _containers.RepeatedCompositeFieldContainer[StepCsvRow]
40
- def __init__(self, header: _Optional[_Union[StepCsvHeaderRow, _Mapping]] = ..., entries: _Optional[_Iterable[_Union[StepCsvRow, _Mapping]]] = ...) -> None: ...
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 StepJsonData(_message.Message):
43
- __slots__ = ("entries",)
44
- ENTRIES_FIELD_NUMBER: _ClassVar[int]
45
- entries: _containers.RepeatedScalarFieldContainer[str]
46
- def __init__(self, entries: _Optional[_Iterable[str]] = ...) -> None: ...
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 StepTextData(_message.Message):
49
- __slots__ = ("entries",)
50
- ENTRIES_FIELD_NUMBER: _ClassVar[int]
51
- entries: _containers.RepeatedScalarFieldContainer[str]
52
- def __init__(self, entries: _Optional[_Iterable[str]] = ...) -> None: ...
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 StepBinaryData(_message.Message):
55
- __slots__ = ("entries",)
56
- ENTRIES_FIELD_NUMBER: _ClassVar[int]
57
- entries: _containers.RepeatedScalarFieldContainer[bytes]
58
- def __init__(self, entries: _Optional[_Iterable[bytes]] = ...) -> None: ...
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 StepImageData(_message.Message):
61
- __slots__ = ("image_format", "entries")
60
+ class StepImageContainerPbo(_message.Message):
61
+ __slots__ = ("image_format", "items")
62
62
  IMAGE_FORMAT_FIELD_NUMBER: _ClassVar[int]
63
- ENTRIES_FIELD_NUMBER: _ClassVar[int]
63
+ ITEMS_FIELD_NUMBER: _ClassVar[int]
64
64
  image_format: str
65
- entries: _containers.RepeatedScalarFieldContainer[bytes]
66
- def __init__(self, image_format: _Optional[str] = ..., entries: _Optional[_Iterable[bytes]] = ...) -> None: ...
65
+ items: _containers.RepeatedScalarFieldContainer[bytes]
66
+ def __init__(self, image_format: _Optional[str] = ..., items: _Optional[_Iterable[bytes]] = ...) -> None: ...
67
67
 
68
- class StepEntryData(_message.Message):
69
- __slots__ = ("dataType", "binary_data", "csv_data", "json_data", "text_data", "image_data")
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
- BINARY_DATA_FIELD_NUMBER: _ClassVar[int]
72
- CSV_DATA_FIELD_NUMBER: _ClassVar[int]
73
- JSON_DATA_FIELD_NUMBER: _ClassVar[int]
74
- TEXT_DATA_FIELD_NUMBER: _ClassVar[int]
75
- IMAGE_DATA_FIELD_NUMBER: _ClassVar[int]
76
- dataType: DataType
77
- binary_data: StepBinaryData
78
- csv_data: StepCsvData
79
- json_data: StepJsonData
80
- text_data: StepTextData
81
- image_data: StepImageData
82
- def __init__(self, dataType: _Optional[_Union[DataType, str]] = ..., binary_data: _Optional[_Union[StepBinaryData, _Mapping]] = ..., csv_data: _Optional[_Union[StepCsvData, _Mapping]] = ..., json_data: _Optional[_Union[StepJsonData, _Mapping]] = ..., text_data: _Optional[_Union[StepTextData, _Mapping]] = ..., image_data: _Optional[_Union[StepImageData, _Mapping]] = ...) -> None: ...
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 StepEntryInputData(_message.Message):
85
- __slots__ = ("is_partial", "entry_data")
84
+ class StepInputBatchPbo(_message.Message):
85
+ __slots__ = ("is_partial", "item_container")
86
86
  IS_PARTIAL_FIELD_NUMBER: _ClassVar[int]
87
- ENTRY_DATA_FIELD_NUMBER: _ClassVar[int]
87
+ ITEM_CONTAINER_FIELD_NUMBER: _ClassVar[int]
88
88
  is_partial: bool
89
- entry_data: StepEntryData
90
- def __init__(self, is_partial: bool = ..., entry_data: _Optional[_Union[StepEntryData, _Mapping]] = ...) -> None: ...
89
+ item_container: StepItemContainerPbo
90
+ def __init__(self, is_partial: bool = ..., item_container: _Optional[_Union[StepItemContainerPbo, _Mapping]] = ...) -> None: ...
91
91
 
92
- class StepEntryOutputData(_message.Message):
93
- __slots__ = ("entry_data",)
94
- ENTRY_DATA_FIELD_NUMBER: _ClassVar[int]
95
- entry_data: StepEntryData
96
- def __init__(self, entry_data: _Optional[_Union[StepEntryData, _Mapping]] = ...) -> None: ...
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\"w\n\x10ToolIoConfigBase\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\"\xd3\x02\n\x10ToolInputDetails\x12&\n\x0b\x62\x61se_config\x18\x01 \x01(\x0b\x32\x11.ToolIoConfigBase\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\";\n\x11ToolOutputDetails\x12&\n\x0b\x62\x61se_config\x18\x01 \x01(\x0b\x32\x11.ToolIoConfigBase\"\xa9\x03\n\x12ProcessStepRequest\x12(\n\nsapio_user\x18\x01 \x01(\x0b\x32\x14.SapioConnectionInfo\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\x0b.StepIoInfo\x12#\n\x0eoutput_configs\x18\x07 \x03(\x0b\x32\x0b.StepIoInfo\x12G\n\x13\x63onfig_field_values\x18\x08 \x03(\x0b\x32*.ProcessStepRequest.ConfigFieldValuesEntry\x12(\n\nentry_data\x18\xff\x0f \x03(\x0b\x32\x13.StepEntryInputData\x1aO\n\x16\x43onfigFieldValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x15.StepRecordFieldValue:\x02\x38\x01\"q\n\x13ProcessStepResponse\x12!\n\x0bnew_records\x18\xfd\x0f \x03(\x0b\x32\x0b.StepRecord\x12\x0c\n\x03log\x18\xfe\x0f \x03(\t\x12)\n\nentry_data\x18\xff\x0f \x03(\x0b\x32\x14.StepEntryOutputData\"C\n\x12ToolDetailsRequest\x12-\n\x0fsapio_conn_info\x18\x01 \x01(\x0b\x32\x14.SapioConnectionInfo\"z\n\x14StepRecordFieldValue\x12\x16\n\x0cstring_value\x18\x0f \x01(\tH\x00\x12\x13\n\tint_value\x18\x0e \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\r \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x0c \x01(\x08H\x00\x42\x07\n\x05\x66ield\"{\n\nStepRecord\x12\'\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x17.StepRecord.FieldsEntry\x1a\x44\n\x0b\x46ieldsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x15.StepRecordFieldValue:\x02\x38\x01\"\xd1\x01\n\x0bToolDetails\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\x11.ToolInputDetails\x12*\n\x0eoutput_configs\x18\x06 \x03(\x0b\x32\x12.ToolOutputDetails\x12*\n\rconfig_fields\x18\x07 \x03(\x0b\x32\x13.VeloxFieldDefProto\"Y\n\x13ToolDetailsResponse\x12\x1e\n\x16tool_framework_version\x18\x01 \x01(\x05\x12\"\n\x0ctool_details\x18\x02 \x03(\x0b\x32\x0c.ToolDetails2\x84\x01\n\x0bToolService\x12;\n\x0eGetToolDetails\x12\x13.ToolDetailsRequest\x1a\x14.ToolDetailsResponse\x12\x38\n\x0bProcessData\x12\x13.ProcessStepRequest\x1a\x14.ProcessStepResponseB!\n\x1d\x63om.velox.api.plan.tool.protoP\x01P\x00P\x01P\x02P\x03\x62\x06proto3')
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['_PROCESSSTEPREQUEST_CONFIGFIELDVALUESENTRY']._loaded_options = None
44
- _globals['_PROCESSSTEPREQUEST_CONFIGFIELDVALUESENTRY']._serialized_options = b'8\001'
45
- _globals['_STEPRECORD_FIELDSENTRY']._loaded_options = None
46
- _globals['_STEPRECORD_FIELDSENTRY']._serialized_options = b'8\001'
47
- _globals['_TOOLIOCONFIGBASE']._serialized_start=275
48
- _globals['_TOOLIOCONFIGBASE']._serialized_end=394
49
- _globals['_TOOLINPUTDETAILS']._serialized_start=397
50
- _globals['_TOOLINPUTDETAILS']._serialized_end=736
51
- _globals['_TOOLOUTPUTDETAILS']._serialized_start=738
52
- _globals['_TOOLOUTPUTDETAILS']._serialized_end=797
53
- _globals['_PROCESSSTEPREQUEST']._serialized_start=800
54
- _globals['_PROCESSSTEPREQUEST']._serialized_end=1225
55
- _globals['_PROCESSSTEPREQUEST_CONFIGFIELDVALUESENTRY']._serialized_start=1146
56
- _globals['_PROCESSSTEPREQUEST_CONFIGFIELDVALUESENTRY']._serialized_end=1225
57
- _globals['_PROCESSSTEPRESPONSE']._serialized_start=1227
58
- _globals['_PROCESSSTEPRESPONSE']._serialized_end=1340
59
- _globals['_TOOLDETAILSREQUEST']._serialized_start=1342
60
- _globals['_TOOLDETAILSREQUEST']._serialized_end=1409
61
- _globals['_STEPRECORDFIELDVALUE']._serialized_start=1411
62
- _globals['_STEPRECORDFIELDVALUE']._serialized_end=1533
63
- _globals['_STEPRECORD']._serialized_start=1535
64
- _globals['_STEPRECORD']._serialized_end=1658
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)