unique_toolkit 1.1.7__py3-none-any.whl → 1.1.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.
@@ -271,42 +271,6 @@ class ContentService:
271
271
  """
272
272
  self._metadata_filter = value
273
273
 
274
- @deprecated(
275
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
276
- )
277
- @overload
278
- def search_content_chunks(
279
- self,
280
- search_string: str,
281
- search_type: ContentSearchType,
282
- limit: int,
283
- search_language: str = DEFAULT_SEARCH_LANGUAGE,
284
- chat_id: str = "",
285
- reranker_config: ContentRerankerConfig | None = None,
286
- scope_ids: list[str] | None = None,
287
- chat_only: bool | None = None,
288
- metadata_filter: dict | None = None,
289
- content_ids: list[str] | None = None,
290
- score_threshold: float | None = None,
291
- ) -> list[ContentChunk]: ...
292
-
293
- @overload
294
- def search_content_chunks( # type: ignore
295
- self,
296
- *,
297
- search_string: str,
298
- search_type: ContentSearchType,
299
- limit: int,
300
- search_language: str = DEFAULT_SEARCH_LANGUAGE,
301
- chat_id: str = "",
302
- reranker_config: ContentRerankerConfig | None = None,
303
- scope_ids: list[str] | None = None,
304
- chat_only: bool | None = None,
305
- metadata_filter: dict | None = None,
306
- content_ids: list[str] | None = None,
307
- score_threshold: float | None = None,
308
- ) -> list[ContentChunk]: ...
309
-
310
274
  def search_content_chunks(
311
275
  self,
312
276
  search_string: str,
@@ -373,42 +337,6 @@ class ContentService:
373
337
  logger.error(f"Error while searching content chunks: {e}")
374
338
  raise e
375
339
 
376
- @deprecated(
377
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
378
- )
379
- @overload
380
- async def search_content_chunks_async(
381
- self,
382
- search_string: str,
383
- search_type: ContentSearchType,
384
- limit: int,
385
- search_language: str = DEFAULT_SEARCH_LANGUAGE,
386
- chat_id: str = "",
387
- reranker_config: ContentRerankerConfig | None = None,
388
- scope_ids: list[str] | None = None,
389
- chat_only: bool | None = None,
390
- metadata_filter: dict | None = None,
391
- content_ids: list[str] | None = None,
392
- score_threshold: float | None = None,
393
- ): ...
394
-
395
- @overload
396
- async def search_content_chunks_async( # type: ignore
397
- self,
398
- *,
399
- search_string: str,
400
- search_type: ContentSearchType,
401
- limit: int,
402
- search_language: str = DEFAULT_SEARCH_LANGUAGE,
403
- chat_id: str = "",
404
- reranker_config: ContentRerankerConfig | None = None,
405
- scope_ids: list[str] | None = None,
406
- chat_only: bool | None = None,
407
- metadata_filter: dict | None = None,
408
- content_ids: list[str] | None = None,
409
- score_threshold: float | None = None,
410
- ): ...
411
-
412
340
  async def search_content_chunks_async(
413
341
  self,
414
342
  search_string: str,
@@ -526,38 +454,6 @@ class ContentService:
526
454
 
527
455
  return self.search_contents(where, chat_id=chat_id)
528
456
 
529
- @deprecated(
530
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
531
- )
532
- @overload
533
- def upload_content_from_bytes(
534
- self,
535
- content: bytes,
536
- content_name: str,
537
- mime_type: str,
538
- scope_id: str | None = None,
539
- chat_id: str | None = None,
540
- skip_ingestion: bool = False,
541
- skip_excel_ingestion: bool = False,
542
- ingestion_config: unique_sdk.Content.IngestionConfig | None = None,
543
- metadata: dict | None = None,
544
- ) -> Content: ...
545
-
546
- @overload
547
- def upload_content_from_bytes( # type: ignore
548
- self,
549
- *,
550
- content: bytes,
551
- content_name: str,
552
- mime_type: str,
553
- scope_id: str | None = None,
554
- chat_id: str | None = None,
555
- skip_ingestion: bool = False,
556
- skip_excel_ingestion: bool = False,
557
- ingestion_config: unique_sdk.Content.IngestionConfig | None = None,
558
- metadata: dict | None = None,
559
- ) -> Content: ...
560
-
561
457
  def upload_content_from_bytes(
562
458
  self,
563
459
  content: bytes,
@@ -601,10 +497,6 @@ class ContentService:
601
497
  metadata=metadata,
602
498
  )
603
499
 
604
- @deprecated(
605
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
606
- )
607
- @overload
608
500
  def upload_content(
609
501
  self,
610
502
  path_to_content: str,
@@ -616,35 +508,7 @@ class ContentService:
616
508
  skip_excel_ingestion: bool = False,
617
509
  ingestion_config: unique_sdk.Content.IngestionConfig | None = None,
618
510
  metadata: dict[str, Any] | None = None,
619
- ) -> Content: ...
620
-
621
- @overload
622
- def upload_content( # type: ignore
623
- self,
624
- *,
625
- path_to_content: str,
626
- content_name: str,
627
- mime_type: str,
628
- scope_id: str | None = None,
629
- chat_id: str | None = None,
630
- skip_ingestion: bool = False,
631
- skip_excel_ingestion: bool = False,
632
- ingestion_config: unique_sdk.Content.IngestionConfig | None = None,
633
- metadata: dict[str, Any] | None = None,
634
- ) -> Content: ...
635
-
636
- def upload_content(
637
- self,
638
- path_to_content: str,
639
- content_name: str,
640
- mime_type: str,
641
- scope_id: str | None = None,
642
- chat_id: str | None = None,
643
- skip_ingestion: bool = False,
644
- skip_excel_ingestion: bool = False,
645
- ingestion_config: unique_sdk.Content.IngestionConfig | None = None,
646
- metadata: dict[str, Any] | None = None,
647
- ) -> Content:
511
+ ):
648
512
  """
649
513
  Uploads content to the knowledge base.
650
514
 
@@ -136,24 +136,6 @@ class EmbeddingService(BaseService):
136
136
  """
137
137
  self._user_id = value
138
138
 
139
- @deprecated(
140
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
141
- )
142
- @overload
143
- def embed_texts(
144
- self,
145
- texts: list[str],
146
- timeout: int = DEFAULT_TIMEOUT,
147
- ) -> Embeddings: ...
148
-
149
- @overload
150
- def embed_texts( # type: ignore
151
- self,
152
- *,
153
- texts: list[str],
154
- timeout: int = DEFAULT_TIMEOUT,
155
- ) -> Embeddings: ...
156
-
157
139
  def embed_texts(
158
140
  self,
159
141
  texts: list[str],
@@ -179,24 +161,6 @@ class EmbeddingService(BaseService):
179
161
  timeout=timeout,
180
162
  )
181
163
 
182
- @deprecated(
183
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
184
- )
185
- @overload
186
- async def embed_texts_async(
187
- self,
188
- texts: list[str],
189
- timeout: int = DEFAULT_TIMEOUT,
190
- ) -> Embeddings: ...
191
-
192
- @overload
193
- async def embed_texts_async( # type: ignore
194
- self,
195
- *,
196
- texts: list[str],
197
- timeout: int = DEFAULT_TIMEOUT,
198
- ) -> Embeddings: ...
199
-
200
164
  async def embed_texts_async(
201
165
  self,
202
166
  texts: list[str],
@@ -222,36 +222,6 @@ class LanguageModelService:
222
222
  """
223
223
  self._assistant_id = value
224
224
 
225
- @deprecated(
226
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
227
- )
228
- @overload
229
- def complete(
230
- self,
231
- messages: LanguageModelMessages,
232
- model_name: LanguageModelName | str,
233
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
234
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
235
- tools: Optional[list[LanguageModelTool | LanguageModelToolDescription]] = None,
236
- structured_output_model: Optional[Type[BaseModel]] = None,
237
- structured_output_enforce_schema: bool = False,
238
- other_options: Optional[dict] = None,
239
- ) -> LanguageModelResponse: ...
240
-
241
- @overload
242
- def complete( # type: ignore
243
- self,
244
- *,
245
- messages: LanguageModelMessages,
246
- model_name: LanguageModelName | str,
247
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
248
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
249
- tools: Optional[list[LanguageModelTool | LanguageModelToolDescription]] = None,
250
- structured_output_model: Optional[Type[BaseModel]] = None,
251
- structured_output_enforce_schema: bool = False,
252
- other_options: Optional[dict] = None,
253
- ) -> LanguageModelResponse: ...
254
-
255
225
  def complete(
256
226
  self,
257
227
  messages: LanguageModelMessages,
@@ -279,36 +249,6 @@ class LanguageModelService:
279
249
  structured_output_enforce_schema=structured_output_enforce_schema,
280
250
  )
281
251
 
282
- @deprecated(
283
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
284
- )
285
- @overload
286
- async def complete_async(
287
- self,
288
- messages: LanguageModelMessages,
289
- model_name: LanguageModelName | str,
290
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
291
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
292
- tools: Optional[list[LanguageModelTool | LanguageModelToolDescription]] = None,
293
- structured_output_model: Optional[Type[BaseModel]] = None,
294
- structured_output_enforce_schema: bool = False,
295
- other_options: Optional[dict] = None,
296
- ) -> LanguageModelResponse: ...
297
-
298
- @overload
299
- async def complete_async( # type: ignore
300
- self,
301
- *,
302
- messages: LanguageModelMessages,
303
- model_name: LanguageModelName | str,
304
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
305
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
306
- tools: Optional[list[LanguageModelTool | LanguageModelToolDescription]] = None,
307
- structured_output_model: Optional[Type[BaseModel]] = None,
308
- structured_output_enforce_schema: bool = False,
309
- other_options: Optional[dict] = None,
310
- ) -> LanguageModelResponse: ...
311
-
312
252
  async def complete_async(
313
253
  self,
314
254
  messages: LanguageModelMessages,
@@ -369,38 +309,6 @@ class LanguageModelService:
369
309
  structured_output_enforce_schema=structured_output_enforce_schema,
370
310
  )
371
311
 
372
- @deprecated(
373
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
374
- )
375
- @overload
376
- def complete_with_references(
377
- self,
378
- messages: LanguageModelMessages,
379
- model_name: LanguageModelName | str,
380
- content_chunks: list[ContentChunk] | None = None,
381
- debug_info: dict = {},
382
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
383
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
384
- tools: list[LanguageModelTool | LanguageModelToolDescription] | None = None,
385
- start_text: str | None = None,
386
- other_options: dict[str, Any] | None = None,
387
- ) -> LanguageModelStreamResponse: ...
388
-
389
- @overload
390
- def complete_with_references( # type: ignore
391
- self,
392
- *,
393
- messages: LanguageModelMessages,
394
- model_name: LanguageModelName | str,
395
- content_chunks: list[ContentChunk] | None = None,
396
- debug_info: dict = {},
397
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
398
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
399
- tools: list[LanguageModelTool | LanguageModelToolDescription] | None = None,
400
- start_text: str | None = None,
401
- other_options: dict[str, Any] | None = None,
402
- ) -> LanguageModelStreamResponse: ...
403
-
404
312
  def complete_with_references(
405
313
  self,
406
314
  messages: LanguageModelMessages,
@@ -425,38 +333,6 @@ class LanguageModelService:
425
333
  start_text=start_text,
426
334
  )
427
335
 
428
- @deprecated(
429
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
430
- )
431
- @overload
432
- async def complete_with_references_async(
433
- self,
434
- messages: LanguageModelMessages,
435
- model_name: LanguageModelName | str,
436
- content_chunks: list[ContentChunk] | None = None,
437
- debug_info: dict = {},
438
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
439
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
440
- tools: list[LanguageModelTool | LanguageModelToolDescription] | None = None,
441
- start_text: str | None = None,
442
- other_options: dict[str, Any] | None = None,
443
- ) -> LanguageModelStreamResponse: ...
444
-
445
- @overload
446
- async def complete_with_references_async( # type: ignore
447
- self,
448
- *,
449
- messages: LanguageModelMessages,
450
- model_name: LanguageModelName | str,
451
- content_chunks: list[ContentChunk] | None = None,
452
- debug_info: dict = {},
453
- temperature: float = DEFAULT_COMPLETE_TEMPERATURE,
454
- timeout: int = DEFAULT_COMPLETE_TIMEOUT,
455
- tools: list[LanguageModelTool | LanguageModelToolDescription] | None = None,
456
- start_text: str | None = None,
457
- other_options: dict[str, Any] | None = None,
458
- ) -> LanguageModelStreamResponse: ...
459
-
460
336
  async def complete_with_references_async(
461
337
  self,
462
338
  messages: LanguageModelMessages,
@@ -470,7 +346,6 @@ class LanguageModelService:
470
346
  other_options: dict[str, Any] | None = None,
471
347
  ) -> LanguageModelStreamResponse:
472
348
  return await complete_with_references_async(
473
- user_id=self._user_id,
474
349
  company_id=self._company_id,
475
350
  messages=messages,
476
351
  model_name=model_name,
@@ -209,15 +209,6 @@ class ShortTermMemoryService:
209
209
  message_id=chat_event.payload.user_message.id,
210
210
  )
211
211
 
212
- @deprecated(
213
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
214
- )
215
- @overload
216
- async def find_latest_memory_async(self, key: str) -> ShortTermMemory: ...
217
-
218
- @overload
219
- async def find_latest_memory_async(self, *, key: str) -> ShortTermMemory: ... # type: ignore
220
-
221
212
  async def find_latest_memory_async(self, key: str) -> ShortTermMemory:
222
213
  """
223
214
  Find the latest short term memory.
@@ -240,15 +231,6 @@ class ShortTermMemoryService:
240
231
  message_id=self._message_id,
241
232
  )
242
233
 
243
- @deprecated(
244
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
245
- )
246
- @overload
247
- def find_latest_memory(self, key: str) -> ShortTermMemory: ...
248
-
249
- @overload
250
- def find_latest_memory(self, *, key: str) -> ShortTermMemory: ... # type: ignore
251
-
252
234
  def find_latest_memory(self, key: str) -> ShortTermMemory:
253
235
  """
254
236
  Find the latest short term memory.
@@ -271,15 +253,6 @@ class ShortTermMemoryService:
271
253
  message_id=self._message_id,
272
254
  )
273
255
 
274
- @deprecated(
275
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
276
- )
277
- @overload
278
- async def create_memory_async(self, key: str, value: str | dict): ...
279
-
280
- @overload
281
- async def create_memory_async(self, *, key: str, value: str | dict): ... # type: ignore
282
-
283
256
  async def create_memory_async(self, key: str, value: str | dict):
284
257
  """
285
258
  Create a short term memory.
@@ -304,15 +277,6 @@ class ShortTermMemoryService:
304
277
  message_id=self._message_id,
305
278
  )
306
279
 
307
- @deprecated(
308
- "Use keyword only method instead. Positional arguments are deprecated and will be removed on the 1st of January 2026."
309
- )
310
- @overload
311
- def create_memory(self, key: str, value: str | dict): ...
312
-
313
- @overload
314
- def create_memory(self, *, key: str, value: str | dict): ... # type: ignore
315
-
316
280
  def create_memory(self, key: str, value: str | dict):
317
281
  """
318
282
  Create a short term memory.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 1.1.7
3
+ Version: 1.1.8
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Cedric Klinkert
@@ -118,6 +118,9 @@ All notable changes to this project will be documented in this file.
118
118
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
119
119
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
120
120
 
121
+ ## [1.1.8] - 2025-09-23
122
+ - Revert last to version 1.1.6
123
+
121
124
  ## [1.1.7] - 2025-09-23
122
125
  - Introduce keyword only functions in services for better backward compatibility
123
126
  - Deprecatea functions that are using positional arguments in services
@@ -88,20 +88,20 @@ unique_toolkit/chat/__init__.py,sha256=LRs2G-JTVuci4lbtHTkVUiNcZcSR6uqqfnAyo7af6
88
88
  unique_toolkit/chat/constants.py,sha256=05kq6zjqUVB2d6_P7s-90nbljpB3ryxwCI-CAz0r2O4,83
89
89
  unique_toolkit/chat/functions.py,sha256=qxBjxIFoko5vyQNJDYpIkMtBhEGGcSlWn6fkAY-dFVE,45213
90
90
  unique_toolkit/chat/schemas.py,sha256=u3WPdMkOlmwPGHUueQC-nk8k-QkM7ZSUcU0f-32g6Uc,6718
91
- unique_toolkit/chat/service.py,sha256=pWBsGR7PoICmrqwRsmrWx42hIZPZ7IeDucuOXOMLewA,85805
91
+ unique_toolkit/chat/service.py,sha256=YT01Ol3czvopnvT1CxZUOYDxU85mxBaMt7C_lEcciDM,58162
92
92
  unique_toolkit/chat/state.py,sha256=Cjgwv_2vhDFbV69xxsn7SefhaoIAEqLx3ferdVFCnOg,1445
93
93
  unique_toolkit/chat/utils.py,sha256=ihm-wQykBWhB4liR3LnwPVPt_qGW6ETq21Mw4HY0THE,854
94
94
  unique_toolkit/content/__init__.py,sha256=EdJg_A_7loEtCQf4cah3QARQreJx6pdz89Rm96YbMVg,940
95
95
  unique_toolkit/content/constants.py,sha256=1iy4Y67xobl5VTnJB6SxSyuoBWbdLl9244xfVMUZi5o,60
96
96
  unique_toolkit/content/functions.py,sha256=1zhxaJEYTvvd4qzkrbEFcrjdJxhHkfUY3dEpNfNC_hk,19052
97
97
  unique_toolkit/content/schemas.py,sha256=KJ604BOx0vBh2AwlTCZkOo55aHsI6yj8vxDAARKKqEo,2995
98
- unique_toolkit/content/service.py,sha256=YoKtUeuLZCmZM9mFS5JtBv9WJoIs6SAtyM3M65CoS0U,28666
98
+ unique_toolkit/content/service.py,sha256=ZUXJwfNdHsAw_F7cfRMDVgHpSKxiwG6Cn8p7c4hV8TM,24053
99
99
  unique_toolkit/content/utils.py,sha256=qNVmHTuETaPNGqheg7TbgPr1_1jbNHDc09N5RrmUIyo,7901
100
100
  unique_toolkit/embedding/__init__.py,sha256=uUyzjonPvuDCYsvXCIt7ErQXopLggpzX-MEQd3_e2kE,250
101
101
  unique_toolkit/embedding/constants.py,sha256=Lj8-Lcy1FvuC31PM9Exq7vaFuxQV4pEI1huUMFX-J2M,52
102
102
  unique_toolkit/embedding/functions.py,sha256=3qp-BfuMAbnp8YB04rh3xH8vsJuCBPizoy-JeaBFtoQ,1944
103
103
  unique_toolkit/embedding/schemas.py,sha256=1GvKCaSk4jixzVQ2PKq8yDqwGEVY_hWclYtoAr6CC2g,96
104
- unique_toolkit/embedding/service.py,sha256=yMBF4E2f4rSfVqWwbN6IDFolN0FDNZvDhnKrGP2GQJc,6225
104
+ unique_toolkit/embedding/service.py,sha256=XViQCbjG9yznIFhWjgBkla_4s7zM2lO12Cqob1FU63k,5283
105
105
  unique_toolkit/embedding/utils.py,sha256=v86lo__bCJbxZBQ3OcLu5SuwT6NbFfWlcq8iyk6BuzQ,279
106
106
  unique_toolkit/framework_utilities/__init__.py,sha256=fvAn9y4MRL1JgoO14ufQtLVRPRHn4jP07XRqt-TItCA,68
107
107
  unique_toolkit/framework_utilities/langchain/client.py,sha256=9LDRS2l9XGxL0HoFLh0ZrFUXrlt8o_J-o-1rU8j-uMQ,1432
@@ -118,17 +118,17 @@ unique_toolkit/language_model/infos.py,sha256=eHln--Y5f6znFxknV6A8m-fRaEpH5-kmRh
118
118
  unique_toolkit/language_model/prompt.py,sha256=JSawaLjQg3VR-E2fK8engFyJnNdk21zaO8pPIodzN4Q,3991
119
119
  unique_toolkit/language_model/reference.py,sha256=nkX2VFz-IrUz8yqyc3G5jUMNwrNpxITBrMEKkbqqYoI,8583
120
120
  unique_toolkit/language_model/schemas.py,sha256=EOgy-p1GRcS46Sq0qEsN8MfOMl-KCcvEd9aCmqm9d08,16497
121
- unique_toolkit/language_model/service.py,sha256=Hvir3bSa6Rnlj5WhcrMMoJWLdvE0gQZMS50EElA1bIY,17206
121
+ unique_toolkit/language_model/service.py,sha256=JkYGtCug8POQskTv_aoYkzTMOaPCWRM94y73o3bUttQ,12019
122
122
  unique_toolkit/language_model/utils.py,sha256=bPQ4l6_YO71w-zaIPanUUmtbXC1_hCvLK0tAFc3VCRc,1902
123
123
  unique_toolkit/protocols/support.py,sha256=V15WEIFKVMyF1QCnR8vIi4GrJy4dfTCB6d6JlqPZ58o,2341
124
124
  unique_toolkit/short_term_memory/__init__.py,sha256=2mI3AUrffgH7Yt-xS57EGqnHf7jnn6xquoKEhJqk3Wg,185
125
125
  unique_toolkit/short_term_memory/constants.py,sha256=698CL6-wjup2MvU19RxSmQk3gX7aqW_OOpZB7sbz_Xg,34
126
126
  unique_toolkit/short_term_memory/functions.py,sha256=3WiK-xatY5nh4Dr5zlDUye1k3E6kr41RiscwtTplw5k,4484
127
127
  unique_toolkit/short_term_memory/schemas.py,sha256=OhfcXyF6ACdwIXW45sKzjtZX_gkcJs8FEZXcgQTNenw,1406
128
- unique_toolkit/short_term_memory/service.py,sha256=LU5t5Zac3AWae_GfHSKYip8-LPiKcqIw8IbI1JPfYHg,10244
128
+ unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBuE9sI2o9Aajqjxg,8884
129
129
  unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
130
130
  unique_toolkit/smart_rules/compile.py,sha256=cxWjb2dxEI2HGsakKdVCkSNi7VK9mr08w5sDcFCQyWI,9553
131
- unique_toolkit-1.1.7.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
132
- unique_toolkit-1.1.7.dist-info/METADATA,sha256=lUgm-CIXU5dEW6HdBqI7ur5BLNEWaL1NBUmSmIBVkt0,33048
133
- unique_toolkit-1.1.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
134
- unique_toolkit-1.1.7.dist-info/RECORD,,
131
+ unique_toolkit-1.1.8.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
132
+ unique_toolkit-1.1.8.dist-info/METADATA,sha256=PZk9DqoRKtH35hnqcqRyNkcy20mLwytAiuqB6EAJp28,33104
133
+ unique_toolkit-1.1.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
134
+ unique_toolkit-1.1.8.dist-info/RECORD,,