unique_toolkit 1.1.5__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.
- unique_toolkit/agentic/tools/config.py +45 -8
- unique_toolkit/agentic/tools/tool_manager.py +1 -4
- unique_toolkit/chat/service.py +785 -4
- unique_toolkit/content/service.py +137 -1
- unique_toolkit/embedding/service.py +36 -0
- unique_toolkit/language_model/service.py +125 -0
- unique_toolkit/short_term_memory/service.py +36 -0
- {unique_toolkit-1.1.5.dist-info → unique_toolkit-1.1.7.dist-info}/METADATA +9 -2
- {unique_toolkit-1.1.5.dist-info → unique_toolkit-1.1.7.dist-info}/RECORD +11 -11
- {unique_toolkit-1.1.5.dist-info → unique_toolkit-1.1.7.dist-info}/LICENSE +0 -0
- {unique_toolkit-1.1.5.dist-info → unique_toolkit-1.1.7.dist-info}/WHEEL +0 -0
@@ -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.
|
3
|
+
Version: 1.1.7
|
4
4
|
Summary:
|
5
5
|
License: Proprietary
|
6
6
|
Author: Cedric Klinkert
|
@@ -118,7 +118,14 @@ 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.
|
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
|
+
|
125
|
+
## [1.1.6] - 2025-09-23
|
126
|
+
- Fix model_dump for `ToolBuildConfig`
|
127
|
+
|
128
|
+
## [1.1.5] - 2025-09-23
|
122
129
|
- Fix a circular import and add tests for `ToolBuildConfig`
|
123
130
|
|
124
131
|
## [1.1.4] - 2025-09-23
|
@@ -56,7 +56,7 @@ unique_toolkit/agentic/tools/a2a/memory.py,sha256=4VFBzITCv5E_8YCc4iF4Y6FhzplS2C
|
|
56
56
|
unique_toolkit/agentic/tools/a2a/schema.py,sha256=T1l5z6trtPE5nhqPzt5tvfRNDhqL_ST1Wj7_lBWJ58g,304
|
57
57
|
unique_toolkit/agentic/tools/a2a/service.py,sha256=7n7BkJxTR-hpoQczfHLK8eS0rtATL7-YARH-4netbbI,5339
|
58
58
|
unique_toolkit/agentic/tools/agent_chunks_hanlder.py,sha256=x32Dp1Z8cVW5i-XzXbaMwX2KHPcNGmqEU-FB4AV9ZGo,1909
|
59
|
-
unique_toolkit/agentic/tools/config.py,sha256=
|
59
|
+
unique_toolkit/agentic/tools/config.py,sha256=B9Tl0uJ81XB4SjSke4kSydame4glGT2s69ZXfr0ViZU,4634
|
60
60
|
unique_toolkit/agentic/tools/factory.py,sha256=Wt0IGSbLg8ZTq5PU9p_JTW0LtNATWLpc3336irJKXlM,1277
|
61
61
|
unique_toolkit/agentic/tools/mcp/__init__.py,sha256=RLF_p-LDRC7GhiB3fdCi4u3bh6V9PY_w26fg61BLyco,122
|
62
62
|
unique_toolkit/agentic/tools/mcp/manager.py,sha256=DPYwwDe6RSZyuPaxn-je49fP_qOOs0ZV46EM6GZcV4c,2748
|
@@ -66,7 +66,7 @@ unique_toolkit/agentic/tools/schemas.py,sha256=0ZR8xCdGj1sEdPE0lfTIG2uSR5zqWoprU
|
|
66
66
|
unique_toolkit/agentic/tools/test/test_mcp_manager.py,sha256=9F7FjpYKeOkg2Z4bt2H1WGaxu9fzB-1iiE-b7g3KzQk,15724
|
67
67
|
unique_toolkit/agentic/tools/test/test_tool_progress_reporter.py,sha256=dod5QPqgGUInVAGXAbsAKNTEypIi6pUEWhDbJr9YfUU,6307
|
68
68
|
unique_toolkit/agentic/tools/tool.py,sha256=m56VLxiHuKU2_J5foZp00xhm5lTxWEW7zRLGbIE9ssU,6744
|
69
|
-
unique_toolkit/agentic/tools/tool_manager.py,sha256=
|
69
|
+
unique_toolkit/agentic/tools/tool_manager.py,sha256=E1eKZuc7eHPeGFqrGfdMGPNLqu3NYhrfKDjSJxMSuvU,10925
|
70
70
|
unique_toolkit/agentic/tools/tool_progress_reporter.py,sha256=ixud9VoHey1vlU1t86cW0-WTvyTwMxNSWBon8I11SUk,7955
|
71
71
|
unique_toolkit/agentic/tools/utils/__init__.py,sha256=iD1YYzf9LcJFv95Z8BqCAFSewNBabybZRZyvPKGfvro,27
|
72
72
|
unique_toolkit/agentic/tools/utils/execution/__init__.py,sha256=OHiKpqBnfhBiEQagKVWJsZlHv8smPp5OI4dFIexzibw,37
|
@@ -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=
|
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=
|
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=
|
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=
|
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=
|
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.
|
132
|
-
unique_toolkit-1.1.
|
133
|
-
unique_toolkit-1.1.
|
134
|
-
unique_toolkit-1.1.
|
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,,
|
File without changes
|
File without changes
|