unique_toolkit 0.8.29__tar.gz → 1.36.0__tar.gz

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.
Files changed (242) hide show
  1. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/CHANGELOG.md +529 -1
  2. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/PKG-INFO +544 -9
  3. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/README.md +1 -1
  4. unique_toolkit-1.36.0/pyproject.toml +105 -0
  5. unique_toolkit-1.36.0/unique_toolkit/__init__.py +50 -0
  6. unique_toolkit-1.36.0/unique_toolkit/_common/api_calling/human_verification_manager.py +357 -0
  7. unique_toolkit-1.36.0/unique_toolkit/_common/base_model_type_attribute.py +303 -0
  8. unique_toolkit-1.36.0/unique_toolkit/_common/chunk_relevancy_sorter/config.py +49 -0
  9. {unique_toolkit-0.8.29/unique_toolkit/evaluators → unique_toolkit-1.36.0/unique_toolkit/_common/chunk_relevancy_sorter}/exception.py +1 -1
  10. unique_toolkit-1.36.0/unique_toolkit/_common/chunk_relevancy_sorter/schemas.py +46 -0
  11. unique_toolkit-1.36.0/unique_toolkit/_common/chunk_relevancy_sorter/service.py +374 -0
  12. unique_toolkit-1.36.0/unique_toolkit/_common/chunk_relevancy_sorter/tests/test_service.py +275 -0
  13. unique_toolkit-1.36.0/unique_toolkit/_common/default_language_model.py +12 -0
  14. unique_toolkit-1.36.0/unique_toolkit/_common/docx_generator/__init__.py +7 -0
  15. unique_toolkit-1.36.0/unique_toolkit/_common/docx_generator/config.py +12 -0
  16. unique_toolkit-1.36.0/unique_toolkit/_common/docx_generator/schemas.py +80 -0
  17. unique_toolkit-1.36.0/unique_toolkit/_common/docx_generator/service.py +225 -0
  18. unique_toolkit-1.36.0/unique_toolkit/_common/docx_generator/template/Doc Template.docx +0 -0
  19. unique_toolkit-1.36.0/unique_toolkit/_common/endpoint_builder.py +368 -0
  20. unique_toolkit-1.36.0/unique_toolkit/_common/endpoint_requestor.py +480 -0
  21. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/exception.py +24 -0
  22. unique_toolkit-1.36.0/unique_toolkit/_common/experimental/endpoint_builder.py +368 -0
  23. unique_toolkit-1.36.0/unique_toolkit/_common/experimental/endpoint_requestor.py +488 -0
  24. unique_toolkit-1.36.0/unique_toolkit/_common/feature_flags/schema.py +9 -0
  25. unique_toolkit-1.36.0/unique_toolkit/_common/pydantic/rjsf_tags.py +936 -0
  26. unique_toolkit-1.36.0/unique_toolkit/_common/pydantic_helpers.py +174 -0
  27. unique_toolkit-1.36.0/unique_toolkit/_common/referencing.py +53 -0
  28. unique_toolkit-1.36.0/unique_toolkit/_common/string_utilities.py +140 -0
  29. unique_toolkit-1.36.0/unique_toolkit/_common/tests/test_referencing.py +521 -0
  30. unique_toolkit-1.36.0/unique_toolkit/_common/tests/test_string_utilities.py +506 -0
  31. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/token/token_counting.py +26 -6
  32. unique_toolkit-1.36.0/unique_toolkit/_common/utils/__init__.py +1 -0
  33. unique_toolkit-1.36.0/unique_toolkit/_common/utils/files.py +43 -0
  34. unique_toolkit-1.36.0/unique_toolkit/_common/utils/image/encode.py +25 -0
  35. unique_toolkit-1.36.0/unique_toolkit/_common/utils/jinja/helpers.py +10 -0
  36. unique_toolkit-1.36.0/unique_toolkit/_common/utils/jinja/render.py +18 -0
  37. unique_toolkit-1.36.0/unique_toolkit/_common/utils/jinja/schema.py +65 -0
  38. unique_toolkit-1.36.0/unique_toolkit/_common/utils/jinja/utils.py +80 -0
  39. unique_toolkit-1.36.0/unique_toolkit/_common/utils/structured_output/__init__.py +1 -0
  40. unique_toolkit-1.36.0/unique_toolkit/_common/utils/structured_output/schema.py +5 -0
  41. unique_toolkit-1.36.0/unique_toolkit/_common/utils/write_configuration.py +51 -0
  42. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/validators.py +8 -1
  43. unique_toolkit-1.36.0/unique_toolkit/agentic/__init__.py +1 -0
  44. unique_toolkit-1.36.0/unique_toolkit/agentic/debug_info_manager/debug_info_manager.py +28 -0
  45. unique_toolkit-1.36.0/unique_toolkit/agentic/debug_info_manager/test/test_debug_info_manager.py +278 -0
  46. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/config.py +3 -2
  47. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/context_relevancy/schema.py +3 -6
  48. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/context_relevancy/service.py +47 -15
  49. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/evaluation_manager.py +18 -11
  50. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/hallucination/constants.py +6 -5
  51. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/hallucination/hallucination_evaluation.py +40 -16
  52. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/hallucination/service.py +9 -3
  53. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/hallucination/utils.py +7 -6
  54. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/output_parser.py +3 -3
  55. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/schemas.py +2 -1
  56. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/tests/test_context_relevancy_service.py +8 -8
  57. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/tests/test_output_parser.py +7 -4
  58. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/history_manager/history_construction_with_contents.py +1 -0
  59. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/history_manager/history_manager.py +59 -35
  60. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/history_manager/loop_token_reducer.py +93 -46
  61. unique_toolkit-1.36.0/unique_toolkit/agentic/history_manager/utils.py +96 -0
  62. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/__init__.py +19 -0
  63. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/_stream_handler_utils.py +57 -0
  64. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/base.py +38 -0
  65. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/middleware/__init__.py +7 -0
  66. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/middleware/planning/__init__.py +9 -0
  67. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/middleware/planning/planning.py +94 -0
  68. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/middleware/planning/schema.py +82 -0
  69. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/runners/__init__.py +6 -0
  70. unique_toolkit-1.36.0/unique_toolkit/agentic/loop_runner/runners/basic.py +94 -0
  71. unique_toolkit-1.36.0/unique_toolkit/agentic/message_log_manager/__init__.py +5 -0
  72. unique_toolkit-1.36.0/unique_toolkit/agentic/message_log_manager/service.py +93 -0
  73. unique_toolkit-1.36.0/unique_toolkit/agentic/postprocessor/postprocessor_manager.py +212 -0
  74. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/reference_manager/reference_manager.py +2 -2
  75. unique_toolkit-1.36.0/unique_toolkit/agentic/responses_api/__init__.py +19 -0
  76. unique_toolkit-1.36.0/unique_toolkit/agentic/responses_api/postprocessors/code_display.py +71 -0
  77. unique_toolkit-1.36.0/unique_toolkit/agentic/responses_api/postprocessors/generated_files.py +318 -0
  78. unique_toolkit-1.36.0/unique_toolkit/agentic/responses_api/stream_handler.py +15 -0
  79. {unique_toolkit-0.8.29/unique_toolkit/short_term_memory → unique_toolkit-1.36.0/unique_toolkit/agentic/short_term_memory_manager}/persistent_short_term_memory_manager.py +1 -1
  80. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/thinking_manager/thinking_manager.py +3 -3
  81. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/__init__.py +1 -0
  82. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/__init__.py +36 -0
  83. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/config.py +17 -0
  84. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/evaluation/__init__.py +15 -0
  85. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/evaluation/_utils.py +66 -0
  86. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/evaluation/config.py +55 -0
  87. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/evaluation/evaluator.py +260 -0
  88. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/evaluation/summarization_user_message.j2 +9 -0
  89. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/manager.py +55 -0
  90. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/__init__.py +21 -0
  91. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/_display_utils.py +240 -0
  92. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/_ref_utils.py +84 -0
  93. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/config.py +78 -0
  94. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/display.py +264 -0
  95. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/references.py +101 -0
  96. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/test/test_display.py +421 -0
  97. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/test/test_display_utils.py +2103 -0
  98. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/postprocessing/test/test_ref_utils.py +603 -0
  99. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/prompts.py +48 -0
  100. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/response_watcher/__init__.py +6 -0
  101. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/response_watcher/service.py +91 -0
  102. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/tool/__init__.py +4 -0
  103. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/tool/_memory.py +26 -0
  104. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/tool/_schema.py +9 -0
  105. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/tool/config.py +176 -0
  106. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/tool/service.py +443 -0
  107. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/a2a/tool/test/test_service_utils.py +829 -0
  108. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/agent_chunks_hanlder.py +65 -0
  109. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/config.py +39 -42
  110. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/factory.py +7 -3
  111. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/mcp/manager.py +10 -6
  112. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/mcp/models.py +1 -1
  113. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/mcp/tool_wrapper.py +16 -44
  114. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/openai_builtin/__init__.py +11 -0
  115. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/openai_builtin/base.py +46 -0
  116. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/openai_builtin/code_interpreter/__init__.py +8 -0
  117. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/openai_builtin/code_interpreter/config.py +102 -0
  118. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/openai_builtin/code_interpreter/service.py +250 -0
  119. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/openai_builtin/manager.py +79 -0
  120. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/schemas.py +6 -2
  121. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/test/test_mcp_manager.py +154 -17
  122. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/test/test_tool_progress_reporter.py +445 -0
  123. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/tool.py +33 -15
  124. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/tool_manager.py +492 -0
  125. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/tool_progress_reporter.py +81 -15
  126. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/utils/__init__.py +19 -0
  127. unique_toolkit-1.36.0/unique_toolkit/agentic/tools/utils/execution/__init__.py +1 -0
  128. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/utils/execution/execution.py +8 -4
  129. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/utils/source_handling/schema.py +1 -1
  130. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/utils/source_handling/source_formatting.py +1 -1
  131. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/utils/source_handling/tests/test_source_formatting.py +3 -3
  132. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/__init__.py +3 -0
  133. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/dev_util.py +37 -3
  134. unique_toolkit-1.36.0/unique_toolkit/app/fast_api_factory.py +131 -0
  135. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/schemas.py +55 -3
  136. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/unique_settings.py +103 -16
  137. unique_toolkit-1.36.0/unique_toolkit/app/webhook.py +77 -0
  138. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/chat/__init__.py +8 -1
  139. unique_toolkit-1.36.0/unique_toolkit/chat/deprecated/service.py +232 -0
  140. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/chat/functions.py +61 -42
  141. unique_toolkit-1.36.0/unique_toolkit/chat/rendering.py +34 -0
  142. unique_toolkit-1.36.0/unique_toolkit/chat/responses_api.py +461 -0
  143. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/chat/schemas.py +2 -1
  144. unique_toolkit-1.36.0/unique_toolkit/chat/service.py +157 -0
  145. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/content/functions.py +324 -6
  146. unique_toolkit-1.36.0/unique_toolkit/content/schemas.py +216 -0
  147. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/content/service.py +63 -40
  148. unique_toolkit-0.8.29/unique_toolkit/smart_rules/compile.py → unique_toolkit-1.36.0/unique_toolkit/content/smart_rules.py +29 -29
  149. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/content/utils.py +2 -0
  150. unique_toolkit-1.36.0/unique_toolkit/data_extraction/README.md +96 -0
  151. unique_toolkit-1.36.0/unique_toolkit/data_extraction/__init__.py +11 -0
  152. unique_toolkit-1.36.0/unique_toolkit/data_extraction/augmented/__init__.py +5 -0
  153. unique_toolkit-1.36.0/unique_toolkit/data_extraction/augmented/service.py +93 -0
  154. unique_toolkit-1.36.0/unique_toolkit/data_extraction/base.py +25 -0
  155. unique_toolkit-1.36.0/unique_toolkit/data_extraction/basic/__init__.py +11 -0
  156. unique_toolkit-1.36.0/unique_toolkit/data_extraction/basic/config.py +18 -0
  157. unique_toolkit-1.36.0/unique_toolkit/data_extraction/basic/prompt.py +13 -0
  158. unique_toolkit-1.36.0/unique_toolkit/data_extraction/basic/service.py +55 -0
  159. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/embedding/service.py +8 -2
  160. unique_toolkit-1.36.0/unique_toolkit/framework_utilities/langchain/__init__.py +10 -0
  161. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/framework_utilities/langchain/client.py +27 -3
  162. unique_toolkit-1.36.0/unique_toolkit/framework_utilities/openai/__init__.py +6 -0
  163. unique_toolkit-1.36.0/unique_toolkit/framework_utilities/openai/client.py +84 -0
  164. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/framework_utilities/openai/message_builder.py +85 -1
  165. unique_toolkit-1.36.0/unique_toolkit/language_model/_responses_api_utils.py +93 -0
  166. unique_toolkit-1.36.0/unique_toolkit/language_model/default_language_model.py +3 -0
  167. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/functions.py +62 -17
  168. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/infos.py +673 -46
  169. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/schemas.py +254 -42
  170. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/service.py +16 -11
  171. unique_toolkit-1.36.0/unique_toolkit/protocols/support.py +145 -0
  172. unique_toolkit-1.36.0/unique_toolkit/services/__init__.py +7 -0
  173. unique_toolkit-0.8.29/unique_toolkit/chat/service.py → unique_toolkit-1.36.0/unique_toolkit/services/chat_service.py +375 -349
  174. unique_toolkit-1.36.0/unique_toolkit/services/knowledge_base.py +1094 -0
  175. unique_toolkit-1.36.0/unique_toolkit/smart_rules/__init__.py +0 -0
  176. unique_toolkit-1.36.0/unique_toolkit/smart_rules/compile.py +56 -0
  177. unique_toolkit-1.36.0/unique_toolkit/test_utilities/events.py +197 -0
  178. unique_toolkit-0.8.29/pyproject.toml +0 -57
  179. unique_toolkit-0.8.29/unique_toolkit/__init__.py +0 -24
  180. unique_toolkit-0.8.29/unique_toolkit/_common/default_language_model.py +0 -6
  181. unique_toolkit-0.8.29/unique_toolkit/_common/endpoint_builder.py +0 -145
  182. unique_toolkit-0.8.29/unique_toolkit/content/schemas.py +0 -115
  183. unique_toolkit-0.8.29/unique_toolkit/debug_info_manager/debug_info_manager.py +0 -18
  184. unique_toolkit-0.8.29/unique_toolkit/evaluators/__init__.py +0 -1
  185. unique_toolkit-0.8.29/unique_toolkit/evaluators/config.py +0 -26
  186. unique_toolkit-0.8.29/unique_toolkit/evaluators/constants.py +0 -1
  187. unique_toolkit-0.8.29/unique_toolkit/evaluators/context_relevancy/constants.py +0 -34
  188. unique_toolkit-0.8.29/unique_toolkit/evaluators/context_relevancy/prompts.py +0 -31
  189. unique_toolkit-0.8.29/unique_toolkit/evaluators/context_relevancy/service.py +0 -53
  190. unique_toolkit-0.8.29/unique_toolkit/evaluators/context_relevancy/utils.py +0 -156
  191. unique_toolkit-0.8.29/unique_toolkit/evaluators/hallucination/constants.py +0 -41
  192. unique_toolkit-0.8.29/unique_toolkit/evaluators/hallucination/prompts.py +0 -79
  193. unique_toolkit-0.8.29/unique_toolkit/evaluators/hallucination/service.py +0 -58
  194. unique_toolkit-0.8.29/unique_toolkit/evaluators/hallucination/utils.py +0 -212
  195. unique_toolkit-0.8.29/unique_toolkit/evaluators/output_parser.py +0 -30
  196. unique_toolkit-0.8.29/unique_toolkit/evaluators/schemas.py +0 -82
  197. unique_toolkit-0.8.29/unique_toolkit/framework_utilities/openai/__init__.py +0 -6
  198. unique_toolkit-0.8.29/unique_toolkit/framework_utilities/openai/client.py +0 -46
  199. unique_toolkit-0.8.29/unique_toolkit/history_manager/utils.py +0 -173
  200. unique_toolkit-0.8.29/unique_toolkit/postprocessor/postprocessor_manager.py +0 -120
  201. unique_toolkit-0.8.29/unique_toolkit/protocols/support.py +0 -63
  202. unique_toolkit-0.8.29/unique_toolkit/tools/test/test_tool_progress_reporter.py +0 -205
  203. unique_toolkit-0.8.29/unique_toolkit/tools/tool_manager.py +0 -284
  204. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/LICENSE +0 -0
  205. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/_base_service.py +0 -0
  206. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/_time_utils.py +0 -0
  207. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/token/image_token_counting.py +0 -0
  208. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/_common/validate_required_values.py +0 -0
  209. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/context_relevancy/prompts.py +0 -0
  210. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/exception.py +0 -0
  211. {unique_toolkit-0.8.29/unique_toolkit/evals → unique_toolkit-1.36.0/unique_toolkit/agentic/evaluation}/hallucination/prompts.py +0 -0
  212. {unique_toolkit-0.8.29/unique_toolkit → unique_toolkit-1.36.0/unique_toolkit/agentic}/tools/mcp/__init__.py +0 -0
  213. {unique_toolkit-0.8.29/unique_toolkit/smart_rules → unique_toolkit-1.36.0/unique_toolkit/agentic/tools/utils/source_handling}/__init__.py +0 -0
  214. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/init_logging.py +0 -0
  215. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/init_sdk.py +0 -0
  216. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/performance/async_tasks.py +0 -0
  217. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/performance/async_wrapper.py +0 -0
  218. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/app/verification.py +0 -0
  219. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/chat/constants.py +0 -0
  220. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/chat/state.py +0 -0
  221. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/chat/utils.py +0 -0
  222. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/content/__init__.py +0 -0
  223. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/content/constants.py +0 -0
  224. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/embedding/__init__.py +0 -0
  225. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/embedding/constants.py +0 -0
  226. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/embedding/functions.py +0 -0
  227. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/embedding/schemas.py +0 -0
  228. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/embedding/utils.py +0 -0
  229. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/framework_utilities/__init__.py +0 -0
  230. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/framework_utilities/langchain/history.py +0 -0
  231. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/framework_utilities/utils.py +0 -0
  232. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/__init__.py +0 -0
  233. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/builder.py +0 -0
  234. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/constants.py +0 -0
  235. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/prompt.py +0 -0
  236. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/reference.py +0 -0
  237. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/language_model/utils.py +0 -0
  238. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/short_term_memory/__init__.py +0 -0
  239. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/short_term_memory/constants.py +0 -0
  240. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/short_term_memory/functions.py +0 -0
  241. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/short_term_memory/schemas.py +0 -0
  242. {unique_toolkit-0.8.29 → unique_toolkit-1.36.0}/unique_toolkit/short_term_memory/service.py +0 -0
@@ -4,6 +4,531 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [1.36.0] - 2025-12-11
9
+ - Add support for a sub agent tool system reminder when no references are present in the sub agent response.
10
+
11
+ ## [1.35.4] - 2025-12-10
12
+ - Fix a potential stacktrace leak
13
+
14
+ ## [1.35.3] - 2025-12-10
15
+ - Add option to ignore some options when calling the LLM for the planning step.
16
+
17
+ ## [1.35.2] - 2025-12-05
18
+ - Increase speed of token reducer
19
+
20
+ ## [1.35.1] - 2025-12-05
21
+ - Improve efficiency of token reducer if tool calls overshoot max token limit
22
+
23
+ ## [1.35.0] - 2025-12-04
24
+ - Add `LoopIterationRunner` abstraction and support for planning before every loop iteration.
25
+
26
+ ## [1.34.1] - 2025-12-02
27
+ - Update code interpreter tool instructions.
28
+
29
+ ## [1.34.0] - 2025-12-02
30
+ - Add option to upload code interpreter generated files to the chat.
31
+
32
+ ## [1.33.3] - 2025-12-02
33
+ - Fix serialization of ToolBuildConfig `configuration` field.
34
+
35
+ ## [1.33.2] - 2025-12-01
36
+ - Upgrade numpy to >2.1.0 to ensure compatibility with langchain library
37
+
38
+ ## [1.33.1] - 2025-12-01
39
+ - Add `data_extraction` to unique_toolkit
40
+
41
+ ## [1.33.0] - 2025-11-28
42
+ - Add support for system reminders in sub agent responses.
43
+
44
+ ## [1.32.1] - 2025-12-01
45
+ - Added documentation for the toolkit,some missing type hints and doc string fixes.
46
+
47
+ ## [1.32.0] - 2025-11-28
48
+ - Add option to filter duplicate sub agent answers.
49
+
50
+ ## [1.31.2] - 2025-11-27
51
+ - Added the function `filter_tool_calls_by_max_tool_calls_allowed` in `tool_manager` to limit the number of parallel tool calls permitted per loop iteration.
52
+
53
+ ## [1.31.1] - 2025-11-27
54
+ - Various fixes to sub agent answers.
55
+
56
+ ## [1.31.0] - 2025-11-20
57
+ - Adding model `litellm:anthropic-claude-opus-4-5` to `language_model/info.py`
58
+
59
+ ## [1.30.0] - 2025-11-26
60
+ - Add option to only display parts of sub agent responses.
61
+
62
+ ## [1.29.4] - 2025-11-25
63
+ - Add display name to openai builtin tools
64
+
65
+ ## [1.29.3] - 2025-11-24
66
+ - Fix jinja utility helpers import
67
+
68
+ ## [1.29.2] - 2025-11-21
69
+ - Add `jinja` utility helpers to `_common`
70
+
71
+ ## [1.29.1] - 2025-11-21
72
+ - Add early return in `create_message_log_entry` if chat_service doesn't have assistant_message_id (relevant for agentic table)
73
+
74
+ ## [1.29.0] - 2025-11-21
75
+ - Add option to force include references in sub agent responses even if unused by main agent response.
76
+
77
+ ## [1.28.9] - 2025-11-21
78
+ - Remove `knolwedge_base_service` from DocXGeneratorService
79
+
80
+ ## [1.28.8] - 2025-11-20
81
+ - Add query params to api operation
82
+ - Add query params to endpoint builder
83
+
84
+ ## [1.28.7] - 2025-11-20
85
+ - Adding Message Step Logger Class to the agentic tools.
86
+
87
+ ## [1.28.6] - 2025-11-20
88
+ - Adding tests for message role filtering in chat functions
89
+
90
+ ## [1.28.5] - 2025-11-20
91
+ - Including `expired_at` parameter in content schema
92
+ - Including chatRole `SYSTEM` into chat schema
93
+
94
+ ## [1.28.4] - 2025-11-20
95
+ - Bump tiktoken to 0.12.0
96
+
97
+ ## [1.28.3] - 2025-11-20
98
+ - Add batch upload of files to knowledgebase
99
+ - Add create folders utilities
100
+
101
+ ## [1.28.2] - 2025-11-20
102
+ - Adding model `litellm:gemini-3-pro-preview` to `language_model/info.py`
103
+
104
+ ## [1.28.1] - 2025-11-19
105
+ - Remove `chat_service` from DocXGeneratorService
106
+
107
+ ## [1.28.1] - 2025-11-19
108
+ - Set review standards in pyright for toolkit
109
+ - Refactor type check pipeline
110
+
111
+ ## [1.28.0] - 2025-11-19
112
+ - Add option to interpret sub agent responses as content chunks.
113
+ - Add option to specify a custom JSON schema for sub agent tool input.
114
+
115
+ ## [1.27.2] - 2025-11-19
116
+ - Add test to token counting
117
+
118
+ ## [1.27.1] - 2025-11-18
119
+ - Add missing `create_query_params_from_model` in experimental endoint_builder.py
120
+
121
+ ## [1.27.0] - 2025-11-18
122
+ - Add `session_config` field to `ChatEventPayload` schema for chat session configuration support
123
+ - Add `ingestion_state` field to `Content` model for tracking content ingestion status
124
+ - Add `include_failed_content` parameter to content search functions in `KnowledgeBaseService`, `search_contents`, and `search_contents_async`
125
+ - Experimental:
126
+ - Fix HTTP GET requests in `build_request_requestor` to use query parameters (`params`) instead of JSON body
127
+ - `build_requestor` to properly pass kwargs to `build_request_requestor`
128
+
129
+ ## [1.26.2] - 2025-11-17
130
+ - Adding tool format information for MCP tools
131
+
132
+ ## [1.26.1] - 2025-11-17
133
+ - Fix bug where forcing a tool still sends builtin tools to the LLM when using the responses api.
134
+
135
+ ## [1.26.0] - 2025-11-17
136
+ - Adding model `AZURE_GPT_51_2025_1113`, `AZURE_GPT_51_THINKING_2025_1113`, `AZURE_GPT_51_CHAT_2025_1113`, `AZURE_GPT_51_CODEX_2025_1113`, `AZURE_GPT_51_CODEX_MINI_2025_1113` and `litellm:openai-gpt-51` and `litellm:openai-gpt-51-thinking` to `language_model/info.py`
137
+
138
+ ## [1.25.2] - 2025-11-12
139
+ - Standardize paths in unique toolkit settings
140
+
141
+ ## [1.25.1] - 2025-11-12
142
+ - Make pipeline steps reusable
143
+ - Add pipeline checks for type errors
144
+ - Add pipeline checks for coverage
145
+
146
+ ## [1.25.0] - 2025-11-10
147
+ - Download files generated by code execution in parrallel.
148
+ - Better display of files in the chat while loading.
149
+
150
+ ## [1.24.5] - 2025-11-10
151
+ - Fix bug where images were not properly converted to responses api format.
152
+
153
+ ## [1.24.4] - 2025-11-07
154
+ - Add `user_id` to language service for tracking
155
+ - Track `user_id` in hallucination check
156
+
157
+ ## [1.24.3] - 2025-11-07
158
+ - Adding litellm models `litellm:gemini-2-5-flash-lite`
159
+
160
+ ## [1.24.2] - 2025-11-06
161
+ - Fix build_requestor typehints
162
+
163
+ ## [1.24.1] - 2025-11-06
164
+ - Add IconChartBar Icon to ToolIcon
165
+
166
+ ## [1.24.0] - 2025-11-04
167
+ - Introduce ability to include system reminders in tools to be appended when the response is included in the tool call history
168
+
169
+ ## [1.23.0] - 2025-11-04
170
+ - Refactor sub agent tools implementation for clarity and testability.
171
+
172
+ ## [1.22.2] - 2025-11-03
173
+ - Updated `unique_ai_how-it-works.md` and `plan_processing.md` to document how new assistant messages are generated when the orchestrator produces output text and triggers tool calls within the same loop iteration.
174
+
175
+ ## [1.22.1] - 2025-11-03
176
+ - Add missing package required markdown-it-py
177
+
178
+ ## [1.22.0] - 2025-10-31
179
+ - Add `DocxGeneratorService` for generating Word documents from markdown with template support
180
+ - Fix documentation for `update_message_execution`, `update_message_execution_async`, `update_assistant_message_execution`, and `update_assistant_message_execution_async` functions to correctly reflect that the `status` parameter is now optional
181
+
182
+ ## [1.21.2] - 2025-10-30
183
+ - Fixing that system format info is only appended to system prompt if tool is called
184
+
185
+ ## [1.21.1] - 2025-10-30
186
+ - Improve Spaces 2.0 display of tool progress reporter configuration.
187
+
188
+ ## [1.21.0] - 2025-10-30
189
+ - Add option to customize the display of tool progress statuses.
190
+
191
+ ## [1.20.1] - 2025-10-30
192
+ - Fix typing issues in `LanguageModelFunction`.
193
+
194
+ ## [1.20.0] - 2025-10-30
195
+ - Fix bug where async tasks executed with `SafeTaskExecutor` did not log exceptions.
196
+ - Add option to customize sub agent response display title.
197
+ - Add option to display sub agent responses after the main agent response.
198
+ - Add option to specify postprocessors to run before or after the others in the `PostprocessorManager`.
199
+
200
+ ## [1.19.3] - 2025-10-29
201
+ - More documentation on advanced rendering
202
+
203
+ ## [1.19.2] - 2025-10-29
204
+ - Removing unused tool specific `get_tool_call_result_for_loop_history` function
205
+ - Removing unused experimental config `full_sources_serialize_dump` in `history_manager`
206
+
207
+ ## [1.19.1] - 2025-10-29
208
+ - Make api operations more flexible
209
+ - Make verification button text adaptable
210
+
211
+ ## [1.19.0] - 2025-10-28
212
+ - Enable additional headers on openai and langchain client
213
+
214
+
215
+ ## [1.18.1] - 2025-10-28
216
+ - Fix bug where sub agent references were not properly displayed in the main agent response when the sub agent response was hidden.
217
+
218
+ ## [1.18.0] - 2025-10-27
219
+ - Temporary fix to rendering of sub agent responses.
220
+ - Add config option `stop_condition` to `SubAgentToolConfig`
221
+ - Add config option `tool_choices` to `SubAgentToolConfig`
222
+ - Make sub agent evaluation use the name of the sub agent name if only one assessment is valid
223
+
224
+ ## [1.17.3] - 2025-10-27
225
+ - Update Hallucination check citation regex parsing pattern
226
+
227
+ ## [1.17.2] - 2025-10-23
228
+ - Adding model `AZURE_GPT_5_PRO_2025_1006` and `litellm:openai-gpt-5-pro` to `language_model/info.py`
229
+
230
+ ## [1.17.1] - 2025-10-23
231
+ - Fix hallucination check input with all cited reference chunks.
232
+
233
+ ## [1.17.0] - 2025-10-22
234
+ - Add more options to display sub agent answers in the chat.
235
+
236
+ ## [1.16.5] - 2025-10-16
237
+ - Adding litellm models `litellm:anthropic-claude-haiku-4-5`
238
+
239
+ ## [1.16.4] - 2025-10-18
240
+ - Fix bug with MCP tool parameters schema
241
+
242
+ ## [1.16.3] - 2025-10-18
243
+ - Add logging of MCP tool schema and constructed parameters
244
+
245
+ ## [1.16.2] - 2025-10-16
246
+ - Reduce operation dependency on path instead of full url
247
+
248
+ ## [1.16.1] - 2025-10-16
249
+ - Update debug info for better tool call tracking
250
+
251
+ ## [1.16.0] - 2025-10-16
252
+ - Add responses api support.
253
+ - Add utilities for code execution.
254
+
255
+ ## [1.15.0] - 2025-10-15
256
+ - Enable to distinguish between environment and modifiable payload parameters in human verification
257
+
258
+ ## [1.14.11] - 2025-10-13
259
+ - Introduce testing guidelines for AI
260
+ - Add AI tests to `tool_config` and `tool_factory.py`
261
+
262
+ ## [1.14.10] - 2025-10-13
263
+ - Fix token counter if images in history
264
+
265
+ ## [1.14.9] - 2025-10-13
266
+ - Fix removal of metadata
267
+
268
+ ## [1.14.8] - 2025-10-13
269
+ - Use default tool icon on validation error
270
+
271
+ ## [1.14.7] - 2025-10-13
272
+ - Update of token_limit parameters for Claude models
273
+
274
+ ## [1.14.6] - 2025-10-10
275
+ - Fix circular import appearing in orchestrator
276
+
277
+ ## [1.14.5] - 2025-10-09
278
+ - Move `DEFAULT_GPT_4o` constant from `_common/default_language_model.py` to `language_model/constants.py` and deprecate old import path
279
+
280
+ ## [1.14.4] - 2025-10-09
281
+ - Small fixes when deleting content
282
+ - Fixes in documentation
283
+
284
+ ## [1.14.3] - 2025-10-08
285
+ - Reorganizes documentation
286
+ - All service interface towards a single folder
287
+ - Add main imports to __init__
288
+
289
+ ## [1.14.2] - 2025-10-08
290
+ - Add utilities for testing and fix external import issue
291
+
292
+ ## [1.14.1] - 2025-10-08
293
+ - Add utilities for testing
294
+
295
+ ## [1.14.0] - 2025-10-07
296
+ - Manipulate Metadata with knowledge base service
297
+
298
+ ## [1.13.0] - 2025-10-07
299
+ - Delete contents with knowledge base service
300
+
301
+ ## [1.12.1] - 2025-10-07
302
+ - Fix bug where failed evaluations did not show an error to the user.
303
+
304
+ ## [1.12.0] - 2026-10-07
305
+ - Add the `OpenAIUserMessageBuilder` for complex user messages with images
306
+ - More examples with documents/images on the chat
307
+
308
+ ## [1.11.4] - 2026-10-07
309
+ - Make newer `MessageExecution` and `MessageLog` method keyword only
310
+
311
+ ## [1.11.3] - 2026-10-07
312
+ - Move smart rules to content
313
+ - Add to documentation
314
+
315
+ ## [1.11.2] - 2025-10-07
316
+ - Fix for empty metadata filter at info retrieval
317
+
318
+ ## [1.11.1] - 2025-10-07
319
+ - Fix bug where hallucination check was taking all of the chunks as input instead of only the referenced ones.
320
+
321
+ ## [1.11.0] - 2025-10-07
322
+ - Add sub-agent response referencing.
323
+
324
+ ## [1.10.0] - 2025-10-07
325
+ - Introduce future proof knowledgebase service decoupled from chat
326
+ - Extend chat service to download contents in the chat
327
+ - Update documentation
328
+
329
+ ## [1.9.1] - 2025-10-06
330
+ - Switch default model used in evaluation service from `GPT-3.5-turbo (0125)` to `GPT-4o (1120)`
331
+
332
+
333
+ ## [1.9.0] - 2026-10-04
334
+ - Define the RequestContext and add aihttp/httpx requestors
335
+
336
+ ## [1.8.1] - 2026-10-03
337
+ - Fix bug where sub agent evaluation config variable `include_evaluation` did not include aliases for previous names.
338
+
339
+ ## [1.8.0] - 2026-10-03
340
+ - Sub Agents now block when executing the same sub-agent multiple times with `reuse_chat` set to `True`.
341
+ - Sub Agents tool, evaluation and post-processing refactored and tests added.
342
+
343
+ ## [1.7.0] - 2025-10-01
344
+ - Add functionality to remove text in `get_user_visible_chat_history`
345
+
346
+ ## [1.6.0] - 2025-10-01
347
+ - revert and simplify 1.5.0
348
+
349
+ ## [1.5.1] - 2025-10-01
350
+ - Fix filtering logic to raise a ConfigurationException if chat event filters are not specified
351
+
352
+ ## [1.5.0] - 2025-10-01
353
+ - Allow history manager to fetch only ui visible text
354
+
355
+ ## [1.4.4] - 2025-09-30
356
+ - Fix bugs with display of sub-agent answers and evaluations when multiple sub-agent from the same assistant run concurrently.
357
+
358
+ ## [1.4.3] - 2025-09-30
359
+ - Fix bug with sub-agent post-processing reference numbers.
360
+
361
+ ## [1.4.2] - 2025-09-30
362
+ - Adding litellm models `litellm:anthropic-claude-sonnet-4-5` and `litellm:anthropic-claude-opus-4-1`
363
+
364
+ ## [1.4.1] - 2025-09-30
365
+ - Handle sub agent failed assessments better in sub agent evaluator.
366
+
367
+ ## [1.4.0] - 2025-09-29
368
+ - Add ability to consolidate sub agent's assessments.
369
+
370
+ ## [1.3.3] - 2025-09-30
371
+ - fix bug in exclusive tools not making them selectable
372
+
373
+ ## [1.3.2] - 2025-09-29
374
+ - Auto-update unique settings on event arrival in SSE client
375
+
376
+ ## [1.3.1] - 2025-09-29
377
+ - More documentation on referencing
378
+
379
+ ## [1.3.0] - 2025-09-28
380
+ - Add utilitiy to enhance pydantic model with metadata
381
+ - Add capability to collect this metadata with same hierarchy as nested pydantic models
382
+
383
+ ## [1.2.1] - 2025-09-28
384
+ - Fix bug where camel case arguments were not properly validated.
385
+
386
+ ## [1.2.0] - 2025-09-24
387
+ - Add ability to display sub agent responses in the chat.
388
+
389
+ ## [1.1.9] - 2025-09-24
390
+ - Fix bug in `LanguageModelFunction` to extend support mistral tool calling.
391
+
392
+ ## [1.1.8] - 2025-09-23
393
+ - Revert last to version 1.1.6
394
+
395
+ ## [1.1.7] - 2025-09-23
396
+ - Introduce keyword only functions in services for better backward compatibility
397
+ - Deprecatea functions that are using positional arguments in services
398
+
399
+ ## [1.1.6] - 2025-09-23
400
+ - Fix model_dump for `ToolBuildConfig`
401
+
402
+ ## [1.1.5] - 2025-09-23
403
+ - Fix a circular import and add tests for `ToolBuildConfig`
404
+
405
+ ## [1.1.4] - 2025-09-23
406
+ - First version human verification on api calls
407
+
408
+ ## [1.1.3] - 2025-09-23
409
+ - Updated LMI JSON schema input type to include annotated string field with title
410
+
411
+ ## [1.1.2] - 2025-09-22
412
+ - Fixed bug tool selection for exclusive tools
413
+
414
+ ## [1.1.1] - 2025-09-18
415
+ - Fixed bug on tool config added icon name
416
+
417
+ ## [1.1.0] - 2025-09-18
418
+ - Enable chat event filtering in SSE event generator via env variables
419
+
420
+ ## [1.0.0] - 2025-09-18
421
+ - Bump toolkit version to allow for both patch and minor updates
422
+
423
+ ## [0.9.1] - 2025-09-17
424
+ - update to python 3.12 due to security
425
+
426
+ ## [0.9.0] - 2025-09-14
427
+ - Moved agentic code into the `agentic` folder. This breaks imports of
428
+ - `debug_info_amanager`
429
+ - `evals`
430
+ - `history_manager`
431
+ - `post_processor`
432
+ - `reference-manager`
433
+ - `short_term_memory_manager`
434
+ - `thinking_manager`
435
+ - `tools`
436
+
437
+ ## [0.8.57] - 2025-09-14
438
+ - Added more utils to commons
439
+
440
+ ## [0.8.56] - 2025-09-12
441
+ - Fixed token counter in utils
442
+
443
+ ## [0.8.55] - 2025-09-10
444
+ - Update documentation with agentic managers
445
+
446
+ ## [0.8.54] - 2025-09-10
447
+ - HistoryManager: compute source numbering offset from prior serialized tool messages using `load_sources_from_string`
448
+ - LoopTokenReducer: serialize reduced tool messages as JSON arrays to keep offsets parsable
449
+
450
+ ## [0.8.53] - 2025-09-09
451
+ - Add support for skip ingestion for only excel files.
452
+
453
+ ## [0.8.52] - 2025-09-06
454
+ - Fix import error in token counting
455
+
456
+ ## [0.8.51] - 2025-09-06
457
+ - Update token counter to latest version of monorepo.
458
+
459
+ ## [0.8.50] - 2025-09-08
460
+ - Minor fix in documentation
461
+ - Updated examples
462
+
463
+ ## [0.8.49] - 2025-09-05
464
+ - Fixed token reducer now has a safety margin of 10% less did not work.
465
+
466
+ ## [0.8.48] - 2025-09-05
467
+ - Add documentation on language models to markdown
468
+
469
+ ## [0.8.47] - 2025-09-05
470
+ - Removed old code
471
+ - Fixed small bugs in history manager & set the hallucination to use gpt4o as default.
472
+
473
+ ## [0.8.46] - 2025-09-04
474
+ - Bugfix for hostname identification inside Unique cluster in `unique_settings.py`
475
+
476
+ ## [0.8.45] - 2025-09-04
477
+ - Introduce handoff capability to tools. with the `takes_control()` function.
478
+
479
+ ## [0.8.44] - 2025-09-03
480
+ - Refine `EndpointClass` and create `EndpointRequestor`
481
+
482
+ ## [0.8.43] - 2025-09-03
483
+ - Add alias for `UniqueSettings` api base `API_BASE`
484
+
485
+ ## [0.8.42] - 2025-09-02
486
+ - updated schema of `chunk_relevancy_sorter`
487
+
488
+ ## [0.8.41] - 2025-09-02
489
+ - Make A2A tool auto register with tool factory
490
+
491
+ ## [0.8.40] - 2025-09-02
492
+ - Add frontend compatible type for pydantic BaseModel types in pydantic BaseModels
493
+
494
+ ## [0.8.39] - 2025-09-02
495
+ - include `get_async_openai_client`
496
+
497
+ ## [0.8.38] - 2025-09-01
498
+ - Sanitize documentation
499
+
500
+ ## [0.8.37] - 2025-09-01
501
+ - Adapt defaults and json-schema in `LanguageModelInfo`
502
+
503
+ ## [0.8.36] - 2025-09-01
504
+ - Added dependency `Pillow` and `Platformsdir`
505
+
506
+ ## [0.8.35] - 2025-09-01
507
+ - Initial toolkit documentation (WIP)
508
+
509
+ ## [0.8.34] - 2025-09-01
510
+ - Automatic initializations of services and event generator
511
+
512
+ ## [0.8.33] - 2025-08-31
513
+ - fixed tool for `web_search`
514
+
515
+ ## [0.8.32] - 2025-08-30
516
+ - moved over general packages for `web_search`
517
+
518
+ ## [0.8.31] - 2025-08-29
519
+ - Add various openai models to supported model list
520
+ - o1
521
+ - o3
522
+ - o3-deep-research
523
+ - o3-pro
524
+ - o4-mini
525
+ - o4-mini-deep-research
526
+ - gpt-4-1-mini
527
+ - gpt-4-1-nano
528
+
529
+ ## [0.8.30] - 2025-08-28
530
+ - Added A2A manager
531
+
7
532
  ## [0.8.29] - 2025-08-27
8
533
  - Include `MessageExecution` and `MessageLog` in toolkit
9
534
 
@@ -16,6 +541,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
541
  ## [0.8.26] - 2025-08-27
17
542
  - Optimized MCP manager
18
543
 
544
+ ## [0.8.26] - 2025-08-27
545
+ - Optimized MCP manager
546
+
19
547
  ## [0.8.25] - 2025-08-27
20
548
  - Load environment variables automatically from plattform dirs or environment
21
549
  - General Endpoint definition utility
@@ -521,4 +1049,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
521
1049
  - `utils.py` with utility functions for parsing language model output.
522
1050
 
523
1051
  ## [0.0.2] - 2024-07-10
524
- - Initial release of `unique_toolkit`.
1052
+ - Initial release of `unique_toolkit`.