unique_toolkit 1.39.0__py3-none-any.whl → 1.39.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unique_toolkit/language_model/infos.py +58 -0
- {unique_toolkit-1.39.0.dist-info → unique_toolkit-1.39.1.dist-info}/METADATA +4 -1
- {unique_toolkit-1.39.0.dist-info → unique_toolkit-1.39.1.dist-info}/RECORD +5 -5
- {unique_toolkit-1.39.0.dist-info → unique_toolkit-1.39.1.dist-info}/LICENSE +0 -0
- {unique_toolkit-1.39.0.dist-info → unique_toolkit-1.39.1.dist-info}/WHEEL +0 -0
|
@@ -31,6 +31,8 @@ class LanguageModelName(StrEnum):
|
|
|
31
31
|
AZURE_GPT_51_CHAT_2025_1113 = "AZURE_GPT_51_CHAT_2025_1113"
|
|
32
32
|
AZURE_GPT_51_CODEX_2025_1113 = "AZURE_GPT_51_CODEX_2025_1113"
|
|
33
33
|
AZURE_GPT_51_CODEX_MINI_2025_1113 = "AZURE_GPT_51_CODEX_MINI_2025_1113"
|
|
34
|
+
AZURE_GPT_52_2025_1211 = "AZURE_GPT_52_2025_1211"
|
|
35
|
+
AZURE_GPT_52_CHAT_2025_1211 = "AZURE_GPT_52_CHAT_2025_1211"
|
|
34
36
|
AZURE_GPT_4o_2024_0513 = "AZURE_GPT_4o_2024_0513"
|
|
35
37
|
AZURE_GPT_4o_2024_0806 = "AZURE_GPT_4o_2024_0806"
|
|
36
38
|
AZURE_GPT_4o_2024_1120 = "AZURE_GPT_4o_2024_1120"
|
|
@@ -115,6 +117,8 @@ def get_encoder_name(model_name: LanguageModelName) -> EncoderName:
|
|
|
115
117
|
| LMN.AZURE_GPT_51_CHAT_2025_1113
|
|
116
118
|
| LMN.AZURE_GPT_51_CODEX_2025_1113
|
|
117
119
|
| LMN.AZURE_GPT_51_CODEX_MINI_2025_1113
|
|
120
|
+
| LMN.AZURE_GPT_52_2025_1211
|
|
121
|
+
| LMN.AZURE_GPT_52_CHAT_2025_1211
|
|
118
122
|
| LMN.LITELLM_OPENAI_GPT_5
|
|
119
123
|
| LMN.LITELLM_OPENAI_GPT_5_MINI
|
|
120
124
|
| LMN.LITELLM_OPENAI_GPT_5_NANO
|
|
@@ -611,6 +615,60 @@ class LanguageModelInfo(BaseModel):
|
|
|
611
615
|
"reasoning_effort": "medium",
|
|
612
616
|
},
|
|
613
617
|
)
|
|
618
|
+
case LanguageModelName.AZURE_GPT_52_2025_1211:
|
|
619
|
+
return cls(
|
|
620
|
+
name=model_name,
|
|
621
|
+
provider=LanguageModelProvider.AZURE,
|
|
622
|
+
version="2025-12-11",
|
|
623
|
+
encoder_name=EncoderName.O200K_BASE,
|
|
624
|
+
capabilities=[
|
|
625
|
+
ModelCapabilities.CHAT_COMPLETIONS_API,
|
|
626
|
+
ModelCapabilities.FUNCTION_CALLING,
|
|
627
|
+
ModelCapabilities.PARALLEL_FUNCTION_CALLING,
|
|
628
|
+
ModelCapabilities.REASONING,
|
|
629
|
+
ModelCapabilities.RESPONSES_API,
|
|
630
|
+
ModelCapabilities.STREAMING,
|
|
631
|
+
ModelCapabilities.STRUCTURED_OUTPUT,
|
|
632
|
+
ModelCapabilities.VISION,
|
|
633
|
+
],
|
|
634
|
+
token_limits=LanguageModelTokenLimits(
|
|
635
|
+
token_limit_input=400_000, token_limit_output=128_000
|
|
636
|
+
),
|
|
637
|
+
info_cutoff_at=date(2024, 9, 30),
|
|
638
|
+
published_at=date(2025, 12, 11),
|
|
639
|
+
temperature_bounds=TemperatureBounds(
|
|
640
|
+
min_temperature=1.0, max_temperature=1.0
|
|
641
|
+
),
|
|
642
|
+
default_options={
|
|
643
|
+
"reasoning_effort": None,
|
|
644
|
+
},
|
|
645
|
+
)
|
|
646
|
+
case LanguageModelName.AZURE_GPT_52_CHAT_2025_1211:
|
|
647
|
+
return cls(
|
|
648
|
+
name=model_name,
|
|
649
|
+
provider=LanguageModelProvider.AZURE,
|
|
650
|
+
version="2025-12-11",
|
|
651
|
+
encoder_name=EncoderName.O200K_BASE,
|
|
652
|
+
capabilities=[
|
|
653
|
+
ModelCapabilities.CHAT_COMPLETIONS_API,
|
|
654
|
+
ModelCapabilities.FUNCTION_CALLING,
|
|
655
|
+
ModelCapabilities.PARALLEL_FUNCTION_CALLING,
|
|
656
|
+
ModelCapabilities.RESPONSES_API,
|
|
657
|
+
ModelCapabilities.STREAMING,
|
|
658
|
+
ModelCapabilities.STRUCTURED_OUTPUT,
|
|
659
|
+
],
|
|
660
|
+
token_limits=LanguageModelTokenLimits(
|
|
661
|
+
token_limit_input=128_000, token_limit_output=16_384
|
|
662
|
+
),
|
|
663
|
+
info_cutoff_at=date(2024, 9, 30),
|
|
664
|
+
published_at=date(2025, 12, 11),
|
|
665
|
+
temperature_bounds=TemperatureBounds(
|
|
666
|
+
min_temperature=1.0, max_temperature=1.0
|
|
667
|
+
),
|
|
668
|
+
default_options={
|
|
669
|
+
"reasoning_effort": "medium",
|
|
670
|
+
},
|
|
671
|
+
)
|
|
614
672
|
case LanguageModelName.AZURE_GPT_4_TURBO_2024_0409:
|
|
615
673
|
return cls(
|
|
616
674
|
name=model_name,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_toolkit
|
|
3
|
-
Version: 1.39.
|
|
3
|
+
Version: 1.39.1
|
|
4
4
|
Summary:
|
|
5
5
|
License: Proprietary
|
|
6
6
|
Author: Cedric Klinkert
|
|
@@ -123,6 +123,9 @@ All notable changes to this project will be documented in this file.
|
|
|
123
123
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
124
124
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
125
125
|
|
|
126
|
+
## [1.39.1] - 2025-12-17
|
|
127
|
+
- Add GPT-5.2, GPT-5.2_CHAT to supported models list
|
|
128
|
+
|
|
126
129
|
## [1.39.0] - 2025-12-17
|
|
127
130
|
- Adding simpler shortterm message abilities to chat service
|
|
128
131
|
|
|
@@ -194,7 +194,7 @@ unique_toolkit/language_model/builder.py,sha256=4OKfwJfj3TrgO1ezc_ewIue6W7BCQ2ZY
|
|
|
194
194
|
unique_toolkit/language_model/constants.py,sha256=B-topqW0r83dkC_25DeQfnPk3n53qzIHUCBS7YJ0-1U,119
|
|
195
195
|
unique_toolkit/language_model/default_language_model.py,sha256=-_DBsJhLCsFdaU4ynAkyW0jYIl2lhrPybZm1K-GgVJs,125
|
|
196
196
|
unique_toolkit/language_model/functions.py,sha256=PTBm2BBkuqISVHoyUqMIGHGXT-RMSAfz0F_Ylo2esQ8,18246
|
|
197
|
-
unique_toolkit/language_model/infos.py,sha256=
|
|
197
|
+
unique_toolkit/language_model/infos.py,sha256=qrGe4ZzfqRBpXHA67Tl8mEwO1LVfw_aEwAc2rnTjYu8,85791
|
|
198
198
|
unique_toolkit/language_model/prompt.py,sha256=JSawaLjQg3VR-E2fK8engFyJnNdk21zaO8pPIodzN4Q,3991
|
|
199
199
|
unique_toolkit/language_model/reference.py,sha256=nkX2VFz-IrUz8yqyc3G5jUMNwrNpxITBrMEKkbqqYoI,8583
|
|
200
200
|
unique_toolkit/language_model/schemas.py,sha256=ATiHjhfGxoubS332XuhL9PKSoFewcWvPTUVBaNGWlJo,23994
|
|
@@ -212,7 +212,7 @@ unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBu
|
|
|
212
212
|
unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
213
|
unique_toolkit/smart_rules/compile.py,sha256=Ozhh70qCn2yOzRWr9d8WmJeTo7AQurwd3tStgBMPFLA,1246
|
|
214
214
|
unique_toolkit/test_utilities/events.py,sha256=_mwV2bs5iLjxS1ynDCjaIq-gjjKhXYCK-iy3dRfvO3g,6410
|
|
215
|
-
unique_toolkit-1.39.
|
|
216
|
-
unique_toolkit-1.39.
|
|
217
|
-
unique_toolkit-1.39.
|
|
218
|
-
unique_toolkit-1.39.
|
|
215
|
+
unique_toolkit-1.39.1.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
|
216
|
+
unique_toolkit-1.39.1.dist-info/METADATA,sha256=BBk-PZwJU2Ir0AmPhW91Wpv9a33H0vMVL1ZY8jaVDyo,45948
|
|
217
|
+
unique_toolkit-1.39.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
218
|
+
unique_toolkit-1.39.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|