unique_toolkit 1.39.1__py3-none-any.whl → 1.39.2__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 +80 -0
- {unique_toolkit-1.39.1.dist-info → unique_toolkit-1.39.2.dist-info}/METADATA +4 -1
- {unique_toolkit-1.39.1.dist-info → unique_toolkit-1.39.2.dist-info}/RECORD +5 -5
- {unique_toolkit-1.39.1.dist-info → unique_toolkit-1.39.2.dist-info}/LICENSE +0 -0
- {unique_toolkit-1.39.1.dist-info → unique_toolkit-1.39.2.dist-info}/WHEEL +0 -0
|
@@ -64,6 +64,7 @@ class LanguageModelName(StrEnum):
|
|
|
64
64
|
GEMINI_2_5_PRO = "litellm:gemini-2-5-pro"
|
|
65
65
|
GEMINI_2_5_PRO_EXP_0325 = "litellm:gemini-2-5-pro-exp-03-25"
|
|
66
66
|
GEMINI_2_5_PRO_PREVIEW_0605 = "litellm:gemini-2-5-pro-preview-06-05"
|
|
67
|
+
GEMINI_3_FLASH_PREVIEW = "litellm:gemini-3-flash-preview"
|
|
67
68
|
GEMINI_3_PRO_PREVIEW = "litellm:gemini-3-pro-preview"
|
|
68
69
|
LITELLM_OPENAI_GPT_5 = "litellm:openai-gpt-5"
|
|
69
70
|
LITELLM_OPENAI_GPT_5_MINI = "litellm:openai-gpt-5-mini"
|
|
@@ -72,6 +73,8 @@ class LanguageModelName(StrEnum):
|
|
|
72
73
|
LITELLM_OPENAI_GPT_5_PRO = "litellm:openai-gpt-5-pro"
|
|
73
74
|
LITELLM_OPENAI_GPT_51 = "litellm:openai-gpt-5-1"
|
|
74
75
|
LITELLM_OPENAI_GPT_51_THINKING = "litellm:openai-gpt-5-1-thinking"
|
|
76
|
+
LITELLM_OPENAI_GPT_52 = "litellm:openai-gpt-5-2"
|
|
77
|
+
LITELLM_OPENAI_GPT_52_THINKING = "litellm:openai-gpt-5-2-thinking"
|
|
75
78
|
LITELLM_OPENAI_O1 = "litellm:openai-o1"
|
|
76
79
|
LITELLM_OPENAI_O3 = "litellm:openai-o3"
|
|
77
80
|
LITELLM_OPENAI_O3_DEEP_RESEARCH = "litellm:openai-o3-deep-research"
|
|
@@ -126,6 +129,8 @@ def get_encoder_name(model_name: LanguageModelName) -> EncoderName:
|
|
|
126
129
|
| LMN.LITELLM_OPENAI_GPT_5_PRO
|
|
127
130
|
| LMN.LITELLM_OPENAI_GPT_51
|
|
128
131
|
| LMN.LITELLM_OPENAI_GPT_51_THINKING
|
|
132
|
+
| LMN.LITELLM_OPENAI_GPT_52
|
|
133
|
+
| LMN.LITELLM_OPENAI_GPT_52_THINKING
|
|
129
134
|
| LMN.LITELLM_OPENAI_O1
|
|
130
135
|
| LMN.LITELLM_OPENAI_O3
|
|
131
136
|
| LMN.LITELLM_OPENAI_O3_DEEP_RESEARCH
|
|
@@ -1274,6 +1279,25 @@ class LanguageModelInfo(BaseModel):
|
|
|
1274
1279
|
info_cutoff_at=date(2025, 1, day=1),
|
|
1275
1280
|
published_at=date(2025, 6, 5),
|
|
1276
1281
|
)
|
|
1282
|
+
case LanguageModelName.GEMINI_3_FLASH_PREVIEW:
|
|
1283
|
+
return cls(
|
|
1284
|
+
name=model_name,
|
|
1285
|
+
capabilities=[
|
|
1286
|
+
ModelCapabilities.FUNCTION_CALLING,
|
|
1287
|
+
ModelCapabilities.STREAMING,
|
|
1288
|
+
ModelCapabilities.VISION,
|
|
1289
|
+
ModelCapabilities.STRUCTURED_OUTPUT,
|
|
1290
|
+
ModelCapabilities.REASONING,
|
|
1291
|
+
],
|
|
1292
|
+
provider=LanguageModelProvider.LITELLM,
|
|
1293
|
+
version="gemini-3-flash-preview",
|
|
1294
|
+
encoder_name=EncoderName.O200K_BASE, # TODO: Update encoder with litellm
|
|
1295
|
+
token_limits=LanguageModelTokenLimits(
|
|
1296
|
+
token_limit_input=1_048_576, token_limit_output=65_536
|
|
1297
|
+
),
|
|
1298
|
+
info_cutoff_at=date(2025, 1, day=1),
|
|
1299
|
+
published_at=date(2025, 12, 17),
|
|
1300
|
+
)
|
|
1277
1301
|
case LanguageModelName.GEMINI_3_PRO_PREVIEW:
|
|
1278
1302
|
return cls(
|
|
1279
1303
|
name=model_name,
|
|
@@ -1480,6 +1504,62 @@ class LanguageModelInfo(BaseModel):
|
|
|
1480
1504
|
"reasoning_effort": "medium",
|
|
1481
1505
|
},
|
|
1482
1506
|
)
|
|
1507
|
+
case LanguageModelName.LITELLM_OPENAI_GPT_52:
|
|
1508
|
+
return cls(
|
|
1509
|
+
name=model_name,
|
|
1510
|
+
provider=LanguageModelProvider.LITELLM,
|
|
1511
|
+
version="2025-12-11",
|
|
1512
|
+
encoder_name=EncoderName.O200K_BASE,
|
|
1513
|
+
capabilities=[
|
|
1514
|
+
ModelCapabilities.CHAT_COMPLETIONS_API,
|
|
1515
|
+
ModelCapabilities.FUNCTION_CALLING,
|
|
1516
|
+
ModelCapabilities.PARALLEL_FUNCTION_CALLING,
|
|
1517
|
+
ModelCapabilities.REASONING,
|
|
1518
|
+
ModelCapabilities.RESPONSES_API,
|
|
1519
|
+
ModelCapabilities.STREAMING,
|
|
1520
|
+
ModelCapabilities.STRUCTURED_OUTPUT,
|
|
1521
|
+
ModelCapabilities.VISION,
|
|
1522
|
+
],
|
|
1523
|
+
token_limits=LanguageModelTokenLimits(
|
|
1524
|
+
token_limit_input=400_000, token_limit_output=128_000
|
|
1525
|
+
),
|
|
1526
|
+
info_cutoff_at=date(2024, 9, 30),
|
|
1527
|
+
published_at=date(2025, 12, 11),
|
|
1528
|
+
temperature_bounds=TemperatureBounds(
|
|
1529
|
+
min_temperature=1.0, max_temperature=1.0
|
|
1530
|
+
),
|
|
1531
|
+
default_options={
|
|
1532
|
+
"reasoning_effort": None,
|
|
1533
|
+
},
|
|
1534
|
+
)
|
|
1535
|
+
case LanguageModelName.LITELLM_OPENAI_GPT_52_THINKING:
|
|
1536
|
+
return cls(
|
|
1537
|
+
name=model_name,
|
|
1538
|
+
provider=LanguageModelProvider.LITELLM,
|
|
1539
|
+
version="2025-12-11",
|
|
1540
|
+
encoder_name=EncoderName.O200K_BASE,
|
|
1541
|
+
capabilities=[
|
|
1542
|
+
ModelCapabilities.CHAT_COMPLETIONS_API,
|
|
1543
|
+
ModelCapabilities.FUNCTION_CALLING,
|
|
1544
|
+
ModelCapabilities.PARALLEL_FUNCTION_CALLING,
|
|
1545
|
+
ModelCapabilities.REASONING,
|
|
1546
|
+
ModelCapabilities.RESPONSES_API,
|
|
1547
|
+
ModelCapabilities.STREAMING,
|
|
1548
|
+
ModelCapabilities.STRUCTURED_OUTPUT,
|
|
1549
|
+
ModelCapabilities.VISION,
|
|
1550
|
+
],
|
|
1551
|
+
token_limits=LanguageModelTokenLimits(
|
|
1552
|
+
token_limit_input=400_000, token_limit_output=128_000
|
|
1553
|
+
),
|
|
1554
|
+
info_cutoff_at=date(2024, 9, 30),
|
|
1555
|
+
published_at=date(2025, 12, 11),
|
|
1556
|
+
temperature_bounds=TemperatureBounds(
|
|
1557
|
+
min_temperature=1.0, max_temperature=1.0
|
|
1558
|
+
),
|
|
1559
|
+
default_options={
|
|
1560
|
+
"reasoning_effort": "medium",
|
|
1561
|
+
},
|
|
1562
|
+
)
|
|
1483
1563
|
case LanguageModelName.LITELLM_OPENAI_O1:
|
|
1484
1564
|
return cls(
|
|
1485
1565
|
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.2
|
|
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.2] - 2025-12-18
|
|
127
|
+
- Add `litellm:gemini-3-flash-preview`, `litellm:openai-gpt-5-2` and `litellm:openai-gpt-5-2-thinking` to `language_model/info.py`
|
|
128
|
+
|
|
126
129
|
## [1.39.1] - 2025-12-17
|
|
127
130
|
- Add GPT-5.2, GPT-5.2_CHAT to supported models list
|
|
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=73guq14ggNplXJ5mx-s71rnyA66pNYnXaiVYSKSGMtw,89733
|
|
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.2.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
|
216
|
+
unique_toolkit-1.39.2.dist-info/METADATA,sha256=5i_0jJRn-2014qhIdULsZ2EZHAM9KUal7jjJUqis28s,46105
|
|
217
|
+
unique_toolkit-1.39.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
218
|
+
unique_toolkit-1.39.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|