sapiopycommons 2025.9.10a743__py3-none-any.whl → 2025.9.10a744__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/tool_service_base.py +3 -3
- {sapiopycommons-2025.9.10a743.dist-info → sapiopycommons-2025.9.10a744.dist-info}/METADATA +1 -1
- {sapiopycommons-2025.9.10a743.dist-info → sapiopycommons-2025.9.10a744.dist-info}/RECORD +5 -5
- {sapiopycommons-2025.9.10a743.dist-info → sapiopycommons-2025.9.10a744.dist-info}/WHEEL +0 -0
- {sapiopycommons-2025.9.10a743.dist-info → sapiopycommons-2025.9.10a744.dist-info}/licenses/LICENSE +0 -0
|
@@ -663,7 +663,7 @@ class ToolBase(ABC):
|
|
|
663
663
|
string_properties=StringPropertiesPbo(
|
|
664
664
|
default_value=default_value,
|
|
665
665
|
max_length=max_length,
|
|
666
|
-
field_validator=FieldValidatorPbo(validation_regex, error_msg) if validation_regex else None
|
|
666
|
+
field_validator=FieldValidatorPbo(validation_regex=validation_regex, error_message=error_msg) if validation_regex else None
|
|
667
667
|
)
|
|
668
668
|
))
|
|
669
669
|
|
|
@@ -697,7 +697,7 @@ class ToolBase(ABC):
|
|
|
697
697
|
default_value=default_value,
|
|
698
698
|
static_list_values=allowed_values,
|
|
699
699
|
direct_edit=direct_edit,
|
|
700
|
-
field_validator=FieldValidatorPbo(validation_regex, error_msg) if validation_regex else None
|
|
700
|
+
field_validator=FieldValidatorPbo(validation_regex=validation_regex, error_message=error_msg) if validation_regex else None
|
|
701
701
|
)
|
|
702
702
|
))
|
|
703
703
|
|
|
@@ -732,7 +732,7 @@ class ToolBase(ABC):
|
|
|
732
732
|
static_list_values=allowed_values,
|
|
733
733
|
multi_select=True,
|
|
734
734
|
direct_edit=direct_edit,
|
|
735
|
-
field_validator=FieldValidatorPbo(validation_regex, error_msg) if validation_regex else None
|
|
735
|
+
field_validator=FieldValidatorPbo(validation_regex=validation_regex, error_message=error_msg) if validation_regex else None
|
|
736
736
|
)
|
|
737
737
|
))
|
|
738
738
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: sapiopycommons
|
|
3
|
-
Version: 2025.9.
|
|
3
|
+
Version: 2025.9.10a744
|
|
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>
|
|
@@ -4,7 +4,7 @@ sapiopycommons/ai/converter_service_base.py,sha256=TMSyEekbbqMk9dRuAtLlSJ1sA1H8K
|
|
|
4
4
|
sapiopycommons/ai/protobuf_utils.py,sha256=cBjbxoFAwU02kNUxEce95WnMU2CMuDD-qFaeWgvQJMQ,24599
|
|
5
5
|
sapiopycommons/ai/server.py,sha256=XDm_mj1yWHw-xQRFsFRHnsGw2JU0wsW2mR22P8PB09A,5744
|
|
6
6
|
sapiopycommons/ai/test_client.py,sha256=-kMXXU_f5FAB7n4UX66NT8I8G52M0eZjn-hpESN_io8,16330
|
|
7
|
-
sapiopycommons/ai/tool_service_base.py,sha256=
|
|
7
|
+
sapiopycommons/ai/tool_service_base.py,sha256=dEuhaQlHK0QNY0izDMYrh6iGGh-_E3X5WdWyhTmTmCY,49944
|
|
8
8
|
sapiopycommons/ai/protoapi/fielddefinitions/fields_pb2.py,sha256=8tKXwLXcqFGdQHHSEBSi6Fd7dcaCFoOqmhjzqhenb_M,2372
|
|
9
9
|
sapiopycommons/ai/protoapi/fielddefinitions/fields_pb2.pyi,sha256=FwtXmNAf7iYGEFm4kbqb04v77jNHbZg18ZmEDhle_bU,1444
|
|
10
10
|
sapiopycommons/ai/protoapi/fielddefinitions/fields_pb2_grpc.py,sha256=uO25bcnfGqXpP4ggUur54Nr73Wj-DGWftExzLNcxdHI,931
|
|
@@ -99,7 +99,7 @@ sapiopycommons/webhook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
99
99
|
sapiopycommons/webhook/webhook_context.py,sha256=D793uLsb1691SalaPnBUk3rOSxn_hYLhdvkaIxjNXss,1909
|
|
100
100
|
sapiopycommons/webhook/webhook_handlers.py,sha256=7o_wXOruhT9auNh8OfhJAh4WhhiPKij67FMBSpGPICc,39939
|
|
101
101
|
sapiopycommons/webhook/webservice_handlers.py,sha256=cvW6Mk_110BzYqkbk63Kg7jWrltBCDALOlkJRu8h4VQ,14300
|
|
102
|
-
sapiopycommons-2025.9.
|
|
103
|
-
sapiopycommons-2025.9.
|
|
104
|
-
sapiopycommons-2025.9.
|
|
105
|
-
sapiopycommons-2025.9.
|
|
102
|
+
sapiopycommons-2025.9.10a744.dist-info/METADATA,sha256=72aJpnGlZiqo_L-EB1JpdUyOmP8vLTNiLoOC8_RZ4o8,3143
|
|
103
|
+
sapiopycommons-2025.9.10a744.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
104
|
+
sapiopycommons-2025.9.10a744.dist-info/licenses/LICENSE,sha256=HyVuytGSiAUQ6ErWBHTqt1iSGHhLmlC8fO7jTCuR8dU,16725
|
|
105
|
+
sapiopycommons-2025.9.10a744.dist-info/RECORD,,
|
|
File without changes
|
{sapiopycommons-2025.9.10a743.dist-info → sapiopycommons-2025.9.10a744.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|