unique_toolkit 1.30.0__py3-none-any.whl → 1.31.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.
@@ -47,6 +47,7 @@ class LanguageModelName(StrEnum):
47
47
  ANTHROPIC_CLAUDE_SONNET_4_5 = "litellm:anthropic-claude-sonnet-4-5"
48
48
  ANTHROPIC_CLAUDE_OPUS_4 = "litellm:anthropic-claude-opus-4"
49
49
  ANTHROPIC_CLAUDE_OPUS_4_1 = "litellm:anthropic-claude-opus-4-1"
50
+ ANTHROPIC_CLAUDE_OPUS_4_5 = "litellm:anthropic-claude-opus-4-5"
50
51
  GEMINI_2_0_FLASH = "litellm:gemini-2-0-flash"
51
52
  GEMINI_2_5_FLASH = "litellm:gemini-2-5-flash"
52
53
  GEMINI_2_5_FLASH_LITE = "litellm:gemini-2-5-flash-lite"
@@ -946,7 +947,7 @@ class LanguageModelInfo(BaseModel):
946
947
  ModelCapabilities.REASONING,
947
948
  ],
948
949
  provider=LanguageModelProvider.LITELLM,
949
- version="claude-opus-4",
950
+ version="claude-opus-4-1",
950
951
  encoder_name=EncoderName.O200K_BASE, # TODO: Update encoder with litellm
951
952
  token_limits=LanguageModelTokenLimits(
952
953
  # Input limit is 200_000, we leave 20_000 tokens as buffer due to tokenizer mismatch
@@ -956,6 +957,26 @@ class LanguageModelInfo(BaseModel):
956
957
  info_cutoff_at=date(2025, 3, 1),
957
958
  published_at=date(2025, 5, 1),
958
959
  )
960
+ case LanguageModelName.ANTHROPIC_CLAUDE_OPUS_4_5:
961
+ return cls(
962
+ name=model_name,
963
+ capabilities=[
964
+ ModelCapabilities.FUNCTION_CALLING,
965
+ ModelCapabilities.STREAMING,
966
+ ModelCapabilities.VISION,
967
+ ModelCapabilities.REASONING,
968
+ ],
969
+ provider=LanguageModelProvider.LITELLM,
970
+ version="claude-opus-4-5",
971
+ encoder_name=EncoderName.O200K_BASE, # TODO: Update encoder with litellm
972
+ token_limits=LanguageModelTokenLimits(
973
+ # Input limit is 200_000, we leave 20_000 tokens as buffer due to tokenizer mismatch
974
+ token_limit_input=180_000,
975
+ token_limit_output=64_000,
976
+ ),
977
+ info_cutoff_at=date(2025, 8, 1),
978
+ published_at=date(2025, 11, 13),
979
+ )
959
980
  case LanguageModelName.GEMINI_2_0_FLASH:
960
981
  return cls(
961
982
  name=model_name,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 1.30.0
3
+ Version: 1.31.0
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.31.0] - 2025-11-20
125
+ - Adding model `litellm:anthropic-claude-opus-4-5` to `language_model/info.py`
126
+
124
127
  ## [1.30.0] - 2025-11-26
125
128
  - Add option to only display parts of sub agent responses.
126
129
 
@@ -171,7 +171,7 @@ unique_toolkit/language_model/builder.py,sha256=4OKfwJfj3TrgO1ezc_ewIue6W7BCQ2ZY
171
171
  unique_toolkit/language_model/constants.py,sha256=B-topqW0r83dkC_25DeQfnPk3n53qzIHUCBS7YJ0-1U,119
172
172
  unique_toolkit/language_model/default_language_model.py,sha256=-_DBsJhLCsFdaU4ynAkyW0jYIl2lhrPybZm1K-GgVJs,125
173
173
  unique_toolkit/language_model/functions.py,sha256=nGxlV4OO70jdH_7AgRWDMpbzmmKLZ-5Tk4gu5nxB2ko,17735
174
- unique_toolkit/language_model/infos.py,sha256=fPUTwDJk30V_uqrlc5EXXysqYOCI7nAXTYWEOJggfxc,78788
174
+ unique_toolkit/language_model/infos.py,sha256=sZJOOij-dfReDxJWfd7ZwP3qx4KcN1LVqNchRafKmrY,79877
175
175
  unique_toolkit/language_model/prompt.py,sha256=JSawaLjQg3VR-E2fK8engFyJnNdk21zaO8pPIodzN4Q,3991
176
176
  unique_toolkit/language_model/reference.py,sha256=nkX2VFz-IrUz8yqyc3G5jUMNwrNpxITBrMEKkbqqYoI,8583
177
177
  unique_toolkit/language_model/schemas.py,sha256=ATiHjhfGxoubS332XuhL9PKSoFewcWvPTUVBaNGWlJo,23994
@@ -189,7 +189,7 @@ unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBu
189
189
  unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
190
  unique_toolkit/smart_rules/compile.py,sha256=Ozhh70qCn2yOzRWr9d8WmJeTo7AQurwd3tStgBMPFLA,1246
191
191
  unique_toolkit/test_utilities/events.py,sha256=_mwV2bs5iLjxS1ynDCjaIq-gjjKhXYCK-iy3dRfvO3g,6410
192
- unique_toolkit-1.30.0.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
193
- unique_toolkit-1.30.0.dist-info/METADATA,sha256=xCyY5fyJ2rm-5VAC72GF7XB0AdFyU_T1FCGSCJjUMWk,44547
194
- unique_toolkit-1.30.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
195
- unique_toolkit-1.30.0.dist-info/RECORD,,
192
+ unique_toolkit-1.31.0.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
193
+ unique_toolkit-1.31.0.dist-info/METADATA,sha256=fCVcgrZkBcRqyYl21qWou_M1kuGb7qngixPIdR9sjAo,44652
194
+ unique_toolkit-1.31.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
195
+ unique_toolkit-1.31.0.dist-info/RECORD,,