unique_toolkit 1.1.6__py3-none-any.whl → 1.1.7__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,6 +271,42 @@ 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
+
274
310
  def search_content_chunks(
275
311
  self,
276
312
  search_string: str,
@@ -337,6 +373,42 @@ class ContentService:
337
373
  logger.error(f"Error while searching content chunks: {e}")
338
374
  raise e
339
375
 
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
+
340
412
  async def search_content_chunks_async(
341
413
  self,
342
414
  search_string: str,
@@ -454,6 +526,38 @@ class ContentService:
454
526
 
455
527
  return self.search_contents(where, chat_id=chat_id)
456
528
 
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
+
457
561
  def upload_content_from_bytes(
458
562
  self,
459
563
  content: bytes,
@@ -497,6 +601,10 @@ class ContentService:
497
601
  metadata=metadata,
498
602
  )
499
603
 
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
500
608
  def upload_content(
501
609
  self,
502
610
  path_to_content: str,
@@ -508,7 +616,35 @@ class ContentService:
508
616
  skip_excel_ingestion: bool = False,
509
617
  ingestion_config: unique_sdk.Content.IngestionConfig | None = None,
510
618
  metadata: dict[str, Any] | None = None,
511
- ):
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:
512
648
  """
513
649
  Uploads content to the knowledge base.
514
650
 
@@ -136,6 +136,24 @@ 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
+
139
157
  def embed_texts(
140
158
  self,
141
159
  texts: list[str],
@@ -161,6 +179,24 @@ class EmbeddingService(BaseService):
161
179
  timeout=timeout,
162
180
  )
163
181
 
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
+
164
200
  async def embed_texts_async(
165
201
  self,
166
202
  texts: list[str],
@@ -222,6 +222,36 @@ 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
+
225
255
  def complete(
226
256
  self,
227
257
  messages: LanguageModelMessages,
@@ -249,6 +279,36 @@ class LanguageModelService:
249
279
  structured_output_enforce_schema=structured_output_enforce_schema,
250
280
  )
251
281
 
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
+
252
312
  async def complete_async(
253
313
  self,
254
314
  messages: LanguageModelMessages,
@@ -309,6 +369,38 @@ class LanguageModelService:
309
369
  structured_output_enforce_schema=structured_output_enforce_schema,
310
370
  )
311
371
 
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
+
312
404
  def complete_with_references(
313
405
  self,
314
406
  messages: LanguageModelMessages,
@@ -333,6 +425,38 @@ class LanguageModelService:
333
425
  start_text=start_text,
334
426
  )
335
427
 
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
+
336
460
  async def complete_with_references_async(
337
461
  self,
338
462
  messages: LanguageModelMessages,
@@ -346,6 +470,7 @@ class LanguageModelService:
346
470
  other_options: dict[str, Any] | None = None,
347
471
  ) -> LanguageModelStreamResponse:
348
472
  return await complete_with_references_async(
473
+ user_id=self._user_id,
349
474
  company_id=self._company_id,
350
475
  messages=messages,
351
476
  model_name=model_name,
@@ -209,6 +209,15 @@ 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
+
212
221
  async def find_latest_memory_async(self, key: str) -> ShortTermMemory:
213
222
  """
214
223
  Find the latest short term memory.
@@ -231,6 +240,15 @@ class ShortTermMemoryService:
231
240
  message_id=self._message_id,
232
241
  )
233
242
 
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
+
234
252
  def find_latest_memory(self, key: str) -> ShortTermMemory:
235
253
  """
236
254
  Find the latest short term memory.
@@ -253,6 +271,15 @@ class ShortTermMemoryService:
253
271
  message_id=self._message_id,
254
272
  )
255
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
+ 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
+
256
283
  async def create_memory_async(self, key: str, value: str | dict):
257
284
  """
258
285
  Create a short term memory.
@@ -277,6 +304,15 @@ class ShortTermMemoryService:
277
304
  message_id=self._message_id,
278
305
  )
279
306
 
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
+
280
316
  def create_memory(self, key: str, value: str | dict):
281
317
  """
282
318
  Create a short term memory.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 1.1.6
3
+ Version: 1.1.7
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Cedric Klinkert
@@ -118,6 +118,10 @@ 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.7] - 2025-09-23
122
+ - Introduce keyword only functions in services for better backward compatibility
123
+ - Deprecatea functions that are using positional arguments in services
124
+
121
125
  ## [1.1.6] - 2025-09-23
122
126
  - Fix model_dump for `ToolBuildConfig`
123
127
 
@@ -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=YT01Ol3czvopnvT1CxZUOYDxU85mxBaMt7C_lEcciDM,58162
91
+ unique_toolkit/chat/service.py,sha256=pWBsGR7PoICmrqwRsmrWx42hIZPZ7IeDucuOXOMLewA,85805
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=ZUXJwfNdHsAw_F7cfRMDVgHpSKxiwG6Cn8p7c4hV8TM,24053
98
+ unique_toolkit/content/service.py,sha256=YoKtUeuLZCmZM9mFS5JtBv9WJoIs6SAtyM3M65CoS0U,28666
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=XViQCbjG9yznIFhWjgBkla_4s7zM2lO12Cqob1FU63k,5283
104
+ unique_toolkit/embedding/service.py,sha256=yMBF4E2f4rSfVqWwbN6IDFolN0FDNZvDhnKrGP2GQJc,6225
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=JkYGtCug8POQskTv_aoYkzTMOaPCWRM94y73o3bUttQ,12019
121
+ unique_toolkit/language_model/service.py,sha256=Hvir3bSa6Rnlj5WhcrMMoJWLdvE0gQZMS50EElA1bIY,17206
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=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBuE9sI2o9Aajqjxg,8884
128
+ unique_toolkit/short_term_memory/service.py,sha256=LU5t5Zac3AWae_GfHSKYip8-LPiKcqIw8IbI1JPfYHg,10244
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.6.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
132
- unique_toolkit-1.1.6.dist-info/METADATA,sha256=sMJptXKLbf2ULpa6UcCWdX_mi7W-B5rQLNvHq0X1Q5A,32870
133
- unique_toolkit-1.1.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
134
- unique_toolkit-1.1.6.dist-info/RECORD,,
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,,