anthropic 0.74.1__py3-none-any.whl → 0.76.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.
Files changed (84) hide show
  1. anthropic/_base_client.py +140 -11
  2. anthropic/_client.py +4 -12
  3. anthropic/_models.py +16 -1
  4. anthropic/_streaming.py +78 -76
  5. anthropic/_types.py +12 -2
  6. anthropic/_version.py +1 -1
  7. anthropic/lib/streaming/_beta_messages.py +1 -1
  8. anthropic/lib/tools/_beta_compaction_control.py +48 -0
  9. anthropic/lib/tools/_beta_functions.py +30 -8
  10. anthropic/lib/tools/_beta_runner.py +233 -34
  11. anthropic/resources/beta/messages/messages.py +134 -27
  12. anthropic/resources/messages/messages.py +4 -0
  13. anthropic/types/anthropic_beta_param.py +1 -0
  14. anthropic/types/beta/__init__.py +31 -0
  15. anthropic/types/beta/beta_code_execution_tool_20250522_param.py +9 -1
  16. anthropic/types/beta/beta_code_execution_tool_20250825_param.py +9 -1
  17. anthropic/types/beta/beta_container.py +4 -0
  18. anthropic/types/beta/beta_container_params.py +2 -0
  19. anthropic/types/beta/beta_container_upload_block.py +2 -0
  20. anthropic/types/beta/beta_container_upload_block_param.py +5 -0
  21. anthropic/types/beta/beta_content_block.py +2 -0
  22. anthropic/types/beta/beta_content_block_param.py +2 -0
  23. anthropic/types/beta/beta_direct_caller.py +13 -0
  24. anthropic/types/beta/beta_direct_caller_param.py +13 -0
  25. anthropic/types/beta/beta_mcp_tool_config_param.py +15 -0
  26. anthropic/types/beta/beta_mcp_tool_default_config_param.py +15 -0
  27. anthropic/types/beta/beta_mcp_toolset_param.py +34 -0
  28. anthropic/types/beta/beta_memory_tool_20250818_param.py +11 -1
  29. anthropic/types/beta/beta_output_config_param.py +13 -0
  30. anthropic/types/beta/beta_raw_content_block_start_event.py +2 -0
  31. anthropic/types/beta/beta_server_tool_caller.py +15 -0
  32. anthropic/types/beta/beta_server_tool_caller_param.py +15 -0
  33. anthropic/types/beta/beta_server_tool_use_block.py +20 -4
  34. anthropic/types/beta/beta_server_tool_use_block_param.py +19 -4
  35. anthropic/types/beta/beta_skill.py +2 -0
  36. anthropic/types/beta/beta_skill_params.py +2 -0
  37. anthropic/types/beta/beta_tool_bash_20241022_param.py +11 -1
  38. anthropic/types/beta/beta_tool_bash_20250124_param.py +11 -1
  39. anthropic/types/beta/beta_tool_choice_any_param.py +2 -0
  40. anthropic/types/beta/beta_tool_choice_auto_param.py +2 -0
  41. anthropic/types/beta/beta_tool_choice_none_param.py +2 -0
  42. anthropic/types/beta/beta_tool_choice_tool_param.py +2 -0
  43. anthropic/types/beta/beta_tool_computer_use_20241022_param.py +11 -1
  44. anthropic/types/beta/beta_tool_computer_use_20250124_param.py +11 -1
  45. anthropic/types/beta/beta_tool_computer_use_20251124_param.py +47 -0
  46. anthropic/types/beta/beta_tool_param.py +16 -1
  47. anthropic/types/beta/beta_tool_reference_block.py +13 -0
  48. anthropic/types/beta/beta_tool_reference_block_param.py +21 -0
  49. anthropic/types/beta/beta_tool_result_block_param.py +6 -1
  50. anthropic/types/beta/beta_tool_search_tool_bm25_20251119_param.py +33 -0
  51. anthropic/types/beta/beta_tool_search_tool_regex_20251119_param.py +33 -0
  52. anthropic/types/beta/beta_tool_search_tool_result_block.py +20 -0
  53. anthropic/types/beta/beta_tool_search_tool_result_block_param.py +25 -0
  54. anthropic/types/beta/beta_tool_search_tool_result_error.py +16 -0
  55. anthropic/types/beta/beta_tool_search_tool_result_error_param.py +13 -0
  56. anthropic/types/beta/beta_tool_search_tool_search_result_block.py +15 -0
  57. anthropic/types/beta/beta_tool_search_tool_search_result_block_param.py +16 -0
  58. anthropic/types/beta/beta_tool_text_editor_20241022_param.py +11 -1
  59. anthropic/types/beta/beta_tool_text_editor_20250124_param.py +11 -1
  60. anthropic/types/beta/beta_tool_text_editor_20250429_param.py +11 -1
  61. anthropic/types/beta/beta_tool_text_editor_20250728_param.py +11 -1
  62. anthropic/types/beta/beta_tool_union_param.py +8 -0
  63. anthropic/types/beta/beta_tool_use_block.py +11 -3
  64. anthropic/types/beta/beta_tool_use_block_param.py +10 -3
  65. anthropic/types/beta/beta_web_fetch_tool_20250910_param.py +9 -1
  66. anthropic/types/beta/beta_web_search_tool_20250305_param.py +14 -1
  67. anthropic/types/beta/message_count_tokens_params.py +15 -0
  68. anthropic/types/beta/message_create_params.py +7 -0
  69. anthropic/types/beta/messages/batch_create_params.py +4 -4
  70. anthropic/types/beta/messages/beta_message_batch_individual_response.py +4 -0
  71. anthropic/types/messages/batch_create_params.py +2 -2
  72. anthropic/types/messages/message_batch_individual_response.py +4 -0
  73. anthropic/types/model.py +2 -0
  74. anthropic/types/model_param.py +2 -0
  75. anthropic/types/tool_choice_any_param.py +2 -0
  76. anthropic/types/tool_choice_auto_param.py +2 -0
  77. anthropic/types/tool_choice_none_param.py +2 -0
  78. anthropic/types/tool_choice_tool_param.py +2 -0
  79. anthropic/types/tool_param.py +5 -0
  80. anthropic/types/web_search_tool_20250305_param.py +5 -0
  81. {anthropic-0.74.1.dist-info → anthropic-0.76.0.dist-info}/METADATA +4 -2
  82. {anthropic-0.74.1.dist-info → anthropic-0.76.0.dist-info}/RECORD +84 -64
  83. {anthropic-0.74.1.dist-info → anthropic-0.76.0.dist-info}/WHEEL +0 -0
  84. {anthropic-0.74.1.dist-info → anthropic-0.76.0.dist-info}/licenses/LICENSE +0 -0
@@ -11,7 +11,9 @@ from .beta_tool_param import BetaToolParam
11
11
  from .beta_message_param import BetaMessageParam
12
12
  from ..anthropic_beta_param import AnthropicBetaParam
13
13
  from .beta_text_block_param import BetaTextBlockParam
14
+ from .beta_mcp_toolset_param import BetaMCPToolsetParam
14
15
  from .beta_tool_choice_param import BetaToolChoiceParam
16
+ from .beta_output_config_param import BetaOutputConfigParam
15
17
  from .beta_thinking_config_param import BetaThinkingConfigParam
16
18
  from .beta_json_output_format_param import BetaJSONOutputFormatParam
17
19
  from .beta_tool_bash_20241022_param import BetaToolBash20241022Param
@@ -26,8 +28,11 @@ from .beta_tool_text_editor_20250429_param import BetaToolTextEditor20250429Para
26
28
  from .beta_tool_text_editor_20250728_param import BetaToolTextEditor20250728Param
27
29
  from .beta_tool_computer_use_20241022_param import BetaToolComputerUse20241022Param
28
30
  from .beta_tool_computer_use_20250124_param import BetaToolComputerUse20250124Param
31
+ from .beta_tool_computer_use_20251124_param import BetaToolComputerUse20251124Param
29
32
  from .beta_code_execution_tool_20250522_param import BetaCodeExecutionTool20250522Param
30
33
  from .beta_code_execution_tool_20250825_param import BetaCodeExecutionTool20250825Param
34
+ from .beta_tool_search_tool_bm25_20251119_param import BetaToolSearchToolBm25_20251119Param
35
+ from .beta_tool_search_tool_regex_20251119_param import BetaToolSearchToolRegex20251119Param
31
36
  from .beta_request_mcp_server_url_definition_param import BetaRequestMCPServerURLDefinitionParam
32
37
 
33
38
  __all__ = ["MessageCountTokensParams", "Tool"]
@@ -119,6 +124,12 @@ class MessageCountTokensParams(TypedDict, total=False):
119
124
  mcp_servers: Iterable[BetaRequestMCPServerURLDefinitionParam]
120
125
  """MCP servers to be utilized in this request"""
121
126
 
127
+ output_config: BetaOutputConfigParam
128
+ """Configuration options for the model's output.
129
+
130
+ Controls aspects like how much effort the model puts into its response.
131
+ """
132
+
122
133
  output_format: Optional[BetaJSONOutputFormatParam]
123
134
  """A schema to specify Claude's output format in responses."""
124
135
 
@@ -241,9 +252,13 @@ Tool: TypeAlias = Union[
241
252
  BetaMemoryTool20250818Param,
242
253
  BetaToolComputerUse20250124Param,
243
254
  BetaToolTextEditor20241022Param,
255
+ BetaToolComputerUse20251124Param,
244
256
  BetaToolTextEditor20250124Param,
245
257
  BetaToolTextEditor20250429Param,
246
258
  BetaToolTextEditor20250728Param,
247
259
  BetaWebSearchTool20250305Param,
248
260
  BetaWebFetchTool20250910Param,
261
+ BetaToolSearchToolBm25_20251119Param,
262
+ BetaToolSearchToolRegex20251119Param,
263
+ BetaMCPToolsetParam,
249
264
  ]
@@ -16,6 +16,7 @@ from .beta_container_params import BetaContainerParams
16
16
  from .beta_text_block_param import BetaTextBlockParam
17
17
  from .beta_tool_union_param import BetaToolUnionParam
18
18
  from .beta_tool_choice_param import BetaToolChoiceParam
19
+ from .beta_output_config_param import BetaOutputConfigParam
19
20
  from .beta_thinking_config_param import BetaThinkingConfigParam
20
21
  from .beta_json_output_format_param import BetaJSONOutputFormatParam
21
22
  from .beta_context_management_config_param import BetaContextManagementConfigParam
@@ -132,6 +133,12 @@ class MessageCreateParamsBase(TypedDict, total=False):
132
133
  metadata: BetaMetadataParam
133
134
  """An object describing metadata about the request."""
134
135
 
136
+ output_config: BetaOutputConfigParam
137
+ """Configuration options for the model's output.
138
+
139
+ Controls aspects like how much effort the model puts into its response.
140
+ """
141
+
135
142
  output_format: Optional[BetaJSONOutputFormatParam]
136
143
  """A schema to specify Claude's output format in responses."""
137
144
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Iterable
6
- from typing_extensions import Literal, Required, Annotated, TypedDict
5
+ from typing import List, Literal, Iterable
6
+ from typing_extensions import Required, Annotated, TypedDict
7
7
 
8
8
  from ...._utils import PropertyInfo
9
9
  from ...anthropic_beta_param import AnthropicBetaParam
@@ -43,6 +43,6 @@ class Request(TypedDict, total=False):
43
43
  params: Required[MessageCreateParamsNonStreaming]
44
44
  """Messages API creation parameters for the individual request.
45
45
 
46
- See the [Messages API reference](/en/api/messages) for full documentation on
47
- available parameters.
46
+ See the [Messages API reference](https://docs.claude.com/en/api/messages) for
47
+ full documentation on available parameters.
48
48
  """
@@ -7,6 +7,10 @@ __all__ = ["BetaMessageBatchIndividualResponse"]
7
7
 
8
8
 
9
9
  class BetaMessageBatchIndividualResponse(BaseModel):
10
+ """
11
+ This is a single line in the response `.jsonl` file and does not represent the response as a whole.
12
+ """
13
+
10
14
  custom_id: str
11
15
  """Developer-provided ID created for each request in a Message Batch.
12
16
 
@@ -31,6 +31,6 @@ class Request(TypedDict, total=False):
31
31
  params: Required[MessageCreateParamsNonStreaming]
32
32
  """Messages API creation parameters for the individual request.
33
33
 
34
- See the [Messages API reference](/en/api/messages) for full documentation on
35
- available parameters.
34
+ See the [Messages API reference](https://docs.claude.com/en/api/messages) for
35
+ full documentation on available parameters.
36
36
  """
@@ -7,6 +7,10 @@ __all__ = ["MessageBatchIndividualResponse"]
7
7
 
8
8
 
9
9
  class MessageBatchIndividualResponse(BaseModel):
10
+ """
11
+ This is a single line in the response `.jsonl` file and does not represent the response as a whole.
12
+ """
13
+
10
14
  custom_id: str
11
15
  """Developer-provided ID created for each request in a Message Batch.
12
16
 
anthropic/types/model.py CHANGED
@@ -7,6 +7,8 @@ __all__ = ["Model"]
7
7
 
8
8
  Model: TypeAlias = Union[
9
9
  Literal[
10
+ "claude-opus-4-5-20251101",
11
+ "claude-opus-4-5",
10
12
  "claude-3-7-sonnet-latest",
11
13
  "claude-3-7-sonnet-20250219",
12
14
  "claude-3-5-haiku-latest",
@@ -9,6 +9,8 @@ __all__ = ["ModelParam"]
9
9
 
10
10
  ModelParam: TypeAlias = Union[
11
11
  Literal[
12
+ "claude-opus-4-5-20251101",
13
+ "claude-opus-4-5",
12
14
  "claude-3-7-sonnet-latest",
13
15
  "claude-3-7-sonnet-20250219",
14
16
  "claude-3-5-haiku-latest",
@@ -8,6 +8,8 @@ __all__ = ["ToolChoiceAnyParam"]
8
8
 
9
9
 
10
10
  class ToolChoiceAnyParam(TypedDict, total=False):
11
+ """The model will use any available tools."""
12
+
11
13
  type: Required[Literal["any"]]
12
14
 
13
15
  disable_parallel_tool_use: bool
@@ -8,6 +8,8 @@ __all__ = ["ToolChoiceAutoParam"]
8
8
 
9
9
 
10
10
  class ToolChoiceAutoParam(TypedDict, total=False):
11
+ """The model will automatically decide whether to use tools."""
12
+
11
13
  type: Required[Literal["auto"]]
12
14
 
13
15
  disable_parallel_tool_use: bool
@@ -8,4 +8,6 @@ __all__ = ["ToolChoiceNoneParam"]
8
8
 
9
9
 
10
10
  class ToolChoiceNoneParam(TypedDict, total=False):
11
+ """The model will not be allowed to use tools."""
12
+
11
13
  type: Required[Literal["none"]]
@@ -8,6 +8,8 @@ __all__ = ["ToolChoiceToolParam"]
8
8
 
9
9
 
10
10
  class ToolChoiceToolParam(TypedDict, total=False):
11
+ """The model will use the specified tool with `tool_choice.name`."""
12
+
11
13
  name: Required[str]
12
14
  """The name of the tool to use."""
13
15
 
@@ -13,6 +13,11 @@ __all__ = ["ToolParam", "InputSchema"]
13
13
 
14
14
 
15
15
  class InputSchemaTyped(TypedDict, total=False):
16
+ """[JSON schema](https://json-schema.org/draft/2020-12) for this tool's input.
17
+
18
+ This defines the shape of the `input` that your tool accepts and that the model will produce.
19
+ """
20
+
16
21
  type: Required[Literal["object"]]
17
22
 
18
23
  properties: Optional[Dict[str, object]]
@@ -12,6 +12,11 @@ __all__ = ["WebSearchTool20250305Param", "UserLocation"]
12
12
 
13
13
 
14
14
  class UserLocation(TypedDict, total=False):
15
+ """Parameters for the user's location.
16
+
17
+ Used to provide more relevant search results.
18
+ """
19
+
15
20
  type: Required[Literal["approximate"]]
16
21
 
17
22
  city: Optional[str]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anthropic
3
- Version: 0.74.1
3
+ Version: 0.76.0
4
4
  Summary: The official Python library for the anthropic API
5
5
  Project-URL: Homepage, https://github.com/anthropics/anthropic-sdk-python
6
6
  Project-URL: Repository, https://github.com/anthropics/anthropic-sdk-python
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.10
18
18
  Classifier: Programming Language :: Python :: 3.11
19
19
  Classifier: Programming Language :: Python :: 3.12
20
20
  Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
21
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
23
  Classifier: Typing :: Typed
23
24
  Requires-Python: >=3.9
@@ -136,6 +137,7 @@ pip install anthropic[aiohttp]
136
137
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
137
138
 
138
139
  ```python
140
+ import os
139
141
  import asyncio
140
142
  from anthropic import DefaultAioHttpClient
141
143
  from anthropic import AsyncAnthropic
@@ -143,7 +145,7 @@ from anthropic import AsyncAnthropic
143
145
 
144
146
  async def main() -> None:
145
147
  async with AsyncAnthropic(
146
- api_key="my-anthropic-api-key",
148
+ api_key=os.environ.get("ANTHROPIC_API_KEY"), # This is the default and can be omitted
147
149
  http_client=DefaultAioHttpClient(),
148
150
  ) as client:
149
151
  message = await client.messages.create(
@@ -1,18 +1,18 @@
1
1
  anthropic/__init__.py,sha256=xp5IG2sv6wh0O6u-pJN8g3PJkQHfs2qIfU20muCRyj8,3167
2
- anthropic/_base_client.py,sha256=Ca5ANeCg2kvkN3Ego42boLcHIhj9npORXzh3VGQs1tw,72929
3
- anthropic/_client.py,sha256=_BM__6VgtQZZCkWMGv6z58yTESUDtQVt2QWZIy_ya7U,23030
2
+ anthropic/_base_client.py,sha256=SwOOqT2iT4bZYoYOWjov706OUqg6hrgoORAsJRodMik,79291
3
+ anthropic/_client.py,sha256=XDt4Mi3pgO2pGyHJrS9L1vOgc642OLSMXbzyt0Ojet8,22844
4
4
  anthropic/_compat.py,sha256=t3bXgTygusFSjp0qoTb9D6E749djY0tFAwHMgKEE-Rw,6775
5
5
  anthropic/_constants.py,sha256=wADeUqY3lsseF0L6jIen-PexfQ06FOtf2dVESXDM828,885
6
6
  anthropic/_exceptions.py,sha256=bkSqVWxtRdRb31H7MIvtxfh5mo_Xf7Ib3nPTOmAOmGs,4073
7
7
  anthropic/_files.py,sha256=_Ux6v6nAsxK4e_4efdt1DiIOZ0hGmlR2ZKKcVfJIfGU,3623
8
8
  anthropic/_legacy_response.py,sha256=QsroQ_9LHI8tSoPEvbIXXB44SvLJXaXQX7khjZpnqfE,17235
9
- anthropic/_models.py,sha256=DwdMdnIkEUb0hZiS-t89eGJ3w-n1ALmzXqP1pub63pA,33751
9
+ anthropic/_models.py,sha256=PA7IEJqfXlAsMdTA__Q5QeUhfpivLGv2JOEDMFo-F88,34026
10
10
  anthropic/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
11
11
  anthropic/_resource.py,sha256=FYEOzfhB-XWTR2gyTmQuuFoecRiVXxe_SpjZlQQGytU,1080
12
12
  anthropic/_response.py,sha256=1Y7-OrGn1lOwvZ_SmMlwT9Nb2i9A1RYw2Q4-F1cwPSU,30542
13
- anthropic/_streaming.py,sha256=AVgSkkvKHZsFD4xQbkOi9Oi0vkHoEZbkccyUw5yIxmA,14072
14
- anthropic/_types.py,sha256=vEab5B5Hp7xQQafVrgSCHeEPUmf74jofqIPo-n7Xljk,7338
15
- anthropic/_version.py,sha256=RYabrekg643fRS1GXAocPuIMGw1-85RFzoldGyJ7Sxs,162
13
+ anthropic/_streaming.py,sha256=fGH67prdJwMieyAN4Ns0HRHDrwih13gb8GZycbSJ_tw,14360
14
+ anthropic/_types.py,sha256=jIMpuLkCfCZ8rLpfnKnGLvHWBEIqo2-Ul992R9Y7p9M,7696
15
+ anthropic/_version.py,sha256=PSrODQGokzCeJlFkP7_vIwDsY43jpt2iu3yhCIEmyUQ,162
16
16
  anthropic/pagination.py,sha256=MgGFbx3GDm4XASijWas0-2eVb1iGR-DgqyPrDf5Jll8,5152
17
17
  anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  anthropic/_decoders/jsonl.py,sha256=KDLw-Frjo7gRup5qDp_BWkXIZ-mFZU5vFDz0WBhEKcs,3510
@@ -47,14 +47,15 @@ anthropic/lib/bedrock/_client.py,sha256=kZDEdx07b4rXG81evFsWB5TgOqhRwsYoCBJTEkWz
47
47
  anthropic/lib/bedrock/_stream.py,sha256=wCS-1otwfIIVbfG3TFFKxTD-antJiTmprW6eAAGTCDA,871
48
48
  anthropic/lib/bedrock/_stream_decoder.py,sha256=gTlsTn0s6iVOL4Smp_inhDUBcOZuCgGgJib7fORbQWM,2551
49
49
  anthropic/lib/streaming/__init__.py,sha256=3t53ifPduSySAGEwk2PomOVATthmYAf71byemIbsi78,1362
50
- anthropic/lib/streaming/_beta_messages.py,sha256=BcQ0Uo1Gb92FQn2fyVlzx7GNrhRMM1hhzhClO07gZW8,20398
50
+ anthropic/lib/streaming/_beta_messages.py,sha256=d9J06XGaWKELDpX9unsRnn53dpSDQvNwYXFWGNnQOk0,20395
51
51
  anthropic/lib/streaming/_beta_types.py,sha256=lnYGoJcdkjWDssp3FgUImNMKHKakVmqkoSHBsAFOJUw,2747
52
52
  anthropic/lib/streaming/_messages.py,sha256=OSV9sjb8MLThSywEFXQV9OchcNXAE2KxDacVpJbkNRM,16958
53
53
  anthropic/lib/streaming/_types.py,sha256=CrR4948IWgUF7L9O0ase2QwbpiQ1JeiYXrRyVi74-Bw,2086
54
54
  anthropic/lib/tools/__init__.py,sha256=8JgDqt6ti7klw9JQ78UjFACMc8GmGi-eFWu6xhbZ5MQ,811
55
55
  anthropic/lib/tools/_beta_builtin_memory_tool.py,sha256=FjMyWAYHR4da2jhz2EyUt_0G5BoUXW-iHnwlCprFbqc,9123
56
- anthropic/lib/tools/_beta_functions.py,sha256=6k8f-v2rme0WZwIuS4IryzB1xEPX_S-Y1eIuQq04RI4,10547
57
- anthropic/lib/tools/_beta_runner.py,sha256=xXA5FL52pjn_luMece3gqLXRv4GSO8VI1pg1prDkAEE,15768
56
+ anthropic/lib/tools/_beta_compaction_control.py,sha256=0oGXY26CwTh3iT_2slxZ-YpZYp8d_9UvUjl_V6uaeNw,2114
57
+ anthropic/lib/tools/_beta_functions.py,sha256=SamJxBd4gvNbiosCAE8xie0_BIDJudhogqKHvAOC_Wc,11350
58
+ anthropic/lib/tools/_beta_runner.py,sha256=-1ZEx225tNowHKcBrL3tCQXpG2XQ7dknk2ef7-G0JoI,23157
58
59
  anthropic/lib/vertex/__init__.py,sha256=A8vuK1qVPtmKr1_LQgPuDRVA6I4xm_ye2aPdAa4yGsI,102
59
60
  anthropic/lib/vertex/_auth.py,sha256=Kyt_hbUc-DPlkvds4__OLR8FLPpoDas6bXhZTECxO3Y,1644
60
61
  anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4,3323
@@ -69,15 +70,15 @@ anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7t
69
70
  anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
70
71
  anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
71
72
  anthropic/resources/beta/messages/batches.py,sha256=51m83Ijs6cIE_f4hRQNhSyNqDj5TVt0F0Bm4ryekoLw,36116
72
- anthropic/resources/beta/messages/messages.py,sha256=tnm8ra108AC1AjQ2neWCFHbdYVQPU3_J1aKSWemjAVI,151689
73
+ anthropic/resources/beta/messages/messages.py,sha256=PsSWbQFoVqV39P1W_P67msSeylmNTmcEZQ_TBaRYOfQ,157369
73
74
  anthropic/resources/beta/skills/__init__.py,sha256=QMC_HEzfI-k0jhfKJThUUjf9wf7Vs8HTxSXYNnvVx2o,836
74
75
  anthropic/resources/beta/skills/skills.py,sha256=ytCR9JN7Qgn9GbWT0oBgpy-nvYXWwqoBvOzZ_iURANE,25036
75
76
  anthropic/resources/beta/skills/versions.py,sha256=iWSrZ4iqVGm16f7r_aE79gDxeUTUaSw5dEBAyHIxRu8,25212
76
77
  anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
77
78
  anthropic/resources/messages/batches.py,sha256=HlQc5rBYzJu43pnw7H2dSnNN1XHEWpc_czyJ7MSbXj0,28824
78
- anthropic/resources/messages/messages.py,sha256=0_bdCVj_jKg8Lw3h3Ni3HXly8e5yesu8-Rl9NenIHWU,108758
79
+ anthropic/resources/messages/messages.py,sha256=WFa86x75z0o5VpTai5xRYbgKd4vKODx9lAcrwrRLlHo,108970
79
80
  anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
80
- anthropic/types/anthropic_beta_param.py,sha256=TLDPgIjC5ZYDJXPCbszi6CoGBgeBdLRs3qs7Rw5AgEk,970
81
+ anthropic/types/anthropic_beta_param.py,sha256=pCogMqyk-O1fxyYbuvWpLw4sBDfNSIYyUYJcFuGrki8,1003
81
82
  anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
82
83
  anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
83
84
  anthropic/types/beta_api_error.py,sha256=rr_VBxFp9VqNmVjTUokYzpkYRYvO9MVh_t406BvGi38,268
@@ -129,10 +130,10 @@ anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9c
129
130
  anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
130
131
  anthropic/types/message_tokens_count.py,sha256=JmkcWw9nZAUgr2WY5G4Mwqs2jcnMuZXh920MlUkvY70,329
131
132
  anthropic/types/metadata_param.py,sha256=p6j8bWh3FfI3PB-vJjU4JhRukP2NZdrcE2gQixw5zgw,594
132
- anthropic/types/model.py,sha256=snPrs9phxAQqz6Eky_lVHDya0WttYlrQyjR0toiD6nc,851
133
+ anthropic/types/model.py,sha256=ZnWBIjrO55aaGtSgqjaKHHqIWytxPjwbQfEP-oV5CtQ,914
133
134
  anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
134
135
  anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
135
- anthropic/types/model_param.py,sha256=RciNjl0f1i_BBlpdO800-LomLSrngA96hsRK97gHgL0,897
136
+ anthropic/types/model_param.py,sha256=99rcpm60i-IEXl-PKmIuyyilKxLFeGHAhFDnTxIduNM,960
136
137
  anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
137
138
  anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
138
139
  anthropic/types/raw_content_block_delta_event.py,sha256=XKpY_cCljZ6NFtVCt5R38imPbnZAbFyQVIB5d4K4ZgY,393
@@ -162,12 +163,12 @@ anthropic/types/thinking_config_enabled_param.py,sha256=MKCofudk-qk80KzdkXWvA9Id
162
163
  anthropic/types/thinking_config_param.py,sha256=n9h9Z_QtYpV7QnsbvkKYtTpT2opWjmPv1dx-RVKQzy0,463
163
164
  anthropic/types/thinking_delta.py,sha256=OfGsFuv2SEKKIbMQw0fdQBnIPZtwNFQEB2oGjlryCNg,276
164
165
  anthropic/types/tool_bash_20250124_param.py,sha256=Ww6iipXPdPxUsHXjmBoXahGsKDoA-Q7AM_fMJFPqBmI,692
165
- anthropic/types/tool_choice_any_param.py,sha256=jBA4_M2YMPfkFAx8Goi6pY1LblRLu3IsBwBfnjJBJtg,485
166
- anthropic/types/tool_choice_auto_param.py,sha256=F6ZzaVnXZgCa9AxEddyHu_xsO5sK4n-sBY9ZKUovlUk,488
167
- anthropic/types/tool_choice_none_param.py,sha256=druYe_74R1D92_ZPvJfbapBXjXMPXwQToAm-Wwukac0,306
166
+ anthropic/types/tool_choice_any_param.py,sha256=QKtNQbAvqbB5sh02Kbpihxdw77tCFcDOgPV1mFu3h90,536
167
+ anthropic/types/tool_choice_auto_param.py,sha256=Zk2s9x4QNeQN458nzsJjGZlpVwxSLoekGJUm5SZ1ZL0,557
168
+ anthropic/types/tool_choice_none_param.py,sha256=uAVV99JNVXGC5aFsQRildmzCiw1sWpWK3mzMSDoBuqs,361
168
169
  anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
169
- anthropic/types/tool_choice_tool_param.py,sha256=61mEbvhxU4oGKxTlcFt1RBUzHPIIuWgQynrn49_HKZY,552
170
- anthropic/types/tool_param.py,sha256=Vfyh23gcySfEuBk-W9pVsLonxyHwg0myBouyaNqvVdw,1665
170
+ anthropic/types/tool_choice_tool_param.py,sha256=2w_8mPWrZTMuqKxxHg-6TGzRv1QEYGPMFItq0mr09rs,626
171
+ anthropic/types/tool_param.py,sha256=CiXF-Cl2cAaOliKcCIAcNiEHAgBz9BOnXfX3qsiz5oU,1856
171
172
  anthropic/types/tool_result_block_param.py,sha256=0rbEAOygNLSnt03pfVdZfcTEVWK_CbBdk2mdUTN0gkg,985
172
173
  anthropic/types/tool_text_editor_20250124_param.py,sha256=uZU1b3qkuAMf_WnyPd_SyEO7iQXY75-XEYBP1JkGu4U,725
173
174
  anthropic/types/tool_text_editor_20250429_param.py,sha256=2laqI5jBBNignFGJhwyOWoRFjFiMAMTApJLJhcW11Lk,734
@@ -180,14 +181,14 @@ anthropic/types/url_pdf_source_param.py,sha256=knFb8DFOWlrFFYwXnZbQx8tqejjWbPQjn
180
181
  anthropic/types/usage.py,sha256=FPIepQO8jXFHX3RM2HuN-hWLz6y3UOyC4lnJRQxOSZY,1053
181
182
  anthropic/types/web_search_result_block.py,sha256=Y8-r0n86qKex4eonDCKre4mS1w7SXleuOFMCT6HmpHU,396
182
183
  anthropic/types/web_search_result_block_param.py,sha256=AbQnJIyfQYHSOEUYxBCGuZNqP5hmpFZI_1SxyD5QC8A,476
183
- anthropic/types/web_search_tool_20250305_param.py,sha256=GB91ImdTWjK8BsrhEoc0oCZDes_CwUv2t4Wo0zlm2Xs,1829
184
+ anthropic/types/web_search_tool_20250305_param.py,sha256=Biv3_dvNnQt7h3Xq_1Txo20BzCquo2ifIV6ThepF0PM,1932
184
185
  anthropic/types/web_search_tool_request_error_param.py,sha256=nCRDcI1Ffc2gznp_ezMGQsSfgXH9wGEzrTm6X_aCumM,498
185
186
  anthropic/types/web_search_tool_result_block.py,sha256=-E5RRLn9EznUyxJQNkThIoLEgW-eMzBJDvfA2rO3oDY,437
186
187
  anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTduZkNgyWFZAiG7kYamPGqwpCffk,437
187
188
  anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
188
189
  anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
189
190
  anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
190
- anthropic/types/beta/__init__.py,sha256=PDrYgItDBCO1jQhlienY8GmNazn0zTPDzoAiQNdPdTs,19583
191
+ anthropic/types/beta/__init__.py,sha256=_hmjiIhMBtGgD81SAj6AexMtDj7UDm8Y_MtRZEZBoT0,21664
191
192
  anthropic/types/beta/beta_all_thinking_turns_param.py,sha256=tC2sF_TI22gg4pa6BN4EYHEdudq0M5DIiAQczqiWyAo,317
192
193
  anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
193
194
  anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
@@ -224,8 +225,8 @@ anthropic/types/beta/beta_code_execution_output_block.py,sha256=OpNDX-uckWDLBg70
224
225
  anthropic/types/beta/beta_code_execution_output_block_param.py,sha256=EOtPBBkd-AJSbmHg_RDUY01rQLH90Q1_NZjX5CHFAeo,379
225
226
  anthropic/types/beta/beta_code_execution_result_block.py,sha256=9xSRmN5jLtLU7i8OykIZ2avIyaQYN-AaruG6iH2-H80,499
226
227
  anthropic/types/beta/beta_code_execution_result_block_param.py,sha256=ntPk_c1f0xjvW-8EKinOJAyWhKsfwyPrwcxMbK8-0t8,620
227
- anthropic/types/beta/beta_code_execution_tool_20250522_param.py,sha256=LL7umF6Y1i4NK3M87sKCiLtAl5uxaguZ9G_6mWJMzno,769
228
- anthropic/types/beta/beta_code_execution_tool_20250825_param.py,sha256=aHlEaEMp4z6x_XHT0COeYBPr9yLJXm12S8b0grxeBHg,769
228
+ anthropic/types/beta/beta_code_execution_tool_20250522_param.py,sha256=ClkcizFxr1cbmwvMXUIrvehWxSoDY7u9dWZJBu5sQ2I,1017
229
+ anthropic/types/beta/beta_code_execution_tool_20250825_param.py,sha256=fMiW2m4CeIS3VXI98AdwM5h6a4yddjtVgLeQwOsofHw,1017
229
230
  anthropic/types/beta/beta_code_execution_tool_result_block.py,sha256=bheDD2Kv4yg7l2l68FQasijI_T3Cu6MtRwQ97KvOWj0,483
230
231
  anthropic/types/beta/beta_code_execution_tool_result_block_content.py,sha256=yzd-4lPmzMcv_NKxzgxZFMW2fdMa9cN25IsKkduzxo0,497
231
232
  anthropic/types/beta/beta_code_execution_tool_result_block_param.py,sha256=lYwrz8FSWbvM7_806rRTMY4dVHOS1QzBVRQGAXTty38,827
@@ -233,17 +234,19 @@ anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.p
233
234
  anthropic/types/beta/beta_code_execution_tool_result_error.py,sha256=SuLEG42APBGhO0jVc2xu8eXLS1_mM9x5trxtwrXS5ok,461
234
235
  anthropic/types/beta/beta_code_execution_tool_result_error_code.py,sha256=BqoqrsTwo3PuXYz4mPiZr4z-q1kx2hs5iLoL7_otmyU,338
235
236
  anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_buEPIfaeGUnF9_pdfexZhjh_zdQju3LcERNVis,528
236
- anthropic/types/beta/beta_container.py,sha256=Vr8BXNE55XlpcuoebIoxjOpG0SxNl3-tMu6KWMiBkZI,522
237
- anthropic/types/beta/beta_container_params.py,sha256=PYJotNSzBW7_HdvPSs6N16huwhdIBSv6sGuY0ZHhCmc,481
238
- anthropic/types/beta/beta_container_upload_block.py,sha256=T-W7H8tlzin7_b_A6-hHxBBi9qJk0H7M-2JK_pnXyXE,300
239
- anthropic/types/beta/beta_container_upload_block_param.py,sha256=rqPN69iuHa6elrNfy-x_pMrm-xOLh_PTmqBrFhKzbhA,602
240
- anthropic/types/beta/beta_content_block.py,sha256=vmZXOq7Frx8xAYVV5eDC9FbNq-wyL8C-J6Tlg0yp7a8,1680
241
- anthropic/types/beta/beta_content_block_param.py,sha256=87vnYL2-j7vOtT-dldIn0XNdVkhwWY_R_u64cmGZaQc,2260
237
+ anthropic/types/beta/beta_container.py,sha256=TdNMRmTVJlJuvN0KEjeCYmSTXeKf0Wm8FuNmKsLyFEA,625
238
+ anthropic/types/beta/beta_container_params.py,sha256=JI1gltJKsz-6RWH7Iyho8_Y9Im659b92Un_sKQOYP9g,539
239
+ anthropic/types/beta/beta_container_upload_block.py,sha256=ebNuqOpWiBh41Q2qIrVZr1JYWqMxxoQQ1-3MylywG8k,364
240
+ anthropic/types/beta/beta_container_upload_block_param.py,sha256=49MzD6ylPreuDNSS22iTT-ByyMwjlwmRnO9yxS5ZAGI,782
241
+ anthropic/types/beta/beta_content_block.py,sha256=Q9iGB1yETOXgoynKkG7VUHMloNOHzs8M3_de8uHrUjs,1797
242
+ anthropic/types/beta/beta_content_block_param.py,sha256=_Hpe-82H7ua6Db07Y92r9Fp-oSnbG1oAx1FqPxeSLsM,2389
242
243
  anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
243
244
  anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnhtEN_1dGYC7b1vakKpdLiX87pFhU,530
244
245
  anthropic/types/beta/beta_context_management_config_param.py,sha256=cs3d7mNlprV34_UX8QPihM1FkCx6Tnzo7CjWVBVD0Qk,684
245
246
  anthropic/types/beta/beta_context_management_response.py,sha256=qwkhE6vtToG7m34R8cxPyOfzej_x7Nfeis5tuEWk8mI,804
246
247
  anthropic/types/beta/beta_count_tokens_context_management_response.py,sha256=efL0nsrOlA7KTIQ-M5IiXRmbmb6q-dakLp3oNnEh5G8,341
248
+ anthropic/types/beta/beta_direct_caller.py,sha256=TM5hhPsVBlEOb7G15636eOHuOgIjwM3mH_Y6iKtJl14,308
249
+ anthropic/types/beta/beta_direct_caller_param.py,sha256=UaGWnnuhgWJY69aZ9RE79gNPUiJvALLc2lkLi-1Nsv8,364
247
250
  anthropic/types/beta/beta_document_block.py,sha256=lehaAYYdGHJay8F_J-GfMLOYWAe0G8gVWfeixA5XH2s,834
248
251
  anthropic/types/beta/beta_file_document_source_param.py,sha256=a5_eicJChOrOoBr7MIVj5hA-MZFs1syo5Oi8W_Jv1_4,350
249
252
  anthropic/types/beta/beta_file_image_source_param.py,sha256=5ogaJ3H_NNz2M1Qa5XWyB2uUf-0HHHLkwYXJuA3kOwQ,344
@@ -252,14 +255,17 @@ anthropic/types/beta/beta_input_json_delta.py,sha256=MPlt9LmfuwmpWryQagjkkVHHZRf
252
255
  anthropic/types/beta/beta_input_tokens_clear_at_least_param.py,sha256=9VMW4rN_ZeSQp5ianz-815vc_h23XjC-FI6ZICsC7d8,366
253
256
  anthropic/types/beta/beta_input_tokens_trigger_param.py,sha256=_7MSRq8ZykSOZxxr2upnPqpSZEQ42_m53wHhcqiQ2rE,356
254
257
  anthropic/types/beta/beta_json_output_format_param.py,sha256=DYONF-cbP6gSVz0z_5C4H_Nyg-NBrdx59PwTrXiyIbA,430
258
+ anthropic/types/beta/beta_mcp_tool_config_param.py,sha256=UBXvtQkihooZFlCW_DazHKGHnIs5ZT_mJNv79m_IVok,364
259
+ anthropic/types/beta/beta_mcp_tool_default_config_param.py,sha256=xYBOPL0TPdn83bgx4FufVNGdqMR1Ghq7d1bJ7YZYx4w,376
255
260
  anthropic/types/beta/beta_mcp_tool_result_block.py,sha256=mqx1WHh13wYoGpf5PnG8dgGsihq3qd9Pg6t9nolIwGI,439
256
261
  anthropic/types/beta/beta_mcp_tool_use_block.py,sha256=KRvDIWyDfq5i2zKGtlY3ZDxHsYxtfmqHa0knEJ5UZnU,444
257
262
  anthropic/types/beta/beta_mcp_tool_use_block_param.py,sha256=sE-16rLzREIri44iPGbQgAuRMw-Tsj5vTLUonOqW5K0,723
263
+ anthropic/types/beta/beta_mcp_toolset_param.py,sha256=lNEiIL5rfFDz-tfac2XGWkkUE2e0ddFXOYI1jcBj_I0,1240
258
264
  anthropic/types/beta/beta_memory_tool_20250818_command.py,sha256=It-xNhxO4M7DSqpczVfZq7mD2FPDZniHGUxCq9wSGGs,1179
259
265
  anthropic/types/beta/beta_memory_tool_20250818_create_command.py,sha256=jmrc8aWVghMz5PRW7vo5LPp3GaUDZkl7Ir8rmqNVsHw,453
260
266
  anthropic/types/beta/beta_memory_tool_20250818_delete_command.py,sha256=dRjSRkChmc6P_vIwIWlknVEXcXikM6EZjJxZgqfT-TA,396
261
267
  anthropic/types/beta/beta_memory_tool_20250818_insert_command.py,sha256=AkchM3mjzYmLC9Os12l1g4NNIvO1Caf9FNk_1w-jIIc,546
262
- anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=K_HAJc5G3KFCTMzZ5v0a2MXzWKNeGoGiQMVh-2ioKtw,739
268
+ anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=FwdqhgIrl4EWwHrIKt4Gu1fbIZv7tXKpDm4vYw8R8GI,1052
263
269
  anthropic/types/beta/beta_memory_tool_20250818_rename_command.py,sha256=39AhTdurJEXwEdK54_Z-RjzAOMSvo8AeNo2KHD8vlgA,462
264
270
  anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py,sha256=2FBRtAlMbGio876ixv3NnoDkdIGHfoKwQswUWo6qTfs,524
265
271
  anthropic/types/beta/beta_memory_tool_20250818_view_command.py,sha256=NGvvJd_GEaQRfOXH0-YmGYpyyCtj7WkX9RQZ1iVc_OE,519
@@ -269,11 +275,12 @@ anthropic/types/beta/beta_message_param.py,sha256=jelI5bL_5DFMW5-aKDpBf1KsK-CvIZ
269
275
  anthropic/types/beta/beta_message_tokens_count.py,sha256=yO_2_42iBaPzX5izF1vTXoGSS1qy9LxzAf1K9GQgr4Y,621
270
276
  anthropic/types/beta/beta_metadata_param.py,sha256=julUtAFfgnCXSt0sN8qQ-_GuhJvpXbQyqlPhyzE8jmQ,602
271
277
  anthropic/types/beta/beta_model_info.py,sha256=hFbhNT1THKUqBKYEB0QvtQ1UBVgcoO_dtXFUPbuWqAA,655
278
+ anthropic/types/beta/beta_output_config_param.py,sha256=XLknjwXSIEESh7RrT9RLOQxNa49wtTmZirHDtGiKw2U,385
272
279
  anthropic/types/beta/beta_plain_text_source.py,sha256=u3XpMPojTxn-_LvFdYYMLc_b8WI2ggIXdoZ4pDK4Q-Y,314
273
280
  anthropic/types/beta/beta_plain_text_source_param.py,sha256=5VW_apR2n3-G6KmDq6b58Me7kGTcN2IAHAwsGbPrlVQ,390
274
281
  anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h8AbwryMo9HXw4mNnrmv7Krg,690
275
282
  anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
276
- anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=2UDrpyyC8V6DJADY1oI1P6kHzMS6drucGn05U96ZX3c,1950
283
+ anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=FziITn3XF0iYL982558T_VoEEK_4bMEeqROi19zLwEI,2067
277
284
  anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
278
285
  anthropic/types/beta/beta_raw_message_delta_event.py,sha256=L1XDYvixPbxjEW-r37TghkL2pn8B0311dj_nky_1xMA,1738
279
286
  anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
@@ -286,12 +293,14 @@ anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py,sha256=
286
293
  anthropic/types/beta/beta_request_mcp_server_url_definition_param.py,sha256=j8N0ixvGHFheT2KqqI64HKufHmVST9VcJgShtlkPzUw,644
287
294
  anthropic/types/beta/beta_request_mcp_tool_result_block_param.py,sha256=xK9SY8bmetn-LWN4hks8KDbeh2WiF0pttcCXsB99v84,761
288
295
  anthropic/types/beta/beta_search_result_block_param.py,sha256=uqzKu_6YVDRe6rIbVSmfvQE7YleyRfa_UncwI2k3cuI,842
296
+ anthropic/types/beta/beta_server_tool_caller.py,sha256=CWaGKr7F39lE-vvUAIz_GsE57NLdSLGwTJSzcp_pE48,359
297
+ anthropic/types/beta/beta_server_tool_caller_param.py,sha256=gEIDqI2JeKdVEX_5QgmVvN8Aqo2qHViwFtKDsrvstZ4,425
289
298
  anthropic/types/beta/beta_server_tool_usage.py,sha256=StokZ2PZBQ5r5X8ri71h-eZsFHqLdT0138Tafqy2az4,352
290
- anthropic/types/beta/beta_server_tool_use_block.py,sha256=aMTBuji1smSyH7xzFEb5us5gbUxX64tJJpYv5XgGYv4,461
291
- anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=yYrURmcIyhy6z7Q4JL48u_mVvL4I6pgsE7-bcdpfceU,779
299
+ anthropic/types/beta/beta_server_tool_use_block.py,sha256=ZN1kUxZGVg9OjMFlWvtu1kT_OS1RBm6u_MbKGLBnHuc,941
300
+ anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=Hq3I7deQ9nF4bExG3L6naHBGr1MIiz1nUwgpaF76hCs,1230
292
301
  anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
293
- anthropic/types/beta/beta_skill.py,sha256=eyvKq-A7cSfW3kWNP6KSFHoYCxfTnRe-CgQ396Wx8Js,454
294
- anthropic/types/beta/beta_skill_params.py,sha256=xqw8ygiJ1oXn5PERZHfY1Pb8doQsZ3_E4WwruG6n7cI,522
302
+ anthropic/types/beta/beta_skill.py,sha256=mvnxLGUWAN39GYKdKiJVAK8_-ZxvQinb2ovxwdUqKpU,522
303
+ anthropic/types/beta/beta_skill_params.py,sha256=mdRneR8t9DHPX2YrwQi0NBkQmsF5LVnSYqCAggRFOSE,604
295
304
  anthropic/types/beta/beta_stop_reason.py,sha256=ndrI-m-0sFW7HD8wlEIZrznffRVj6mAWsnR4Gk61AC8,322
296
305
  anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
297
306
  anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze3Ctlm-DuQH6Li1Do,693
@@ -315,24 +324,35 @@ anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=Wsufale1AF98kN
315
324
  anthropic/types/beta/beta_thinking_config_param.py,sha256=VK-ZLTr5bUP_Nu1rF5d1eYACPmGbx_HDbta-yWbWxxg,497
316
325
  anthropic/types/beta/beta_thinking_delta.py,sha256=4O9zQHhcqtvOz1zeqcJOo1YJpvzNN7t0q0dEzePswcc,285
317
326
  anthropic/types/beta/beta_thinking_turns_param.py,sha256=4rhTtQqaot1VJOhVAIJbGjQ3Q4SVUs9IN0o-TrRfejo,348
318
- anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=HZH40a3VXIuMTLZaKo747qaB85YFOz3-ubjEQkKlnXE,731
319
- anthropic/types/beta/beta_tool_bash_20250124_param.py,sha256=E7eZ-XFbt81L1fnldhan-0wcxM-tSvSkCLRRX3aG684,731
320
- anthropic/types/beta/beta_tool_choice_any_param.py,sha256=XKDm4WnqGSeKUr-MsYqR-1-WlmhRig3Nq7VXyxBarkI,493
321
- anthropic/types/beta/beta_tool_choice_auto_param.py,sha256=sfM3aadXzsiP8phKNHnMaTSw_GOAGrAF9mL283yLHpI,496
322
- anthropic/types/beta/beta_tool_choice_none_param.py,sha256=hgj4eeBigYkkO7D0ekWC1AOkid04tf2NWFs5rjigSu4,314
327
+ anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=i3QTRVJk0NB7fCqv7HYoVZm6zrxC8kbrG2RIn8XRJ9Y,1044
328
+ anthropic/types/beta/beta_tool_bash_20250124_param.py,sha256=PYMz-BvZZ6c_MU0_Z3tbnaBdmWQ3T2B-P84FwTNtV9U,1044
329
+ anthropic/types/beta/beta_tool_choice_any_param.py,sha256=DPROata2t1ORbmeV0g6QQVvvzrG252n9v8xrzwGrKjs,544
330
+ anthropic/types/beta/beta_tool_choice_auto_param.py,sha256=WlSP5gg97WteYMYjKp-81iXNygyDrELApismEsVuqKo,565
331
+ anthropic/types/beta/beta_tool_choice_none_param.py,sha256=NqaCkqk3oKXrQ5DC7y5TYaMwuCR-FG5cgPdf9QYXm1Y,369
323
332
  anthropic/types/beta/beta_tool_choice_param.py,sha256=kJnRD1gWzx_NPpyfMShZtoXrUcHX6t6WCvhhNd2SWr8,627
324
- anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=TYPA4HbTZrSBcDsMnsk86c0HqBYrkoN71TQq_7yNV4k,560
325
- anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=WNr6Zv2O3FN4QnIyzsUy-sIvKiXAEwwiNIlZvSXM31k,1018
326
- anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=-Jw4IXFNk1jmMdqRrPY-onr0kfqqixn79XtNlEIG5yM,1018
327
- anthropic/types/beta/beta_tool_param.py,sha256=l5h518Ybt0UbJjlFDuqHYpjlKwRL1R__MhgYCF9iWPM,1604
328
- anthropic/types/beta/beta_tool_result_block_param.py,sha256=84vvYhCfImu22BECeL-zBvfjNCXV0rIfr7trnR9VE3Q,1086
329
- anthropic/types/beta/beta_tool_text_editor_20241022_param.py,sha256=BigA45XjW3wUjV0npz3WZxjgAytev4l0XOe5h-Uc154,764
330
- anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=1XhLqLhhIwQRuYOg_5wfJMUhotLWu6C3KOmLeeMYFls,764
331
- anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=YNXyYHQl4_TlQwd9vQYoZRRvedVQQqWYoXiXENsrL5k,773
332
- anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=WL_bg7xme5SIqq_IXeuO9WmCQizhJtWTUk-BguvbDfU,945
333
- anthropic/types/beta/beta_tool_union_param.py,sha256=wt4nJAkJm0qPHOjpPMMJmePRfjxUcCLnqJwgihAgupY,1838
334
- anthropic/types/beta/beta_tool_use_block.py,sha256=38x-oEDJG2F-ATjcTjL2iBvwwL-jRDExq3PxHfMeQxA,340
335
- anthropic/types/beta/beta_tool_use_block_param.py,sha256=keqjbtEL9NJHejV46eVEPs7xsWgJ7xLjVJ9rqoSOF2I,644
333
+ anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=WQZbn92NIJnIQ_m98WbMzV3JMmQmsa0aZP_weO8ciR0,634
334
+ anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=aAiA0PpOoML0_oVVYQlT5Laz530-tGg1ODw_QyNaN6g,1331
335
+ anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=qfhcJQ4KMLlqLSAtGtXXAMHAyoWL5lH1OOmPSlGVPAU,1331
336
+ anthropic/types/beta/beta_tool_computer_use_20251124_param.py,sha256=pQ1fdzIg_--fIwhOFB0tJOBzTusw9ZKNA0kFywb7wFw,1438
337
+ anthropic/types/beta/beta_tool_param.py,sha256=8pAqrHpXznpUuUQ34UuGoL0erWBtaiNt_5U68Ama5TU,2102
338
+ anthropic/types/beta/beta_tool_reference_block.py,sha256=V9jo_vWMQMArdq5NdckUnCu-IeqZKoTmAGdAQbFY4dI,296
339
+ anthropic/types/beta/beta_tool_reference_block_param.py,sha256=jB3AZvKmpwdRZyXuoI9BVOI_GrldY7rfTlHplTvkY40,675
340
+ anthropic/types/beta/beta_tool_result_block_param.py,sha256=Nq6-m74g7glHVUqW6dgMpq_c1B901r4NhUUEGPB14q0,1205
341
+ anthropic/types/beta/beta_tool_search_tool_bm25_20251119_param.py,sha256=TEC28IEnF08_KHPoH4PMh9g-i1QXJ2aBRmpVsAVhGXM,1060
342
+ anthropic/types/beta/beta_tool_search_tool_regex_20251119_param.py,sha256=ll7w8nERFVsbdpYGbROuS2F_0o4ewnQELHk6llL3MAQ,1063
343
+ anthropic/types/beta/beta_tool_search_tool_result_block.py,sha256=kVVsMPkwcBzHgv0EDf8rYabFJi3AMuJvIhplinPw7Oo,655
344
+ anthropic/types/beta/beta_tool_search_tool_result_block_param.py,sha256=dGiX5xyWYOAbzIntGa4UDhaTFGan16LTkKLFjawY3Sk,981
345
+ anthropic/types/beta/beta_tool_search_tool_result_error.py,sha256=tnR-X_uYFQ0hiyluau0u9d-Rx0KU3xK9EFXErQla7FE,484
346
+ anthropic/types/beta/beta_tool_search_tool_result_error_param.py,sha256=qOGYVwK7xaphgDxiePo36IEE3pz3fPUE4KfarKC1qwc,481
347
+ anthropic/types/beta/beta_tool_search_tool_search_result_block.py,sha256=1MD5K-GYRFxoil26nhoIn2ZyGls3N3Tq7WOTA6W_kI8,455
348
+ anthropic/types/beta/beta_tool_search_tool_search_result_block_param.py,sha256=aqAQHce8xvuAPfEYFixLJCOOu__6cInJaTWhmKzMu9A,546
349
+ anthropic/types/beta/beta_tool_text_editor_20241022_param.py,sha256=mcS8sCA1eZ3hy-LNPjJJjyiW4GLuDUqw990Cu1XQAQE,1077
350
+ anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=z4PydoQEdRrApB4Fyfu8zJm-FEOqnN63ATUDt98_1Ko,1077
351
+ anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=wPXV47YlWOhWYhCn2M2td6Im5BKvrcjwmvyxjNGuffQ,1086
352
+ anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=vzllY8tNcs5AtX55cU8-KeDqEsT5qKgwWqJ7baUE1fU,1258
353
+ anthropic/types/beta/beta_tool_union_param.py,sha256=bm-m_AtsdlW5ztdBk1rkN--5vn7jfXa8bAQl6R4yRW0,2310
354
+ anthropic/types/beta/beta_tool_use_block.py,sha256=vXFMJMyPrz2VuBV_6akT-vmNePCBGJ5_7J3GN9_sRqE,733
355
+ anthropic/types/beta/beta_tool_use_block_param.py,sha256=jalYW33cz7ruFiFXM0xDN1s_ZFvhwl6yAhhwDpcIMHc,949
336
356
  anthropic/types/beta/beta_tool_uses_keep_param.py,sha256=R9sHxEwQq33kSQEiIG_ONm92EUk0YFmKI039tkhl4vo,341
337
357
  anthropic/types/beta/beta_tool_uses_trigger_param.py,sha256=PbTkerKGtnClYCrACGaodsTkHOSpTz801jp_PzvyBEI,347
338
358
  anthropic/types/beta/beta_url_image_source_param.py,sha256=pquhkw8b13TbwhXA6_dMkPP-7vxYfbbXbjV_BVx_0ZY,337
@@ -340,7 +360,7 @@ anthropic/types/beta/beta_url_pdf_source_param.py,sha256=Ox2U0GM60MJgQBec8NKPw49
340
360
  anthropic/types/beta/beta_usage.py,sha256=H0PAOPwTs8V2myo89yCS9vG78hCIv39ooGza39N-nB8,1088
341
361
  anthropic/types/beta/beta_web_fetch_block.py,sha256=zL3A3YWcuTPndBPCXkS2QnVN8dSA5x93x_qoYfWvYw4,523
342
362
  anthropic/types/beta/beta_web_fetch_block_param.py,sha256=6q6BR5Mjbknd-S3fIr5FkDEfXZt8CfnlpXB1XviNhz4,631
343
- anthropic/types/beta/beta_web_fetch_tool_20250910_param.py,sha256=L0gGseGm1YEgl_K3TvCPfSIO2h8Zuqj_e_65JSD0fX4,1527
363
+ anthropic/types/beta/beta_web_fetch_tool_20250910_param.py,sha256=-x2ZHqmiKfQOPoPnivNuJ2j3n-oNk-bdweMNXiG2Hmo,1775
344
364
  anthropic/types/beta/beta_web_fetch_tool_result_block.py,sha256=2xU16Q2_n6Zq98vlv1YxTpTZk8n7UZS_vMKslJywO8o,602
345
365
  anthropic/types/beta/beta_web_fetch_tool_result_block_param.py,sha256=mimTpFFFtDZWDPrG9e5A-2KoEfZblKyqMla7e-zzr6M,928
346
366
  anthropic/types/beta/beta_web_fetch_tool_result_error_block.py,sha256=JWP7NwNHIvw0K-OJ2TKWsIWBFV0HMAkdeu0CzA-cQXU,441
@@ -348,7 +368,7 @@ anthropic/types/beta/beta_web_fetch_tool_result_error_block_param.py,sha256=X9uE
348
368
  anthropic/types/beta/beta_web_fetch_tool_result_error_code.py,sha256=-kZjKVIUcmPnv15dDbYbs0Hr1xqj4X2LVW1V22A4oV0,436
349
369
  anthropic/types/beta/beta_web_search_result_block.py,sha256=8k1ltqF03HVb440Nvms4fRD1xKZmvbrFG-BHeot-SGU,405
350
370
  anthropic/types/beta/beta_web_search_result_block_param.py,sha256=pAKcEO3RC5clujQoGSAJOO2o1gpfsYzaebsZ6aIMOfk,484
351
- anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=oiG779yKGAs9bVR6MCo4pPkhzwYaem7CFPyq1QAaZO8,1869
371
+ anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=Ak6lhUWBoahopvvpwqhJh_uZ70TmmlpJYM1X-rYmyzg,2220
352
372
  anthropic/types/beta/beta_web_search_tool_request_error_param.py,sha256=PdRRrtIHg0P00ARhUekoCnlXXZ2H6K6F5wWmJJvKkNo,506
353
373
  anthropic/types/beta/beta_web_search_tool_result_block.py,sha256=Y4outQt1jPvujwwmUzoNH_d9FfYeRTw51_w6RCfmYMo,459
354
374
  anthropic/types/beta/beta_web_search_tool_result_block_content.py,sha256=qm77CYtUz5Owh934Uj5m0oLyCeJ6AoSZ_z3ZwrEi1qk,471
@@ -360,8 +380,8 @@ anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj6
360
380
  anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
361
381
  anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
362
382
  anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
363
- anthropic/types/beta/message_count_tokens_params.py,sha256=Da2IU4ryp_3i7HwgVIXBDZfhXTbt7D2NAJeQ522X45c,9353
364
- anthropic/types/beta/message_create_params.py,sha256=Ozi7tesGGM-zcKMvoJUDl9oE3oVtNhtkrm3DAsU_qwo,11861
383
+ anthropic/types/beta/message_count_tokens_params.py,sha256=bPAd9E3-sj-6yTmiObYLIouuZ0BUPameGwQYRsnkyyA,10065
384
+ anthropic/types/beta/message_create_params.py,sha256=ne4hZtmnWa3_QeZvcSVzqmrDgUn0sZjEMF-nxT_AlhI,12101
365
385
  anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
366
386
  anthropic/types/beta/parsed_beta_message.py,sha256=CEV3z-GnMP1krjr0uOIcgx3bg3mminDhoX0KxYlpGes,2464
367
387
  anthropic/types/beta/skill_create_params.py,sha256=5oyHKyq_Fll_J4PwvxLnI7Jn-ThqfKISSlVClK3AIgQ,978
@@ -371,14 +391,14 @@ anthropic/types/beta/skill_list_params.py,sha256=BEzzX3nWpA-EAKx8UIm0_vjcJzDRxWO
371
391
  anthropic/types/beta/skill_list_response.py,sha256=jImI_kPHYQ8LHtlzkwD9qjBJHAHps8oLzEJzsarg7nM,1157
372
392
  anthropic/types/beta/skill_retrieve_response.py,sha256=MFbkjMKP3a0H38tpsZ4bWZZYLue6eNstgezFJWROROI,1165
373
393
  anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
374
- anthropic/types/beta/messages/batch_create_params.py,sha256=g7NA6Ydrc5O1D9oGJtvXUPaNFYUHRuXk0MZhHBQVD2Y,1546
394
+ anthropic/types/beta/messages/batch_create_params.py,sha256=5cKmeZLBTUsRyz9FJXXkrZfurdKjHIXMWElrAVJ3SCI,1569
375
395
  anthropic/types/beta/messages/batch_list_params.py,sha256=_pVFBKhuHPJ3TqXiA9lWO_5W9bjVG291SRCc5BruLuY,978
376
396
  anthropic/types/beta/messages/beta_deleted_message_batch.py,sha256=fxnXySfpTxvxxpB0RPYXPcle6M17Bv4LCeMfDguCFaU,438
377
397
  anthropic/types/beta/messages/beta_message_batch.py,sha256=xvKuMyh5ozZWi9ZNQG7MChZ69rd7cWunUU1WhgMsJIo,2437
378
398
  anthropic/types/beta/messages/beta_message_batch_canceled_result.py,sha256=ZUHa9QvKPR70pTQ4X-yOgkc0OJnXKBapxeFnmf9ndLo,287
379
399
  anthropic/types/beta/messages/beta_message_batch_errored_result.py,sha256=3r02yXJd5eAc3IhJgLBqF1C-GvSx8siHWlJXFb8uOb8,367
380
400
  anthropic/types/beta/messages/beta_message_batch_expired_result.py,sha256=GuvILKoUDVK-mrOtzbnAnJft5ley6mrrpa4hpRRnkX4,284
381
- anthropic/types/beta/messages/beta_message_batch_individual_response.py,sha256=MtGq2L1WcndxZslN1kyIXk1kEBTone-DTz5fZSof0-4,828
401
+ anthropic/types/beta/messages/beta_message_batch_individual_response.py,sha256=7rqc5Rr24AiUFFqbLxHiX9V3GL_KD3LZqTAm66MsWwQ,949
382
402
  anthropic/types/beta/messages/beta_message_batch_request_counts.py,sha256=mVj3pgtfgLdOIaMgbPXF8zeh99QuQyPox89T-8g5wWQ,1003
383
403
  anthropic/types/beta/messages/beta_message_batch_result.py,sha256=aq-LfNiuRCBg9ZYloNUXRfQEEFJJE7LivWpXyZGIpyg,819
384
404
  anthropic/types/beta/messages/beta_message_batch_succeeded_result.py,sha256=y4apNvDRTbJ_ldkpM4tWikiw1o0gROnrITZ0d7Qozrg,355
@@ -390,14 +410,14 @@ anthropic/types/beta/skills/version_list_params.py,sha256=7ybJm6AoOfrRE22qEF3GaB
390
410
  anthropic/types/beta/skills/version_list_response.py,sha256=S2ifcSXltFr4yJzhCEtuQAQtQ0sMycTuv1djhRId5n4,1183
391
411
  anthropic/types/beta/skills/version_retrieve_response.py,sha256=1cfKkqynLN5Cy2RpUXdI-tlSZT3NK4e-xIUd4jUwEEo,1191
392
412
  anthropic/types/messages/__init__.py,sha256=rL0U5ew9nqZzJRMked2CdI-UVIauM0cAx8O9a2RF5qo,1076
393
- anthropic/types/messages/batch_create_params.py,sha256=zdQHX3o6vGLdrhtw8IBui7aXl6Ix4CJnZDoZmm-5FFk,1068
413
+ anthropic/types/messages/batch_create_params.py,sha256=u48D4M4jRAVR7LlJbEGkphjqyp-pSWlDkOBZV9_8f0Q,1091
394
414
  anthropic/types/messages/batch_list_params.py,sha256=uuyRsq3a2qb89vESjKuvz7l6bkVewfQSJsVzWp8lKrI,691
395
415
  anthropic/types/messages/deleted_message_batch.py,sha256=f5CDJzj4UEsRAy9SkYivpMuz-E5lpfoLHTl8mLeThAg,429
396
416
  anthropic/types/messages/message_batch.py,sha256=2Oxp1wiOkp22w_UvIkBL4cgwH-4IkZcAx7MpN-ycYGg,2415
397
417
  anthropic/types/messages/message_batch_canceled_result.py,sha256=u2VevMap02v0B1fgXs8bhiBoc8obE2AWbKV7qd0vto0,278
398
418
  anthropic/types/messages/message_batch_errored_result.py,sha256=VnxtXDxONJTxZbCvl_8DefG-yR1pNLSIikZAfPac30A,351
399
419
  anthropic/types/messages/message_batch_expired_result.py,sha256=zntExk51haoLk2gGldTCCuhWJw8j-xv5DxOnx6GDyn4,275
400
- anthropic/types/messages/message_batch_individual_response.py,sha256=xfRMlzuYEOY2_E8vGhIsQ39NxBfgdRcT14v3wGPARks,806
420
+ anthropic/types/messages/message_batch_individual_response.py,sha256=CVCqRkKP4_RJhAnaQ4yJtmt5SzIroDzy-Cn4vMPflF0,927
401
421
  anthropic/types/messages/message_batch_request_counts.py,sha256=KL64Dp8ISD5KwxryYGzDR9xg4m6Ovm-6okaXHWRPcNA,994
402
422
  anthropic/types/messages/message_batch_result.py,sha256=VdNDHse9-8i5ogM2Si4Yp3cc73rMGlfDLJzNYdWbEAU,733
403
423
  anthropic/types/messages/message_batch_succeeded_result.py,sha256=k1ruBaFzaT6dnUxuelLpuFSOC__1EZ6Nni1sPHHeUUU,333
@@ -413,7 +433,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
413
433
  anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
414
434
  anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
415
435
  anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
416
- anthropic-0.74.1.dist-info/METADATA,sha256=hj9E86URKPzwsGvQYSWbc106lywLRwyc6x-_TMkFtkU,28514
417
- anthropic-0.74.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
418
- anthropic-0.74.1.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
419
- anthropic-0.74.1.dist-info/RECORD,,
436
+ anthropic-0.76.0.dist-info/METADATA,sha256=_besTzcn85X8je_lEEhWLGDr0EhiM3hvoI-r7LhbMN0,28630
437
+ anthropic-0.76.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
438
+ anthropic-0.76.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
439
+ anthropic-0.76.0.dist-info/RECORD,,