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