unique_toolkit 1.42.6__py3-none-any.whl → 1.42.8__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.
- unique_toolkit/agentic_table/schemas.py +7 -0
- unique_toolkit/app/unique_settings.py +9 -1
- {unique_toolkit-1.42.6.dist-info → unique_toolkit-1.42.8.dist-info}/METADATA +8 -1
- {unique_toolkit-1.42.6.dist-info → unique_toolkit-1.42.8.dist-info}/RECORD +6 -6
- {unique_toolkit-1.42.6.dist-info → unique_toolkit-1.42.8.dist-info}/LICENSE +0 -0
- {unique_toolkit-1.42.6.dist-info → unique_toolkit-1.42.8.dist-info}/WHEEL +0 -0
|
@@ -53,6 +53,13 @@ class BaseMetadata(BaseModel):
|
|
|
53
53
|
default_factory=dict, description="Additional information for the sheet"
|
|
54
54
|
)
|
|
55
55
|
|
|
56
|
+
@field_validator("additional_sheet_information", mode="before")
|
|
57
|
+
@classmethod
|
|
58
|
+
def normalize_additional_sheet_information(cls, v):
|
|
59
|
+
if v is None:
|
|
60
|
+
return {}
|
|
61
|
+
return v
|
|
62
|
+
|
|
56
63
|
|
|
57
64
|
class RowMetadataEntry(BaseModel):
|
|
58
65
|
model_config = get_configuration_dict()
|
|
@@ -54,7 +54,15 @@ class UniqueApp(BaseSettings):
|
|
|
54
54
|
)
|
|
55
55
|
endpoint: str = Field(default="dummy")
|
|
56
56
|
|
|
57
|
-
endpoint_secret: SecretStr = Field(
|
|
57
|
+
endpoint_secret: SecretStr = Field(
|
|
58
|
+
default=SecretStr("dummy_secret"),
|
|
59
|
+
validation_alias=AliasChoices(
|
|
60
|
+
"unique_app_endpoint_secret",
|
|
61
|
+
"endpoint_secret",
|
|
62
|
+
"UNIQUE_APP_ENDPOINT_SECRET",
|
|
63
|
+
"ENDPOINT_SECRET",
|
|
64
|
+
),
|
|
65
|
+
)
|
|
58
66
|
|
|
59
67
|
@model_validator(mode="after")
|
|
60
68
|
def _warn_about_defaults(self) -> Self:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_toolkit
|
|
3
|
-
Version: 1.42.
|
|
3
|
+
Version: 1.42.8
|
|
4
4
|
Summary:
|
|
5
5
|
License: Proprietary
|
|
6
6
|
Author: Cedric Klinkert
|
|
@@ -124,6 +124,13 @@ All notable changes to this project will be documented in this file.
|
|
|
124
124
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
125
125
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
126
126
|
|
|
127
|
+
## [1.42.8] - 2026-01-08
|
|
128
|
+
- Add validator to `BaseMetadata` in case `additional_sheet_information` is empty
|
|
129
|
+
- Add more code snippets to create references and pull file metadata
|
|
130
|
+
|
|
131
|
+
## [1.42.7] - 2026-01-08
|
|
132
|
+
- Add aliases for endpoint secret env var.
|
|
133
|
+
|
|
127
134
|
## [1.42.6] - 2026-01-07
|
|
128
135
|
- Remove double redundant condition
|
|
129
136
|
|
|
@@ -138,7 +138,7 @@ unique_toolkit/agentic/tools/utils/source_handling/schema.py,sha256=iHBKuks6tUy8
|
|
|
138
138
|
unique_toolkit/agentic/tools/utils/source_handling/source_formatting.py,sha256=uZ0QXqrPWgId3ZA67dvjHQ6xrW491LK1xxx_sVJmFHg,9160
|
|
139
139
|
unique_toolkit/agentic/tools/utils/source_handling/tests/test_source_formatting.py,sha256=EA8iVvb3L91OFk2XMbGcFuhe2etqm3Sx9QCYDGiOSOM,6995
|
|
140
140
|
unique_toolkit/agentic_table/__init__.py,sha256=smJFstF5qH35RmZfzJUigdsVgUVNOza9KxMbraWrm9E,1411
|
|
141
|
-
unique_toolkit/agentic_table/schemas.py,sha256=
|
|
141
|
+
unique_toolkit/agentic_table/schemas.py,sha256=MaG6-LhW5uooAhsyUVOKl8VfCvJ02Drt7dwywJUXKgE,9256
|
|
142
142
|
unique_toolkit/agentic_table/service.py,sha256=Bgi0B_AT7Mswbud3VI-pNcnc_85xFu4S1dbLttYF7yY,16290
|
|
143
143
|
unique_toolkit/app/__init__.py,sha256=OaylhLwxeRlsHlcFGSlR5R7oREFsjv9wRdxuVZBYM_8,1371
|
|
144
144
|
unique_toolkit/app/dev_util.py,sha256=J20peCvrSQKfMGdYPYwCirs3Yq2v_e33GzNBzNKbWN4,5531
|
|
@@ -148,7 +148,7 @@ unique_toolkit/app/init_sdk.py,sha256=5_oDoETr6akwYyBCb0ivTdMNu3SVgPSkrXcDS6ELyY
|
|
|
148
148
|
unique_toolkit/app/performance/async_tasks.py,sha256=H0l3OAcosLwNHZ8d2pd-Di4wHIXfclEvagi5kfqLFPA,1941
|
|
149
149
|
unique_toolkit/app/performance/async_wrapper.py,sha256=yVVcRDkcdyfjsxro-N29SBvi-7773wnfDplef6-y8xw,1077
|
|
150
150
|
unique_toolkit/app/schemas.py,sha256=17Olyqc58LjFaZ6kYtPThWsGmRM0qGzDwRTekDNNw-E,10825
|
|
151
|
-
unique_toolkit/app/unique_settings.py,sha256=
|
|
151
|
+
unique_toolkit/app/unique_settings.py,sha256=ggAUPSbwoCiEhnvmSBWVPHimUpL5w4bqynM43WZ90Ng,12577
|
|
152
152
|
unique_toolkit/app/verification.py,sha256=GxFFwcJMy25fCA_Xe89wKW7bgqOu8PAs5y8QpHF0GSc,3861
|
|
153
153
|
unique_toolkit/app/webhook.py,sha256=k7DP1UTR3p7D4qzuKPKVmGMAkDVHfALrnMIzTZqj_OI,2320
|
|
154
154
|
unique_toolkit/chat/__init__.py,sha256=uP7P6YPeOjEOvpX3bhcU6ND_m0QLr4wMklcrnAKK0q4,804
|
|
@@ -215,7 +215,7 @@ unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBu
|
|
|
215
215
|
unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
216
|
unique_toolkit/smart_rules/compile.py,sha256=Ozhh70qCn2yOzRWr9d8WmJeTo7AQurwd3tStgBMPFLA,1246
|
|
217
217
|
unique_toolkit/test_utilities/events.py,sha256=_mwV2bs5iLjxS1ynDCjaIq-gjjKhXYCK-iy3dRfvO3g,6410
|
|
218
|
-
unique_toolkit-1.42.
|
|
219
|
-
unique_toolkit-1.42.
|
|
220
|
-
unique_toolkit-1.42.
|
|
221
|
-
unique_toolkit-1.42.
|
|
218
|
+
unique_toolkit-1.42.8.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
|
219
|
+
unique_toolkit-1.42.8.dist-info/METADATA,sha256=su-BJN4NWsxuKBdWmeWGF2tGzPDwh0Da_ea8stKGzWE,47356
|
|
220
|
+
unique_toolkit-1.42.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
221
|
+
unique_toolkit-1.42.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|