unique_toolkit 1.29.3__py3-none-any.whl → 1.29.4__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.
@@ -40,3 +40,7 @@ class OpenAIBuiltInTool(ABC, Generic[ToolType]):
40
40
  @abstractmethod
41
41
  def takes_control(self) -> bool:
42
42
  raise NotImplementedError()
43
+
44
+ @abstractmethod
45
+ def display_name(self) -> str:
46
+ raise NotImplementedError()
@@ -244,3 +244,7 @@ class OpenAICodeInterpreterTool(OpenAIBuiltInTool[CodeInterpreter]):
244
244
  tool_format_information_for_user_prompt=self._config.tool_format_information_for_user_prompt,
245
245
  input_model={},
246
246
  )
247
+
248
+ @override
249
+ def display_name(self) -> str:
250
+ return self.DISPLAY_NAME
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 1.29.3
3
+ Version: 1.29.4
4
4
  Summary:
5
5
  License: Proprietary
6
6
  Author: Cedric Klinkert
@@ -121,6 +121,9 @@ All notable changes to this project will be documented in this file.
121
121
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
122
122
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
123
123
 
124
+ ## [1.29.4] - 2025-11-25
125
+ - Add display name to openai builtin tools
126
+
124
127
  ## [1.29.3] - 2025-11-24
125
128
  - Fix jinja utility helpers import
126
129
 
@@ -105,10 +105,10 @@ unique_toolkit/agentic/tools/mcp/manager.py,sha256=DPYwwDe6RSZyuPaxn-je49fP_qOOs
105
105
  unique_toolkit/agentic/tools/mcp/models.py,sha256=OyCCb7Vwv1ftzC_OCpFkf3TX9Aeb74ZZagG-qK5peIU,722
106
106
  unique_toolkit/agentic/tools/mcp/tool_wrapper.py,sha256=m1-Uf0pSM5SoEKsxm9WqBsPRrKhmYX5AsxpdSCHLdmw,8724
107
107
  unique_toolkit/agentic/tools/openai_builtin/__init__.py,sha256=NdVjkTa3LbW-JHhzPRjinTmgOCtEv090Zr9jGZXmgqs,345
108
- unique_toolkit/agentic/tools/openai_builtin/base.py,sha256=4WCoUAibzcZhgVqzsIKSLsEEX7veMAWASTZ9YuCsZi4,1086
108
+ unique_toolkit/agentic/tools/openai_builtin/base.py,sha256=qtUtv-iyid4GpTRKU7IwWuY_OCPHLKEi9x7MCftyLG0,1178
109
109
  unique_toolkit/agentic/tools/openai_builtin/code_interpreter/__init__.py,sha256=w2vONpnC6hKRPoJGwzDuRtNBsQd_o-gMUqArgIl_5KY,305
110
110
  unique_toolkit/agentic/tools/openai_builtin/code_interpreter/config.py,sha256=FdmVd4VeAv0E4CiZdPeZcODDYnmmSB4e_YQesIW8rU0,4266
111
- unique_toolkit/agentic/tools/openai_builtin/code_interpreter/service.py,sha256=1J1KlWf2BEne_hc5s3ajvyLvxH9ue7Y9d66BYrr4QZA,7924
111
+ unique_toolkit/agentic/tools/openai_builtin/code_interpreter/service.py,sha256=XXBBEUI9tKa8z1HCpv-lwKx3pSEEPeL1RUx9LGGPS04,8007
112
112
  unique_toolkit/agentic/tools/openai_builtin/manager.py,sha256=QeDVgLfnCXrSmXI3b9bgQa9oyfQe_L15wa_YfhfNe9E,2633
113
113
  unique_toolkit/agentic/tools/schemas.py,sha256=TXshRvivr2hD-McXHumO0bp-Z0mz_GnAmQRiVjT59rU,5025
114
114
  unique_toolkit/agentic/tools/test/test_mcp_manager.py,sha256=VpB4k4Dh0lQWakilJMQSzO8sBXapuEC26cub_lorl-M,19221
@@ -187,7 +187,7 @@ unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBu
187
187
  unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
188
  unique_toolkit/smart_rules/compile.py,sha256=Ozhh70qCn2yOzRWr9d8WmJeTo7AQurwd3tStgBMPFLA,1246
189
189
  unique_toolkit/test_utilities/events.py,sha256=_mwV2bs5iLjxS1ynDCjaIq-gjjKhXYCK-iy3dRfvO3g,6410
190
- unique_toolkit-1.29.3.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
191
- unique_toolkit-1.29.3.dist-info/METADATA,sha256=oSEIVZwLtWw86E06C9j0RvJl0DS7GBvPLxYu0q8aam8,44393
192
- unique_toolkit-1.29.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
193
- unique_toolkit-1.29.3.dist-info/RECORD,,
190
+ unique_toolkit-1.29.4.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
191
+ unique_toolkit-1.29.4.dist-info/METADATA,sha256=WeO7rETdLnEj6Gapt5HFrJbYSg_0TXGNNKcMn2VPtZ0,44462
192
+ unique_toolkit-1.29.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
193
+ unique_toolkit-1.29.4.dist-info/RECORD,,