unique_toolkit 1.44.0__py3-none-any.whl → 1.45.0__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.
@@ -7,8 +7,6 @@ from unique_toolkit.agentic.tools.openai_builtin.base import (
7
7
  )
8
8
  from unique_toolkit.agentic.tools.schemas import BaseToolConfig
9
9
 
10
- DEFAULT_TOOL_DESCRIPTION = "Use this tool to run python code, e.g to generate plots, process excel files, perform calculations, etc."
11
-
12
10
  DEFAULT_TOOL_DESCRIPTION_FOR_SYSTEM_PROMPT = """
13
11
  Use this tool to run python code, e.g to generate plots, process excel files, perform calculations, etc.
14
12
 
@@ -48,11 +46,9 @@ Handling User Queries:
48
46
  - After exhausting all possible solutions without success, inform the user of what was tried and request clarification/help.
49
47
  """.strip()
50
48
 
51
- DEFAULT_TOOL_FORMAT_INFORMATION_FOR_SYSTEM_PROMPT = ""
52
-
53
- DEFAULT_TOOL_FORMAT_INFORMATION_FOR_USER_PROMPT = ""
54
49
 
55
50
  DEFAULT_TOOL_DESCRIPTION_FOR_USER_PROMPT = ""
51
+ DEFAULT_TOOL_DESCRIPTION = "Use this tool to run python code, e.g to generate plots, process excel files, perform calculations, etc."
56
52
 
57
53
 
58
54
  class OpenAICodeInterpreterConfig(BaseToolConfig):
@@ -60,33 +56,20 @@ class OpenAICodeInterpreterConfig(BaseToolConfig):
60
56
  default=True,
61
57
  description="If set, the files uploaded to the chat will be uploaded to the container where code is executed.",
62
58
  )
63
-
64
59
  tool_description: str = Field(
65
60
  default=DEFAULT_TOOL_DESCRIPTION,
66
- description="The description of the tool that will be sent to the model.",
61
+ description="The description of the tool that will be included in the system prompt.",
67
62
  )
68
63
  tool_description_for_system_prompt: str = Field(
69
64
  default=DEFAULT_TOOL_DESCRIPTION_FOR_SYSTEM_PROMPT,
70
65
  description="The description of the tool that will be included in the system prompt.",
71
66
  )
72
- tool_format_information_for_system_prompt: SkipJsonSchema[str] = Field(
73
- # Since the tool is executed in Azure, it's not always possible to have dynamic format information
74
- default=DEFAULT_TOOL_FORMAT_INFORMATION_FOR_SYSTEM_PROMPT,
75
- description="The format information of the tool that will be included in the system prompt.",
76
- )
77
67
  tool_description_for_user_prompt: SkipJsonSchema[str] = (
78
68
  Field( # At the moment, this is not appended to the user prompt
79
69
  default=DEFAULT_TOOL_DESCRIPTION_FOR_USER_PROMPT,
80
70
  description="The description of the tool that will be included in the user prompt.",
81
71
  )
82
72
  )
83
- tool_format_information_for_user_prompt: SkipJsonSchema[str] = (
84
- Field( # At the moment, this is not appended to the user prompt
85
- default=DEFAULT_TOOL_FORMAT_INFORMATION_FOR_USER_PROMPT,
86
- description="The format information of the tool that will be included in the user prompt.",
87
- )
88
- )
89
-
90
73
  expires_after_minutes: int = Field(
91
74
  default=20,
92
75
  description="The number of minutes after which the container will be deleted.",
@@ -239,9 +239,9 @@ class OpenAICodeInterpreterTool(OpenAIBuiltInTool[CodeInterpreter]):
239
239
  display_name=self.DISPLAY_NAME,
240
240
  tool_description=self._config.tool_description,
241
241
  tool_system_prompt=self._config.tool_description_for_system_prompt,
242
- tool_format_information_for_system_prompt=self._config.tool_format_information_for_system_prompt,
242
+ tool_format_information_for_system_prompt="",
243
243
  tool_user_prompt=self._config.tool_description_for_user_prompt,
244
- tool_format_information_for_user_prompt=self._config.tool_format_information_for_user_prompt,
244
+ tool_format_information_for_user_prompt="",
245
245
  input_model={},
246
246
  )
247
247
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 1.44.0
3
+ Version: 1.45.0
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Cedric Klinkert
@@ -125,6 +125,9 @@ All notable changes to this project will be documented in this file.
125
125
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
126
126
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
127
127
 
128
+ ## [1.45.0] - 2026-01-23
129
+ - Remove unused code execution options from config
130
+
128
131
  ## [1.44.0] - 2026-01-23
129
132
  - Add LoopIterationRunner abstraction for the responses api
130
133
 
@@ -152,8 +152,8 @@ unique_toolkit/agentic/tools/mcp/tool_wrapper.py,sha256=JuNP_mild2vx6opIt5432y6m
152
152
  unique_toolkit/agentic/tools/openai_builtin/__init__.py,sha256=NdVjkTa3LbW-JHhzPRjinTmgOCtEv090Zr9jGZXmgqs,345
153
153
  unique_toolkit/agentic/tools/openai_builtin/base.py,sha256=qtUtv-iyid4GpTRKU7IwWuY_OCPHLKEi9x7MCftyLG0,1178
154
154
  unique_toolkit/agentic/tools/openai_builtin/code_interpreter/__init__.py,sha256=w2vONpnC6hKRPoJGwzDuRtNBsQd_o-gMUqArgIl_5KY,305
155
- unique_toolkit/agentic/tools/openai_builtin/code_interpreter/config.py,sha256=GS0WLrAo0lCW7d4ih5wheskNG7AsdXsbwEYEESX4K60,5327
156
- unique_toolkit/agentic/tools/openai_builtin/code_interpreter/service.py,sha256=KvJWpD-Qief_OONMs_WG8Ya2e9AnmT6Lzow-6lmnVcY,7998
155
+ unique_toolkit/agentic/tools/openai_builtin/code_interpreter/config.py,sha256=U5MHglk4wkVd2L4DxSiATZElr2RUUwKAmPrmt6n70PY,4538
156
+ unique_toolkit/agentic/tools/openai_builtin/code_interpreter/service.py,sha256=bzOU8rV-FUkgSpX-kWzd0_WDEP3sOtzPF2Hbodh0oLA,7896
157
157
  unique_toolkit/agentic/tools/openai_builtin/manager.py,sha256=QeDVgLfnCXrSmXI3b9bgQa9oyfQe_L15wa_YfhfNe9E,2633
158
158
  unique_toolkit/agentic/tools/schemas.py,sha256=TXshRvivr2hD-McXHumO0bp-Z0mz_GnAmQRiVjT59rU,5025
159
159
  unique_toolkit/agentic/tools/test/test_mcp_manager.py,sha256=VpB4k4Dh0lQWakilJMQSzO8sBXapuEC26cub_lorl-M,19221
@@ -244,7 +244,7 @@ unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBu
244
244
  unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
245
  unique_toolkit/smart_rules/compile.py,sha256=Ozhh70qCn2yOzRWr9d8WmJeTo7AQurwd3tStgBMPFLA,1246
246
246
  unique_toolkit/test_utilities/events.py,sha256=_mwV2bs5iLjxS1ynDCjaIq-gjjKhXYCK-iy3dRfvO3g,6410
247
- unique_toolkit-1.44.0.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
248
- unique_toolkit-1.44.0.dist-info/METADATA,sha256=Fk433fZFvwde68I03RGFFqGWieqXJd_MTQ0dOKfowx0,48674
249
- unique_toolkit-1.44.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
250
- unique_toolkit-1.44.0.dist-info/RECORD,,
247
+ unique_toolkit-1.45.0.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
248
+ unique_toolkit-1.45.0.dist-info/METADATA,sha256=wfMYzHsUT5U9jNgqX5uNaIFj_rE_1TfL-iySEmB6l-U,48751
249
+ unique_toolkit-1.45.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
250
+ unique_toolkit-1.45.0.dist-info/RECORD,,