sapiopycommons 2025.4.30a501__py3-none-any.whl → 2025.4.30a503__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.

@@ -1,3 +1,5 @@
1
+ from typing import Any
2
+
1
3
  from sapiopylib.rest.pojo.Sort import SortDirection
2
4
  from sapiopylib.rest.pojo.datatype.FieldDefinition import AbstractVeloxFieldDefinition, FieldType, \
3
5
  VeloxBooleanFieldDefinition, VeloxDateFieldDefinition, VeloxAccessionFieldDefinition, VeloxActionFieldDefinition, \
@@ -432,7 +434,7 @@ class ProtobufUtils:
432
434
  )
433
435
 
434
436
  @staticmethod
435
- def field_pbo_to_value(field: VeloxFieldDefPbo | FieldTypePbo, value: FieldValuePbo) -> FieldValue:
437
+ def field_pbo_to_value(field: Any, value: FieldValuePbo) -> FieldValue:
436
438
  """
437
439
  Convert a StepRecordFieldValue to its corresponding Python value based on the field type.
438
440
 
@@ -440,7 +442,7 @@ class ProtobufUtils:
440
442
  :param value: The StepRecordFieldValue object.
441
443
  :return: The corresponding Python value.
442
444
  """
443
- field_type = field.data_field_type if isinstance(field, VeloxFieldDefPbo) else field
445
+ field_type = field.data_field_type if hasattr(field, "data_field_type") else field
444
446
  match field_type:
445
447
  case FieldTypePbo.BOOLEAN:
446
448
  return value.bool_value
@@ -189,7 +189,7 @@ class ToolServiceBase(ToolServiceServicer, ABC):
189
189
  A base class for implementing a tool service. Subclasses should implement the register_tools method to register
190
190
  their tools with the service.
191
191
  """
192
- def GetToolDetailsPbo(self, request: ToolDetailsRequestPbo, context: ServicerContext) -> ToolDetailsResponsePbo:
192
+ def GetToolDetails(self, request: ToolDetailsRequestPbo, context: ServicerContext) -> ToolDetailsResponsePbo:
193
193
  try:
194
194
  # Get the tool details from the registered tools.
195
195
  details: list[ToolDetailsPbo] = self.get_details()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: sapiopycommons
3
- Version: 2025.4.30a501
3
+ Version: 2025.4.30a503
4
4
  Summary: Official Sapio Python API Utilities Package
5
5
  Project-URL: Homepage, https://github.com/sapiosciences
6
6
  Author-email: Jonathan Steck <jsteck@sapiosciences.com>, Yechen Qiao <yqiao@sapiosciences.com>
@@ -1,7 +1,7 @@
1
1
  sapiopycommons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  sapiopycommons/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- sapiopycommons/ai/protobuf_utils.py,sha256=1gB2IFbqwI2xI9868UnTzqflBsnXXk90n-IOEKGXWGk,22659
4
- sapiopycommons/ai/tool_service_base.py,sha256=p1bdFnZJxrBFfM5dTuz82wXpvbVhvP4tDOhgh9sAmOE,29754
3
+ sapiopycommons/ai/protobuf_utils.py,sha256=XVHbtljuhSRVfiBpFZEBkVHdW6plCo3mbXS11Sw_DT0,22653
4
+ sapiopycommons/ai/tool_service_base.py,sha256=5EstdLagpI_nk-2zj5WGUNgBtsA2yjQGgVNYLOi5TBM,29751
5
5
  sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.py,sha256=YcZjb_YM-XeLErM8hEC_S7vGMVGvcXAMGs2b-u5zvOE,2377
6
6
  sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.pyi,sha256=FwtXmNAf7iYGEFm4kbqb04v77jNHbZg18ZmEDhle_bU,1444
7
7
  sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2_grpc.py,sha256=wPImJPdCUZNVEVoUWzsba9kGIXjEKPdUkawP5SnVyiU,932
@@ -85,7 +85,7 @@ sapiopycommons/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
85
85
  sapiopycommons/webhook/webhook_context.py,sha256=D793uLsb1691SalaPnBUk3rOSxn_hYLhdvkaIxjNXss,1909
86
86
  sapiopycommons/webhook/webhook_handlers.py,sha256=L0HetSm43NvA5KyW3xbLpGFh2DbAaeZJVtXIEl2fvV8,39689
87
87
  sapiopycommons/webhook/webservice_handlers.py,sha256=Y5dHx_UFWFuSqaoPL6Re-fsKYRuxvCWZ8bj6KSZ3jfM,14285
88
- sapiopycommons-2025.4.30a501.dist-info/METADATA,sha256=aCth3LS0bqXate1ddoHEe94-HaKsVSe5CNU01jKblt8,3143
89
- sapiopycommons-2025.4.30a501.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
90
- sapiopycommons-2025.4.30a501.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
91
- sapiopycommons-2025.4.30a501.dist-info/RECORD,,
88
+ sapiopycommons-2025.4.30a503.dist-info/METADATA,sha256=l7J7bFKE-vNjiVG_4D2NIRFIqTrSyqprxJ2kovHc0WI,3143
89
+ sapiopycommons-2025.4.30a503.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
90
+ sapiopycommons-2025.4.30a503.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
91
+ sapiopycommons-2025.4.30a503.dist-info/RECORD,,