anthropic 0.75.0__py3-none-any.whl → 0.77.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 (81) hide show
  1. anthropic/_base_client.py +145 -13
  2. anthropic/_client.py +4 -12
  3. anthropic/_compat.py +3 -3
  4. anthropic/_models.py +16 -1
  5. anthropic/_streaming.py +78 -76
  6. anthropic/_types.py +12 -2
  7. anthropic/_utils/_json.py +35 -0
  8. anthropic/_version.py +1 -1
  9. anthropic/lib/_parse/_response.py +29 -1
  10. anthropic/lib/streaming/__init__.py +3 -0
  11. anthropic/lib/streaming/_messages.py +74 -40
  12. anthropic/lib/streaming/_types.py +42 -2
  13. anthropic/lib/tools/_beta_compaction_control.py +2 -2
  14. anthropic/lib/tools/_beta_runner.py +17 -0
  15. anthropic/resources/beta/messages/messages.py +229 -83
  16. anthropic/resources/messages/messages.py +409 -5
  17. anthropic/types/__init__.py +7 -0
  18. anthropic/types/beta/beta_code_execution_tool_20250522_param.py +1 -0
  19. anthropic/types/beta/beta_code_execution_tool_20250825_param.py +1 -0
  20. anthropic/types/beta/beta_container.py +4 -0
  21. anthropic/types/beta/beta_container_params.py +2 -0
  22. anthropic/types/beta/beta_container_upload_block.py +2 -0
  23. anthropic/types/beta/beta_container_upload_block_param.py +5 -0
  24. anthropic/types/beta/beta_direct_caller.py +2 -0
  25. anthropic/types/beta/beta_direct_caller_param.py +2 -0
  26. anthropic/types/beta/beta_mcp_tool_config_param.py +2 -0
  27. anthropic/types/beta/beta_mcp_tool_default_config_param.py +2 -0
  28. anthropic/types/beta/beta_mcp_toolset_param.py +6 -0
  29. anthropic/types/beta/beta_memory_tool_20250818_param.py +1 -0
  30. anthropic/types/beta/beta_output_config_param.py +15 -1
  31. anthropic/types/beta/beta_server_tool_caller.py +2 -0
  32. anthropic/types/beta/beta_server_tool_caller_param.py +2 -0
  33. anthropic/types/beta/beta_server_tool_use_block.py +4 -4
  34. anthropic/types/beta/beta_skill.py +2 -0
  35. anthropic/types/beta/beta_skill_params.py +2 -0
  36. anthropic/types/beta/beta_tool_bash_20241022_param.py +1 -0
  37. anthropic/types/beta/beta_tool_bash_20250124_param.py +1 -0
  38. anthropic/types/beta/beta_tool_choice_any_param.py +2 -0
  39. anthropic/types/beta/beta_tool_choice_auto_param.py +2 -0
  40. anthropic/types/beta/beta_tool_choice_none_param.py +2 -0
  41. anthropic/types/beta/beta_tool_choice_tool_param.py +2 -0
  42. anthropic/types/beta/beta_tool_computer_use_20241022_param.py +1 -0
  43. anthropic/types/beta/beta_tool_computer_use_20250124_param.py +1 -0
  44. anthropic/types/beta/beta_tool_computer_use_20251124_param.py +1 -0
  45. anthropic/types/beta/beta_tool_param.py +6 -0
  46. anthropic/types/beta/beta_tool_reference_block_param.py +2 -0
  47. anthropic/types/beta/beta_tool_search_tool_bm25_20251119_param.py +1 -0
  48. anthropic/types/beta/beta_tool_search_tool_regex_20251119_param.py +1 -0
  49. anthropic/types/beta/beta_tool_text_editor_20241022_param.py +1 -0
  50. anthropic/types/beta/beta_tool_text_editor_20250124_param.py +1 -0
  51. anthropic/types/beta/beta_tool_text_editor_20250429_param.py +1 -0
  52. anthropic/types/beta/beta_tool_text_editor_20250728_param.py +1 -0
  53. anthropic/types/beta/beta_web_fetch_tool_20250910_param.py +1 -0
  54. anthropic/types/beta/beta_web_search_tool_20250305_param.py +6 -0
  55. anthropic/types/beta/beta_web_search_tool_result_error_code.py +1 -1
  56. anthropic/types/beta/message_count_tokens_params.py +9 -5
  57. anthropic/types/beta/message_create_params.py +9 -5
  58. anthropic/types/beta/messages/batch_create_params.py +2 -9
  59. anthropic/types/beta/messages/beta_message_batch_individual_response.py +4 -0
  60. anthropic/types/json_output_format_param.py +15 -0
  61. anthropic/types/message_count_tokens_params.py +4 -0
  62. anthropic/types/message_create_params.py +4 -0
  63. anthropic/types/messages/message_batch_individual_response.py +4 -0
  64. anthropic/types/output_config_param.py +19 -0
  65. anthropic/types/parsed_message.py +56 -0
  66. anthropic/types/tool_bash_20250124_param.py +3 -0
  67. anthropic/types/tool_choice_any_param.py +2 -0
  68. anthropic/types/tool_choice_auto_param.py +2 -0
  69. anthropic/types/tool_choice_none_param.py +2 -0
  70. anthropic/types/tool_choice_tool_param.py +2 -0
  71. anthropic/types/tool_param.py +8 -0
  72. anthropic/types/tool_text_editor_20250124_param.py +3 -0
  73. anthropic/types/tool_text_editor_20250429_param.py +3 -0
  74. anthropic/types/tool_text_editor_20250728_param.py +3 -0
  75. anthropic/types/web_search_tool_20250305_param.py +8 -0
  76. anthropic/types/web_search_tool_request_error_param.py +8 -1
  77. anthropic/types/web_search_tool_result_error.py +8 -1
  78. {anthropic-0.75.0.dist-info → anthropic-0.77.0.dist-info}/METADATA +4 -2
  79. {anthropic-0.75.0.dist-info → anthropic-0.77.0.dist-info}/RECORD +81 -77
  80. {anthropic-0.75.0.dist-info → anthropic-0.77.0.dist-info}/WHEEL +0 -0
  81. {anthropic-0.75.0.dist-info → anthropic-0.77.0.dist-info}/licenses/LICENSE +0 -0
@@ -21,3 +21,6 @@ class ToolBash20250124Param(TypedDict, total=False):
21
21
 
22
22
  cache_control: Optional[CacheControlEphemeralParam]
23
23
  """Create a cache control breakpoint at this content block."""
24
+
25
+ strict: bool
26
+ """When true, guarantees schema validation on tool names and inputs"""
@@ -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]]
@@ -51,4 +56,7 @@ class ToolParam(TypedDict, total=False):
51
56
  aspects of the tool input JSON schema.
52
57
  """
53
58
 
59
+ strict: bool
60
+ """When true, guarantees schema validation on tool names and inputs"""
61
+
54
62
  type: Optional[Literal["custom"]]
@@ -21,3 +21,6 @@ class ToolTextEditor20250124Param(TypedDict, total=False):
21
21
 
22
22
  cache_control: Optional[CacheControlEphemeralParam]
23
23
  """Create a cache control breakpoint at this content block."""
24
+
25
+ strict: bool
26
+ """When true, guarantees schema validation on tool names and inputs"""
@@ -21,3 +21,6 @@ class ToolTextEditor20250429Param(TypedDict, total=False):
21
21
 
22
22
  cache_control: Optional[CacheControlEphemeralParam]
23
23
  """Create a cache control breakpoint at this content block."""
24
+
25
+ strict: bool
26
+ """When true, guarantees schema validation on tool names and inputs"""
@@ -27,3 +27,6 @@ class ToolTextEditor20250728Param(TypedDict, total=False):
27
27
 
28
28
  If not specified, defaults to displaying the full file.
29
29
  """
30
+
31
+ strict: bool
32
+ """When true, guarantees schema validation on tool names and inputs"""
@@ -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]
@@ -58,6 +63,9 @@ class WebSearchTool20250305Param(TypedDict, total=False):
58
63
  max_uses: Optional[int]
59
64
  """Maximum number of times the tool can be used in the API request."""
60
65
 
66
+ strict: bool
67
+ """When true, guarantees schema validation on tool names and inputs"""
68
+
61
69
  user_location: Optional[UserLocation]
62
70
  """Parameters for the user's location.
63
71
 
@@ -9,7 +9,14 @@ __all__ = ["WebSearchToolRequestErrorParam"]
9
9
 
10
10
  class WebSearchToolRequestErrorParam(TypedDict, total=False):
11
11
  error_code: Required[
12
- Literal["invalid_tool_input", "unavailable", "max_uses_exceeded", "too_many_requests", "query_too_long"]
12
+ Literal[
13
+ "invalid_tool_input",
14
+ "unavailable",
15
+ "max_uses_exceeded",
16
+ "too_many_requests",
17
+ "query_too_long",
18
+ "request_too_large",
19
+ ]
13
20
  ]
14
21
 
15
22
  type: Required[Literal["web_search_tool_result_error"]]
@@ -8,6 +8,13 @@ __all__ = ["WebSearchToolResultError"]
8
8
 
9
9
 
10
10
  class WebSearchToolResultError(BaseModel):
11
- error_code: Literal["invalid_tool_input", "unavailable", "max_uses_exceeded", "too_many_requests", "query_too_long"]
11
+ error_code: Literal[
12
+ "invalid_tool_input",
13
+ "unavailable",
14
+ "max_uses_exceeded",
15
+ "too_many_requests",
16
+ "query_too_long",
17
+ "request_too_large",
18
+ ]
12
19
 
13
20
  type: Literal["web_search_tool_result_error"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anthropic
3
- Version: 0.75.0
3
+ Version: 0.77.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
4
- anthropic/_compat.py,sha256=t3bXgTygusFSjp0qoTb9D6E749djY0tFAwHMgKEE-Rw,6775
2
+ anthropic/_base_client.py,sha256=6dw7YQ2G3R1n58AuRh1mdvZPgNgx3l-lDHGpB5t43SA,79540
3
+ anthropic/_client.py,sha256=XDt4Mi3pgO2pGyHJrS9L1vOgc642OLSMXbzyt0Ojet8,22844
4
+ anthropic/_compat.py,sha256=5RORWeEeyKfGgolq17SMHe8mqJ3_RO_s9NfSNi6DIYs,6840
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=YRIQLOgAdPl7dRAXimeFliTRI1E-aOT29SMjAv9rp1o,162
13
+ anthropic/_streaming.py,sha256=fGH67prdJwMieyAN4Ns0HRHDrwih13gb8GZycbSJ_tw,14360
14
+ anthropic/_types.py,sha256=jIMpuLkCfCZ8rLpfnKnGLvHWBEIqo2-Ul992R9Y7p9M,7696
15
+ anthropic/_version.py,sha256=YMa020xKGiIiSgVR2K54gH9aR4ZotwVKYZVDGETvB_4,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
@@ -20,6 +20,7 @@ anthropic/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,
20
20
  anthropic/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
21
21
  anthropic/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
22
22
  anthropic/_utils/_httpx.py,sha256=buTjMcUfp_KBTwIPStAD0mx1PreJIHn10if9y__wBeY,2094
23
+ anthropic/_utils/_json.py,sha256=bl95uuIWwgSfXX-gP1trK_lDAPwJujYfJ05Cxo2SEC4,962
23
24
  anthropic/_utils/_logs.py,sha256=R8FqzEnxoLq-BLAzMROQmAHOKJussAkbd4eZL5xBkec,783
24
25
  anthropic/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
25
26
  anthropic/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
@@ -37,7 +38,7 @@ anthropic/lib/foundry.py,sha256=q4fZOnbBcBWFE_fVwL9EyJBFt-RFk0l78bzFxyO9Q2k,1753
37
38
  anthropic/lib/_extras/__init__.py,sha256=a9HX69-V9nROM4Em9a4y-xZTgiLE2jdlCyC6ZKtxfyY,53
38
39
  anthropic/lib/_extras/_common.py,sha256=IhHjAsirY2xfLJrzlt9rS_0IPsTJeWqKA2HWUuvDN14,348
39
40
  anthropic/lib/_extras/_google_auth.py,sha256=Wukh6VOgcDRYSsFCVT9tx_oXI1ApIsmioSLEMsYvDfw,688
40
- anthropic/lib/_parse/_response.py,sha256=wMAtcvFPLdQy0hf6ux6qAenjaFs3h5UIGt1aaSb4byA,1525
41
+ anthropic/lib/_parse/_response.py,sha256=_CEbmG-xee43wYNlcgQD5NY4Ov3Uj-4ssNmBUpyqpjA,2460
41
42
  anthropic/lib/_parse/_transform.py,sha256=4wni1xBlDb5Ik66cp61eRpJLFNyhE86R6PC2ZGT9Hhk,5285
42
43
  anthropic/lib/bedrock/__init__.py,sha256=3Gzvayr4lrSDM1stFvQC27aRfIla0Ej0keE_h0opIj0,106
43
44
  anthropic/lib/bedrock/_auth.py,sha256=6inTIC3Emx86SVFMncfklN_ry486Dd1VPQbmx8pg3zM,1890
@@ -46,16 +47,16 @@ anthropic/lib/bedrock/_beta_messages.py,sha256=ClPL21UrRbJ9M10G8PcRla_Fu9GoWN_42
46
47
  anthropic/lib/bedrock/_client.py,sha256=kZDEdx07b4rXG81evFsWB5TgOqhRwsYoCBJTEkWzjsw,15915
47
48
  anthropic/lib/bedrock/_stream.py,sha256=wCS-1otwfIIVbfG3TFFKxTD-antJiTmprW6eAAGTCDA,871
48
49
  anthropic/lib/bedrock/_stream_decoder.py,sha256=gTlsTn0s6iVOL4Smp_inhDUBcOZuCgGgJib7fORbQWM,2551
49
- anthropic/lib/streaming/__init__.py,sha256=3t53ifPduSySAGEwk2PomOVATthmYAf71byemIbsi78,1362
50
+ anthropic/lib/streaming/__init__.py,sha256=HjQ-FBmB7YiliD_Hu3-Li4c2UG8RHwt5pm2qV3iXAIM,1538
50
51
  anthropic/lib/streaming/_beta_messages.py,sha256=d9J06XGaWKELDpX9unsRnn53dpSDQvNwYXFWGNnQOk0,20395
51
52
  anthropic/lib/streaming/_beta_types.py,sha256=lnYGoJcdkjWDssp3FgUImNMKHKakVmqkoSHBsAFOJUw,2747
52
- anthropic/lib/streaming/_messages.py,sha256=OSV9sjb8MLThSywEFXQV9OchcNXAE2KxDacVpJbkNRM,16958
53
- anthropic/lib/streaming/_types.py,sha256=CrR4948IWgUF7L9O0ase2QwbpiQ1JeiYXrRyVi74-Bw,2086
53
+ anthropic/lib/streaming/_messages.py,sha256=6HZ-Xx8AdWFLVtbC1GW99Z4_81MTx8yHHdwOjbHOZ-U,18919
54
+ anthropic/lib/streaming/_types.py,sha256=8u3j8YaW2KaMbAmo2HF0t7-AVQ9FMD2RmI-gg3mTBvI,3334
54
55
  anthropic/lib/tools/__init__.py,sha256=8JgDqt6ti7klw9JQ78UjFACMc8GmGi-eFWu6xhbZ5MQ,811
55
56
  anthropic/lib/tools/_beta_builtin_memory_tool.py,sha256=FjMyWAYHR4da2jhz2EyUt_0G5BoUXW-iHnwlCprFbqc,9123
56
- anthropic/lib/tools/_beta_compaction_control.py,sha256=wMjW2AyKRx8bNGWHrPUrc6UuAtyjWgiCYs3PvvSbV8k,2118
57
+ anthropic/lib/tools/_beta_compaction_control.py,sha256=0oGXY26CwTh3iT_2slxZ-YpZYp8d_9UvUjl_V6uaeNw,2114
57
58
  anthropic/lib/tools/_beta_functions.py,sha256=SamJxBd4gvNbiosCAE8xie0_BIDJudhogqKHvAOC_Wc,11350
58
- anthropic/lib/tools/_beta_runner.py,sha256=g7EDM4_0v728UzkWn8SsUm8Kx2f5wEt-pXimBz0IFhc,22109
59
+ anthropic/lib/tools/_beta_runner.py,sha256=-1ZEx225tNowHKcBrL3tCQXpG2XQ7dknk2ef7-G0JoI,23157
59
60
  anthropic/lib/vertex/__init__.py,sha256=A8vuK1qVPtmKr1_LQgPuDRVA6I4xm_ye2aPdAa4yGsI,102
60
61
  anthropic/lib/vertex/_auth.py,sha256=Kyt_hbUc-DPlkvds4__OLR8FLPpoDas6bXhZTECxO3Y,1644
61
62
  anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4,3323
@@ -70,14 +71,14 @@ anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7t
70
71
  anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
71
72
  anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
72
73
  anthropic/resources/beta/messages/batches.py,sha256=51m83Ijs6cIE_f4hRQNhSyNqDj5TVt0F0Bm4ryekoLw,36116
73
- anthropic/resources/beta/messages/messages.py,sha256=hHvZn6I-w5ld7K4bDJ1oJXAqHV3WNbQvIFbrKYI4GB4,155898
74
+ anthropic/resources/beta/messages/messages.py,sha256=83AAPisibS8UzIUmp0zCvUhMFhTheYqvpsXizT1d6Sk,162229
74
75
  anthropic/resources/beta/skills/__init__.py,sha256=QMC_HEzfI-k0jhfKJThUUjf9wf7Vs8HTxSXYNnvVx2o,836
75
76
  anthropic/resources/beta/skills/skills.py,sha256=ytCR9JN7Qgn9GbWT0oBgpy-nvYXWwqoBvOzZ_iURANE,25036
76
77
  anthropic/resources/beta/skills/versions.py,sha256=iWSrZ4iqVGm16f7r_aE79gDxeUTUaSw5dEBAyHIxRu8,25212
77
78
  anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
78
79
  anthropic/resources/messages/batches.py,sha256=HlQc5rBYzJu43pnw7H2dSnNN1XHEWpc_czyJ7MSbXj0,28824
79
- anthropic/resources/messages/messages.py,sha256=Cd4UfGlSFjWLyPQftQNGFM1BAMQsbo5Zcafli2jAugc,108860
80
- anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
80
+ anthropic/resources/messages/messages.py,sha256=V4dPVr6Fov31ecgucPTM3w_hcVxpNAY_3--OCV3vRNY,127959
81
+ anthropic/types/__init__.py,sha256=EVUJG4Kvid1u5p3Xc_fwiike-jvZgqx9WIvhJN0hw-I,9769
81
82
  anthropic/types/anthropic_beta_param.py,sha256=pCogMqyk-O1fxyYbuvWpLw4sBDfNSIYyUYJcFuGrki8,1003
82
83
  anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
83
84
  anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
@@ -118,10 +119,11 @@ anthropic/types/content_block_stop_event.py,sha256=JLfjHeVxDa9m1R1Pp3pjSjTLiaA6M
118
119
  anthropic/types/document_block_param.py,sha256=ATGjDsb0s4A3ExJaljj5kCQh9utjygv1IKy6grGwUcM,1094
119
120
  anthropic/types/image_block_param.py,sha256=qIh7kE3IyA4wrd4KNhmFmpv2fpOeJr1Dp-WNJLjQVx0,770
120
121
  anthropic/types/input_json_delta.py,sha256=s-DsbG4jVex1nYxAXNOeraCqGpbRidCbRqBR_Th2YYI,336
122
+ anthropic/types/json_output_format_param.py,sha256=OXADdQgxn9OzpiE16hm3neXUXTPMmPbw0uxwDO9aY2E,422
121
123
  anthropic/types/message.py,sha256=Uy4ZsxH0RNE4u2cBrVjsgeQyHg7To9yHBvNBTZk6MqA,3530
122
- anthropic/types/message_count_tokens_params.py,sha256=7C7sqC2kaixDxA11rGJ9cxaSyJKzabhsoWEQLB6_Obg,6751
124
+ anthropic/types/message_count_tokens_params.py,sha256=7hZO0L8mgCPXaDFCHXK_OK7VIjzgBjEaPEdoOYXAZ7E,6923
123
125
  anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXltzyblbEbVu6MxbitTfet4k,840
124
- anthropic/types/message_create_params.py,sha256=7HFrYFxVO6RXM27Z_D_c0E02-YwyYrJuX7i23Vc_jjM,11038
126
+ anthropic/types/message_create_params.py,sha256=6CmFAqKc_tNNCNGpoWVknQt-tq5bcFfzhG_bvAVwcIs,11210
125
127
  anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
126
128
  anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
127
129
  anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
@@ -134,6 +136,8 @@ anthropic/types/model.py,sha256=ZnWBIjrO55aaGtSgqjaKHHqIWytxPjwbQfEP-oV5CtQ,914
134
136
  anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
135
137
  anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
136
138
  anthropic/types/model_param.py,sha256=99rcpm60i-IEXl-PKmIuyyilKxLFeGHAhFDnTxIduNM,960
139
+ anthropic/types/output_config_param.py,sha256=0HeAWxtmqTQtE0KMMURd4s5ae-Cyc1okW2QdH_BUtzg,560
140
+ anthropic/types/parsed_message.py,sha256=oMP1kUgumiHEOXAy8bQzyHppOEDn4coJuCMSGOFcOiE,1632
137
141
  anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
138
142
  anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
139
143
  anthropic/types/raw_content_block_delta_event.py,sha256=XKpY_cCljZ6NFtVCt5R38imPbnZAbFyQVIB5d4K4ZgY,393
@@ -162,17 +166,17 @@ anthropic/types/thinking_config_disabled_param.py,sha256=13QHVviCeaBGcZ2_xsYQROr
162
166
  anthropic/types/thinking_config_enabled_param.py,sha256=MKCofudk-qk80KzdkXWvA9Id_QeS0Q4_3gznpU0_ZqE,726
163
167
  anthropic/types/thinking_config_param.py,sha256=n9h9Z_QtYpV7QnsbvkKYtTpT2opWjmPv1dx-RVKQzy0,463
164
168
  anthropic/types/thinking_delta.py,sha256=OfGsFuv2SEKKIbMQw0fdQBnIPZtwNFQEB2oGjlryCNg,276
165
- anthropic/types/tool_bash_20250124_param.py,sha256=Ww6iipXPdPxUsHXjmBoXahGsKDoA-Q7AM_fMJFPqBmI,692
166
- anthropic/types/tool_choice_any_param.py,sha256=jBA4_M2YMPfkFAx8Goi6pY1LblRLu3IsBwBfnjJBJtg,485
167
- anthropic/types/tool_choice_auto_param.py,sha256=F6ZzaVnXZgCa9AxEddyHu_xsO5sK4n-sBY9ZKUovlUk,488
168
- anthropic/types/tool_choice_none_param.py,sha256=druYe_74R1D92_ZPvJfbapBXjXMPXwQToAm-Wwukac0,306
169
+ anthropic/types/tool_bash_20250124_param.py,sha256=6YUxpHWCzVZY1Gvwyj7xX2yOFuK1wuupG4QOHf3efYU,785
170
+ anthropic/types/tool_choice_any_param.py,sha256=QKtNQbAvqbB5sh02Kbpihxdw77tCFcDOgPV1mFu3h90,536
171
+ anthropic/types/tool_choice_auto_param.py,sha256=Zk2s9x4QNeQN458nzsJjGZlpVwxSLoekGJUm5SZ1ZL0,557
172
+ anthropic/types/tool_choice_none_param.py,sha256=uAVV99JNVXGC5aFsQRildmzCiw1sWpWK3mzMSDoBuqs,361
169
173
  anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
170
- anthropic/types/tool_choice_tool_param.py,sha256=61mEbvhxU4oGKxTlcFt1RBUzHPIIuWgQynrn49_HKZY,552
171
- anthropic/types/tool_param.py,sha256=Vfyh23gcySfEuBk-W9pVsLonxyHwg0myBouyaNqvVdw,1665
174
+ anthropic/types/tool_choice_tool_param.py,sha256=2w_8mPWrZTMuqKxxHg-6TGzRv1QEYGPMFItq0mr09rs,626
175
+ anthropic/types/tool_param.py,sha256=gfxhl4KsQxGCIuPpaZdj_zCgORLW0CNDDvFLTDk-Hqg,1949
172
176
  anthropic/types/tool_result_block_param.py,sha256=0rbEAOygNLSnt03pfVdZfcTEVWK_CbBdk2mdUTN0gkg,985
173
- anthropic/types/tool_text_editor_20250124_param.py,sha256=uZU1b3qkuAMf_WnyPd_SyEO7iQXY75-XEYBP1JkGu4U,725
174
- anthropic/types/tool_text_editor_20250429_param.py,sha256=2laqI5jBBNignFGJhwyOWoRFjFiMAMTApJLJhcW11Lk,734
175
- anthropic/types/tool_text_editor_20250728_param.py,sha256=ep1KG6uIZFZ94XhRD0sV3zdtXNcA9WJ9MBtm26Y88U0,906
177
+ anthropic/types/tool_text_editor_20250124_param.py,sha256=LQg6a8GYGSC7YBlebvTrm2a_Y0I8DMyr_zndBLYdbhU,818
178
+ anthropic/types/tool_text_editor_20250429_param.py,sha256=deB5DCb8gdk9eVHwX1fMKSfq345OqHfrkLit1MeDvXA,827
179
+ anthropic/types/tool_text_editor_20250728_param.py,sha256=EZvsal2XZbL_Tn6WtuxcVYrzlEPhAwklT85dQ0NSDtk,999
176
180
  anthropic/types/tool_union_param.py,sha256=sc_0_oZXDX1irFKjzodgFw6NoWyZK_2QwMoHb7VmG1o,814
177
181
  anthropic/types/tool_use_block.py,sha256=J7sfsR1qlXgoglwcYaXktgaeEfS8oBYUwe1bqG7w9C4,331
178
182
  anthropic/types/tool_use_block_param.py,sha256=m5biFrQ21gEEwBu9UgoVXVCK_TwHdJMvvQ_Gl_MC45o,623
@@ -181,13 +185,13 @@ anthropic/types/url_pdf_source_param.py,sha256=knFb8DFOWlrFFYwXnZbQx8tqejjWbPQjn
181
185
  anthropic/types/usage.py,sha256=FPIepQO8jXFHX3RM2HuN-hWLz6y3UOyC4lnJRQxOSZY,1053
182
186
  anthropic/types/web_search_result_block.py,sha256=Y8-r0n86qKex4eonDCKre4mS1w7SXleuOFMCT6HmpHU,396
183
187
  anthropic/types/web_search_result_block_param.py,sha256=AbQnJIyfQYHSOEUYxBCGuZNqP5hmpFZI_1SxyD5QC8A,476
184
- anthropic/types/web_search_tool_20250305_param.py,sha256=GB91ImdTWjK8BsrhEoc0oCZDes_CwUv2t4Wo0zlm2Xs,1829
185
- anthropic/types/web_search_tool_request_error_param.py,sha256=nCRDcI1Ffc2gznp_ezMGQsSfgXH9wGEzrTm6X_aCumM,498
188
+ anthropic/types/web_search_tool_20250305_param.py,sha256=9I66rlc5LJd0s3fnmHZJpEtu2WhiyxxeAjBFcwvcT4c,2025
189
+ anthropic/types/web_search_tool_request_error_param.py,sha256=yhLg19HJnZNCTn8bAFAVDD8U4t2o2CJ5TogiI1qa0yg,602
186
190
  anthropic/types/web_search_tool_result_block.py,sha256=-E5RRLn9EznUyxJQNkThIoLEgW-eMzBJDvfA2rO3oDY,437
187
191
  anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTduZkNgyWFZAiG7kYamPGqwpCffk,437
188
192
  anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
189
193
  anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
190
- anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
194
+ anthropic/types/web_search_tool_result_error.py,sha256=btsBGbXO_vbc62t4ENt4J7F3z9tRQqc73bSctPg03ro,491
191
195
  anthropic/types/beta/__init__.py,sha256=_hmjiIhMBtGgD81SAj6AexMtDj7UDm8Y_MtRZEZBoT0,21664
192
196
  anthropic/types/beta/beta_all_thinking_turns_param.py,sha256=tC2sF_TI22gg4pa6BN4EYHEdudq0M5DIiAQczqiWyAo,317
193
197
  anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
@@ -225,8 +229,8 @@ anthropic/types/beta/beta_code_execution_output_block.py,sha256=OpNDX-uckWDLBg70
225
229
  anthropic/types/beta/beta_code_execution_output_block_param.py,sha256=EOtPBBkd-AJSbmHg_RDUY01rQLH90Q1_NZjX5CHFAeo,379
226
230
  anthropic/types/beta/beta_code_execution_result_block.py,sha256=9xSRmN5jLtLU7i8OykIZ2avIyaQYN-AaruG6iH2-H80,499
227
231
  anthropic/types/beta/beta_code_execution_result_block_param.py,sha256=ntPk_c1f0xjvW-8EKinOJAyWhKsfwyPrwcxMbK8-0t8,620
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
232
+ anthropic/types/beta/beta_code_execution_tool_20250522_param.py,sha256=Ydvvk2lBfJW6DRhdkyeZ4aChY4nvK_DGSHewSf3JxXU,1092
233
+ anthropic/types/beta/beta_code_execution_tool_20250825_param.py,sha256=hddA6IKkq_BFqJ9ElvFKmtCaPb2MoBoNEoXqA2-PqCA,1092
230
234
  anthropic/types/beta/beta_code_execution_tool_result_block.py,sha256=bheDD2Kv4yg7l2l68FQasijI_T3Cu6MtRwQ97KvOWj0,483
231
235
  anthropic/types/beta/beta_code_execution_tool_result_block_content.py,sha256=yzd-4lPmzMcv_NKxzgxZFMW2fdMa9cN25IsKkduzxo0,497
232
236
  anthropic/types/beta/beta_code_execution_tool_result_block_param.py,sha256=lYwrz8FSWbvM7_806rRTMY4dVHOS1QzBVRQGAXTty38,827
@@ -234,10 +238,10 @@ anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.p
234
238
  anthropic/types/beta/beta_code_execution_tool_result_error.py,sha256=SuLEG42APBGhO0jVc2xu8eXLS1_mM9x5trxtwrXS5ok,461
235
239
  anthropic/types/beta/beta_code_execution_tool_result_error_code.py,sha256=BqoqrsTwo3PuXYz4mPiZr4z-q1kx2hs5iLoL7_otmyU,338
236
240
  anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_buEPIfaeGUnF9_pdfexZhjh_zdQju3LcERNVis,528
237
- anthropic/types/beta/beta_container.py,sha256=Vr8BXNE55XlpcuoebIoxjOpG0SxNl3-tMu6KWMiBkZI,522
238
- anthropic/types/beta/beta_container_params.py,sha256=PYJotNSzBW7_HdvPSs6N16huwhdIBSv6sGuY0ZHhCmc,481
239
- anthropic/types/beta/beta_container_upload_block.py,sha256=T-W7H8tlzin7_b_A6-hHxBBi9qJk0H7M-2JK_pnXyXE,300
240
- anthropic/types/beta/beta_container_upload_block_param.py,sha256=rqPN69iuHa6elrNfy-x_pMrm-xOLh_PTmqBrFhKzbhA,602
241
+ anthropic/types/beta/beta_container.py,sha256=TdNMRmTVJlJuvN0KEjeCYmSTXeKf0Wm8FuNmKsLyFEA,625
242
+ anthropic/types/beta/beta_container_params.py,sha256=JI1gltJKsz-6RWH7Iyho8_Y9Im659b92Un_sKQOYP9g,539
243
+ anthropic/types/beta/beta_container_upload_block.py,sha256=ebNuqOpWiBh41Q2qIrVZr1JYWqMxxoQQ1-3MylywG8k,364
244
+ anthropic/types/beta/beta_container_upload_block_param.py,sha256=49MzD6ylPreuDNSS22iTT-ByyMwjlwmRnO9yxS5ZAGI,782
241
245
  anthropic/types/beta/beta_content_block.py,sha256=Q9iGB1yETOXgoynKkG7VUHMloNOHzs8M3_de8uHrUjs,1797
242
246
  anthropic/types/beta/beta_content_block_param.py,sha256=_Hpe-82H7ua6Db07Y92r9Fp-oSnbG1oAx1FqPxeSLsM,2389
243
247
  anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
@@ -245,8 +249,8 @@ anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnht
245
249
  anthropic/types/beta/beta_context_management_config_param.py,sha256=cs3d7mNlprV34_UX8QPihM1FkCx6Tnzo7CjWVBVD0Qk,684
246
250
  anthropic/types/beta/beta_context_management_response.py,sha256=qwkhE6vtToG7m34R8cxPyOfzej_x7Nfeis5tuEWk8mI,804
247
251
  anthropic/types/beta/beta_count_tokens_context_management_response.py,sha256=efL0nsrOlA7KTIQ-M5IiXRmbmb6q-dakLp3oNnEh5G8,341
248
- anthropic/types/beta/beta_direct_caller.py,sha256=FqqV41KUEu5bi8cKIxKlLonuy7YQS-h0SMvX8HJrE-Y,256
249
- anthropic/types/beta/beta_direct_caller_param.py,sha256=MRkM9p4xB_c1lnvKLixH6gFH4kI1Fc4eyQX6FHE8E6I,312
252
+ anthropic/types/beta/beta_direct_caller.py,sha256=TM5hhPsVBlEOb7G15636eOHuOgIjwM3mH_Y6iKtJl14,308
253
+ anthropic/types/beta/beta_direct_caller_param.py,sha256=UaGWnnuhgWJY69aZ9RE79gNPUiJvALLc2lkLi-1Nsv8,364
250
254
  anthropic/types/beta/beta_document_block.py,sha256=lehaAYYdGHJay8F_J-GfMLOYWAe0G8gVWfeixA5XH2s,834
251
255
  anthropic/types/beta/beta_file_document_source_param.py,sha256=a5_eicJChOrOoBr7MIVj5hA-MZFs1syo5Oi8W_Jv1_4,350
252
256
  anthropic/types/beta/beta_file_image_source_param.py,sha256=5ogaJ3H_NNz2M1Qa5XWyB2uUf-0HHHLkwYXJuA3kOwQ,344
@@ -255,17 +259,17 @@ anthropic/types/beta/beta_input_json_delta.py,sha256=MPlt9LmfuwmpWryQagjkkVHHZRf
255
259
  anthropic/types/beta/beta_input_tokens_clear_at_least_param.py,sha256=9VMW4rN_ZeSQp5ianz-815vc_h23XjC-FI6ZICsC7d8,366
256
260
  anthropic/types/beta/beta_input_tokens_trigger_param.py,sha256=_7MSRq8ZykSOZxxr2upnPqpSZEQ42_m53wHhcqiQ2rE,356
257
261
  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=1PtOXpMi3kFDLWTNaCG7a30tu18sOHpiOcTJSEl4374,300
259
- anthropic/types/beta/beta_mcp_tool_default_config_param.py,sha256=XeYGly05i5ufRsLq1BkfRp7FTpMxvV5xu7xx6NzznKg,314
262
+ anthropic/types/beta/beta_mcp_tool_config_param.py,sha256=UBXvtQkihooZFlCW_DazHKGHnIs5ZT_mJNv79m_IVok,364
263
+ anthropic/types/beta/beta_mcp_tool_default_config_param.py,sha256=xYBOPL0TPdn83bgx4FufVNGdqMR1Ghq7d1bJ7YZYx4w,376
260
264
  anthropic/types/beta/beta_mcp_tool_result_block.py,sha256=mqx1WHh13wYoGpf5PnG8dgGsihq3qd9Pg6t9nolIwGI,439
261
265
  anthropic/types/beta/beta_mcp_tool_use_block.py,sha256=KRvDIWyDfq5i2zKGtlY3ZDxHsYxtfmqHa0knEJ5UZnU,444
262
266
  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=cMsrI6rboOeLpqGCkhD3BYOlCOcCReq9hbmDBjml2nU,1040
267
+ anthropic/types/beta/beta_mcp_toolset_param.py,sha256=lNEiIL5rfFDz-tfac2XGWkkUE2e0ddFXOYI1jcBj_I0,1240
264
268
  anthropic/types/beta/beta_memory_tool_20250818_command.py,sha256=It-xNhxO4M7DSqpczVfZq7mD2FPDZniHGUxCq9wSGGs,1179
265
269
  anthropic/types/beta/beta_memory_tool_20250818_create_command.py,sha256=jmrc8aWVghMz5PRW7vo5LPp3GaUDZkl7Ir8rmqNVsHw,453
266
270
  anthropic/types/beta/beta_memory_tool_20250818_delete_command.py,sha256=dRjSRkChmc6P_vIwIWlknVEXcXikM6EZjJxZgqfT-TA,396
267
271
  anthropic/types/beta/beta_memory_tool_20250818_insert_command.py,sha256=AkchM3mjzYmLC9Os12l1g4NNIvO1Caf9FNk_1w-jIIc,546
268
- anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=FwdqhgIrl4EWwHrIKt4Gu1fbIZv7tXKpDm4vYw8R8GI,1052
272
+ anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=-1A9mB14-G39yrnOWLE_QxyA-B8GrEQZhxmC4qKoRtQ,1127
269
273
  anthropic/types/beta/beta_memory_tool_20250818_rename_command.py,sha256=39AhTdurJEXwEdK54_Z-RjzAOMSvo8AeNo2KHD8vlgA,462
270
274
  anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py,sha256=2FBRtAlMbGio876ixv3NnoDkdIGHfoKwQswUWo6qTfs,524
271
275
  anthropic/types/beta/beta_memory_tool_20250818_view_command.py,sha256=NGvvJd_GEaQRfOXH0-YmGYpyyCtj7WkX9RQZ1iVc_OE,519
@@ -275,7 +279,7 @@ anthropic/types/beta/beta_message_param.py,sha256=jelI5bL_5DFMW5-aKDpBf1KsK-CvIZ
275
279
  anthropic/types/beta/beta_message_tokens_count.py,sha256=yO_2_42iBaPzX5izF1vTXoGSS1qy9LxzAf1K9GQgr4Y,621
276
280
  anthropic/types/beta/beta_metadata_param.py,sha256=julUtAFfgnCXSt0sN8qQ-_GuhJvpXbQyqlPhyzE8jmQ,602
277
281
  anthropic/types/beta/beta_model_info.py,sha256=hFbhNT1THKUqBKYEB0QvtQ1UBVgcoO_dtXFUPbuWqAA,655
278
- anthropic/types/beta/beta_output_config_param.py,sha256=XLknjwXSIEESh7RrT9RLOQxNa49wtTmZirHDtGiKw2U,385
282
+ anthropic/types/beta/beta_output_config_param.py,sha256=hVxlXuKidtHNuWUwnLA1Br6V5F5mmaaUkRW5dPuQHpM,847
279
283
  anthropic/types/beta/beta_plain_text_source.py,sha256=u3XpMPojTxn-_LvFdYYMLc_b8WI2ggIXdoZ4pDK4Q-Y,314
280
284
  anthropic/types/beta/beta_plain_text_source_param.py,sha256=5VW_apR2n3-G6KmDq6b58Me7kGTcN2IAHAwsGbPrlVQ,390
281
285
  anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h8AbwryMo9HXw4mNnrmv7Krg,690
@@ -293,14 +297,14 @@ anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py,sha256=
293
297
  anthropic/types/beta/beta_request_mcp_server_url_definition_param.py,sha256=j8N0ixvGHFheT2KqqI64HKufHmVST9VcJgShtlkPzUw,644
294
298
  anthropic/types/beta/beta_request_mcp_tool_result_block_param.py,sha256=xK9SY8bmetn-LWN4hks8KDbeh2WiF0pttcCXsB99v84,761
295
299
  anthropic/types/beta/beta_search_result_block_param.py,sha256=uqzKu_6YVDRe6rIbVSmfvQE7YleyRfa_UncwI2k3cuI,842
296
- anthropic/types/beta/beta_server_tool_caller.py,sha256=3_w4nLQc3hSwA2GOAiU9Spy7v7ka6lcrKUUjKrpBqa8,299
297
- anthropic/types/beta/beta_server_tool_caller_param.py,sha256=u72Zs7vrYjjDmLkCz0c0bVagsyTcSE-MyfZ148noNLU,365
300
+ anthropic/types/beta/beta_server_tool_caller.py,sha256=CWaGKr7F39lE-vvUAIz_GsE57NLdSLGwTJSzcp_pE48,359
301
+ anthropic/types/beta/beta_server_tool_caller_param.py,sha256=gEIDqI2JeKdVEX_5QgmVvN8Aqo2qHViwFtKDsrvstZ4,425
298
302
  anthropic/types/beta/beta_server_tool_usage.py,sha256=StokZ2PZBQ5r5X8ri71h-eZsFHqLdT0138Tafqy2az4,352
299
- anthropic/types/beta/beta_server_tool_use_block.py,sha256=ZN1kUxZGVg9OjMFlWvtu1kT_OS1RBm6u_MbKGLBnHuc,941
303
+ anthropic/types/beta/beta_server_tool_use_block.py,sha256=_M01Bywjiryf2Z5gBBzw73SjSFu_SN13t8WNuzMq3fY,968
300
304
  anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=Hq3I7deQ9nF4bExG3L6naHBGr1MIiz1nUwgpaF76hCs,1230
301
305
  anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
302
- anthropic/types/beta/beta_skill.py,sha256=eyvKq-A7cSfW3kWNP6KSFHoYCxfTnRe-CgQ396Wx8Js,454
303
- anthropic/types/beta/beta_skill_params.py,sha256=xqw8ygiJ1oXn5PERZHfY1Pb8doQsZ3_E4WwruG6n7cI,522
306
+ anthropic/types/beta/beta_skill.py,sha256=mvnxLGUWAN39GYKdKiJVAK8_-ZxvQinb2ovxwdUqKpU,522
307
+ anthropic/types/beta/beta_skill_params.py,sha256=mdRneR8t9DHPX2YrwQi0NBkQmsF5LVnSYqCAggRFOSE,604
304
308
  anthropic/types/beta/beta_stop_reason.py,sha256=ndrI-m-0sFW7HD8wlEIZrznffRVj6mAWsnR4Gk61AC8,322
305
309
  anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
306
310
  anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze3Ctlm-DuQH6Li1Do,693
@@ -324,32 +328,32 @@ anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=Wsufale1AF98kN
324
328
  anthropic/types/beta/beta_thinking_config_param.py,sha256=VK-ZLTr5bUP_Nu1rF5d1eYACPmGbx_HDbta-yWbWxxg,497
325
329
  anthropic/types/beta/beta_thinking_delta.py,sha256=4O9zQHhcqtvOz1zeqcJOo1YJpvzNN7t0q0dEzePswcc,285
326
330
  anthropic/types/beta/beta_thinking_turns_param.py,sha256=4rhTtQqaot1VJOhVAIJbGjQ3Q4SVUs9IN0o-TrRfejo,348
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=XKDm4WnqGSeKUr-MsYqR-1-WlmhRig3Nq7VXyxBarkI,493
330
- anthropic/types/beta/beta_tool_choice_auto_param.py,sha256=sfM3aadXzsiP8phKNHnMaTSw_GOAGrAF9mL283yLHpI,496
331
- anthropic/types/beta/beta_tool_choice_none_param.py,sha256=hgj4eeBigYkkO7D0ekWC1AOkid04tf2NWFs5rjigSu4,314
331
+ anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=Vr-6XR0I_Rd_TM4s4MTMpteS67VmdmoqOJ_U6dlWMZc,1119
332
+ anthropic/types/beta/beta_tool_bash_20250124_param.py,sha256=IuGZLRVdx5Yyt7VWj6SFCnBLk5R-Mq4k3TOgzR3Lejk,1119
333
+ anthropic/types/beta/beta_tool_choice_any_param.py,sha256=DPROata2t1ORbmeV0g6QQVvvzrG252n9v8xrzwGrKjs,544
334
+ anthropic/types/beta/beta_tool_choice_auto_param.py,sha256=WlSP5gg97WteYMYjKp-81iXNygyDrELApismEsVuqKo,565
335
+ anthropic/types/beta/beta_tool_choice_none_param.py,sha256=NqaCkqk3oKXrQ5DC7y5TYaMwuCR-FG5cgPdf9QYXm1Y,369
332
336
  anthropic/types/beta/beta_tool_choice_param.py,sha256=kJnRD1gWzx_NPpyfMShZtoXrUcHX6t6WCvhhNd2SWr8,627
333
- anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=TYPA4HbTZrSBcDsMnsk86c0HqBYrkoN71TQq_7yNV4k,560
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=roRcNrHW6Av9BUBRiv70DNE_Rv9c9S2CqqydZuDGeJ4,1911
337
+ anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=WQZbn92NIJnIQ_m98WbMzV3JMmQmsa0aZP_weO8ciR0,634
338
+ anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=8OKFR8M5sGTawjWY8adP-RIu5i6gck9As1Sw9zOumAg,1406
339
+ anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=v-OhPl0PHULjQ_Vz7VnVJKVlxX6-OVPseinojdY9icM,1406
340
+ anthropic/types/beta/beta_tool_computer_use_20251124_param.py,sha256=LhKLBnvYBYdyscOTsbjTivmDqx0OFRjXZXqvc5M94zc,1513
341
+ anthropic/types/beta/beta_tool_param.py,sha256=CsuOSfMzIkEh0V92WI45Zf7uT0DXLfjme9jRfCGends,2177
338
342
  anthropic/types/beta/beta_tool_reference_block.py,sha256=V9jo_vWMQMArdq5NdckUnCu-IeqZKoTmAGdAQbFY4dI,296
339
- anthropic/types/beta/beta_tool_reference_block_param.py,sha256=vlK0o2HAoUN1nSZU9i7uOqxkVokmdNtGCB0WKeuDLx8,598
343
+ anthropic/types/beta/beta_tool_reference_block_param.py,sha256=jB3AZvKmpwdRZyXuoI9BVOI_GrldY7rfTlHplTvkY40,675
340
344
  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
345
+ anthropic/types/beta/beta_tool_search_tool_bm25_20251119_param.py,sha256=DDyOsGV-tC8BgPqqXILk9mFDnFFULZACyX65LSXr31Y,1135
346
+ anthropic/types/beta/beta_tool_search_tool_regex_20251119_param.py,sha256=ol5TTJ6dcWqOzJIkc3TY0iLePz9tJ0Kox-PVMmAdQNs,1138
343
347
  anthropic/types/beta/beta_tool_search_tool_result_block.py,sha256=kVVsMPkwcBzHgv0EDf8rYabFJi3AMuJvIhplinPw7Oo,655
344
348
  anthropic/types/beta/beta_tool_search_tool_result_block_param.py,sha256=dGiX5xyWYOAbzIntGa4UDhaTFGan16LTkKLFjawY3Sk,981
345
349
  anthropic/types/beta/beta_tool_search_tool_result_error.py,sha256=tnR-X_uYFQ0hiyluau0u9d-Rx0KU3xK9EFXErQla7FE,484
346
350
  anthropic/types/beta/beta_tool_search_tool_result_error_param.py,sha256=qOGYVwK7xaphgDxiePo36IEE3pz3fPUE4KfarKC1qwc,481
347
351
  anthropic/types/beta/beta_tool_search_tool_search_result_block.py,sha256=1MD5K-GYRFxoil26nhoIn2ZyGls3N3Tq7WOTA6W_kI8,455
348
352
  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_text_editor_20241022_param.py,sha256=f23RsouhWNLpcB5qdHLOjH6fNpcPiyKrBENGO4AGr-w,1152
354
+ anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=XR55MPq1WrYPlQwfvV-D8ECmrDrrJq_5_egRaRAa6xs,1152
355
+ anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=LZlTfXKOUuWAjdo4m8G5LPNPBu-fXDAKKf441GLHnMY,1161
356
+ anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=Udq_Dq0zwa1CiokwcBeXX3K8aDfrjBM-IUuQafwmUjw,1333
353
357
  anthropic/types/beta/beta_tool_union_param.py,sha256=bm-m_AtsdlW5ztdBk1rkN--5vn7jfXa8bAQl6R4yRW0,2310
354
358
  anthropic/types/beta/beta_tool_use_block.py,sha256=vXFMJMyPrz2VuBV_6akT-vmNePCBGJ5_7J3GN9_sRqE,733
355
359
  anthropic/types/beta/beta_tool_use_block_param.py,sha256=jalYW33cz7ruFiFXM0xDN1s_ZFvhwl6yAhhwDpcIMHc,949
@@ -360,7 +364,7 @@ anthropic/types/beta/beta_url_pdf_source_param.py,sha256=Ox2U0GM60MJgQBec8NKPw49
360
364
  anthropic/types/beta/beta_usage.py,sha256=H0PAOPwTs8V2myo89yCS9vG78hCIv39ooGza39N-nB8,1088
361
365
  anthropic/types/beta/beta_web_fetch_block.py,sha256=zL3A3YWcuTPndBPCXkS2QnVN8dSA5x93x_qoYfWvYw4,523
362
366
  anthropic/types/beta/beta_web_fetch_block_param.py,sha256=6q6BR5Mjbknd-S3fIr5FkDEfXZt8CfnlpXB1XviNhz4,631
363
- anthropic/types/beta/beta_web_fetch_tool_20250910_param.py,sha256=-x2ZHqmiKfQOPoPnivNuJ2j3n-oNk-bdweMNXiG2Hmo,1775
367
+ anthropic/types/beta/beta_web_fetch_tool_20250910_param.py,sha256=TiotDTz1tLAbN9zv8EaFYMd0AjwCe6hsKtcR1oRMOeo,1850
364
368
  anthropic/types/beta/beta_web_fetch_tool_result_block.py,sha256=2xU16Q2_n6Zq98vlv1YxTpTZk8n7UZS_vMKslJywO8o,602
365
369
  anthropic/types/beta/beta_web_fetch_tool_result_block_param.py,sha256=mimTpFFFtDZWDPrG9e5A-2KoEfZblKyqMla7e-zzr6M,928
366
370
  anthropic/types/beta/beta_web_fetch_tool_result_error_block.py,sha256=JWP7NwNHIvw0K-OJ2TKWsIWBFV0HMAkdeu0CzA-cQXU,441
@@ -368,20 +372,20 @@ anthropic/types/beta/beta_web_fetch_tool_result_error_block_param.py,sha256=X9uE
368
372
  anthropic/types/beta/beta_web_fetch_tool_result_error_code.py,sha256=-kZjKVIUcmPnv15dDbYbs0Hr1xqj4X2LVW1V22A4oV0,436
369
373
  anthropic/types/beta/beta_web_search_result_block.py,sha256=8k1ltqF03HVb440Nvms4fRD1xKZmvbrFG-BHeot-SGU,405
370
374
  anthropic/types/beta/beta_web_search_result_block_param.py,sha256=pAKcEO3RC5clujQoGSAJOO2o1gpfsYzaebsZ6aIMOfk,484
371
- anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=o2VEZ-vKLfdXqc2dZlNNTRdliWnecz3x0JbhJhw4Kug,2117
375
+ anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=BxgN2G7NuXuvuW1HkXQnLuP3JwPP13X7DYS6oBOp144,2295
372
376
  anthropic/types/beta/beta_web_search_tool_request_error_param.py,sha256=PdRRrtIHg0P00ARhUekoCnlXXZ2H6K6F5wWmJJvKkNo,506
373
377
  anthropic/types/beta/beta_web_search_tool_result_block.py,sha256=Y4outQt1jPvujwwmUzoNH_d9FfYeRTw51_w6RCfmYMo,459
374
378
  anthropic/types/beta/beta_web_search_tool_result_block_content.py,sha256=qm77CYtUz5Owh934Uj5m0oLyCeJ6AoSZ_z3ZwrEi1qk,471
375
379
  anthropic/types/beta/beta_web_search_tool_result_block_param.py,sha256=xMpOFFqWTVI4ekQam6qTEC89Gx840182yLXWiPr0B6A,803
376
380
  anthropic/types/beta/beta_web_search_tool_result_block_param_content_param.py,sha256=gU46iUwyD-LxpaiiUzQbzc4JlhuPiPYaC11VtvTv-B0,576
377
381
  anthropic/types/beta/beta_web_search_tool_result_error.py,sha256=toGXIgam7ot0rRMjlnK6VuhGuyv-HmeaHjbkFHMdcGs,437
378
- anthropic/types/beta/beta_web_search_tool_result_error_code.py,sha256=xQIAbW9lsfIVfFc9-SUm7apcQZqognGQP6kaFgWF3Wg,342
382
+ anthropic/types/beta/beta_web_search_tool_result_error_code.py,sha256=_TFAKE0LOq4moCUNXpZJxtlPZlAg76TQeN6BbuWoYbc,363
379
383
  anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj61kT4Ef0,437
380
384
  anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
381
385
  anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
382
386
  anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
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
387
+ anthropic/types/beta/message_count_tokens_params.py,sha256=sWYqm9eXwu10urJtU25Z9M8dIVc9CKl1-CMVc8JDOUU,10232
388
+ anthropic/types/beta/message_create_params.py,sha256=3DVZ38jJuMvU750hYHueVPx6ne5MdA7WMTDH9N1WXmA,12268
385
389
  anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
386
390
  anthropic/types/beta/parsed_beta_message.py,sha256=CEV3z-GnMP1krjr0uOIcgx3bg3mminDhoX0KxYlpGes,2464
387
391
  anthropic/types/beta/skill_create_params.py,sha256=5oyHKyq_Fll_J4PwvxLnI7Jn-ThqfKISSlVClK3AIgQ,978
@@ -391,14 +395,14 @@ anthropic/types/beta/skill_list_params.py,sha256=BEzzX3nWpA-EAKx8UIm0_vjcJzDRxWO
391
395
  anthropic/types/beta/skill_list_response.py,sha256=jImI_kPHYQ8LHtlzkwD9qjBJHAHps8oLzEJzsarg7nM,1157
392
396
  anthropic/types/beta/skill_retrieve_response.py,sha256=MFbkjMKP3a0H38tpsZ4bWZZYLue6eNstgezFJWROROI,1165
393
397
  anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
394
- anthropic/types/beta/messages/batch_create_params.py,sha256=5cKmeZLBTUsRyz9FJXXkrZfurdKjHIXMWElrAVJ3SCI,1569
398
+ anthropic/types/beta/messages/batch_create_params.py,sha256=AOe96ut8yVSocqJU014sEsNFqDm5isnWXdgr8EEX1ZQ,1359
395
399
  anthropic/types/beta/messages/batch_list_params.py,sha256=_pVFBKhuHPJ3TqXiA9lWO_5W9bjVG291SRCc5BruLuY,978
396
400
  anthropic/types/beta/messages/beta_deleted_message_batch.py,sha256=fxnXySfpTxvxxpB0RPYXPcle6M17Bv4LCeMfDguCFaU,438
397
401
  anthropic/types/beta/messages/beta_message_batch.py,sha256=xvKuMyh5ozZWi9ZNQG7MChZ69rd7cWunUU1WhgMsJIo,2437
398
402
  anthropic/types/beta/messages/beta_message_batch_canceled_result.py,sha256=ZUHa9QvKPR70pTQ4X-yOgkc0OJnXKBapxeFnmf9ndLo,287
399
403
  anthropic/types/beta/messages/beta_message_batch_errored_result.py,sha256=3r02yXJd5eAc3IhJgLBqF1C-GvSx8siHWlJXFb8uOb8,367
400
404
  anthropic/types/beta/messages/beta_message_batch_expired_result.py,sha256=GuvILKoUDVK-mrOtzbnAnJft5ley6mrrpa4hpRRnkX4,284
401
- anthropic/types/beta/messages/beta_message_batch_individual_response.py,sha256=MtGq2L1WcndxZslN1kyIXk1kEBTone-DTz5fZSof0-4,828
405
+ anthropic/types/beta/messages/beta_message_batch_individual_response.py,sha256=7rqc5Rr24AiUFFqbLxHiX9V3GL_KD3LZqTAm66MsWwQ,949
402
406
  anthropic/types/beta/messages/beta_message_batch_request_counts.py,sha256=mVj3pgtfgLdOIaMgbPXF8zeh99QuQyPox89T-8g5wWQ,1003
403
407
  anthropic/types/beta/messages/beta_message_batch_result.py,sha256=aq-LfNiuRCBg9ZYloNUXRfQEEFJJE7LivWpXyZGIpyg,819
404
408
  anthropic/types/beta/messages/beta_message_batch_succeeded_result.py,sha256=y4apNvDRTbJ_ldkpM4tWikiw1o0gROnrITZ0d7Qozrg,355
@@ -417,7 +421,7 @@ anthropic/types/messages/message_batch.py,sha256=2Oxp1wiOkp22w_UvIkBL4cgwH-4IkZc
417
421
  anthropic/types/messages/message_batch_canceled_result.py,sha256=u2VevMap02v0B1fgXs8bhiBoc8obE2AWbKV7qd0vto0,278
418
422
  anthropic/types/messages/message_batch_errored_result.py,sha256=VnxtXDxONJTxZbCvl_8DefG-yR1pNLSIikZAfPac30A,351
419
423
  anthropic/types/messages/message_batch_expired_result.py,sha256=zntExk51haoLk2gGldTCCuhWJw8j-xv5DxOnx6GDyn4,275
420
- anthropic/types/messages/message_batch_individual_response.py,sha256=xfRMlzuYEOY2_E8vGhIsQ39NxBfgdRcT14v3wGPARks,806
424
+ anthropic/types/messages/message_batch_individual_response.py,sha256=CVCqRkKP4_RJhAnaQ4yJtmt5SzIroDzy-Cn4vMPflF0,927
421
425
  anthropic/types/messages/message_batch_request_counts.py,sha256=KL64Dp8ISD5KwxryYGzDR9xg4m6Ovm-6okaXHWRPcNA,994
422
426
  anthropic/types/messages/message_batch_result.py,sha256=VdNDHse9-8i5ogM2Si4Yp3cc73rMGlfDLJzNYdWbEAU,733
423
427
  anthropic/types/messages/message_batch_succeeded_result.py,sha256=k1ruBaFzaT6dnUxuelLpuFSOC__1EZ6Nni1sPHHeUUU,333
@@ -433,7 +437,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
433
437
  anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
434
438
  anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
435
439
  anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
436
- anthropic-0.75.0.dist-info/METADATA,sha256=pgyFT6h6MJ_WSF7r2Xe6sawR9APIDC6szgl3MivbOMo,28514
437
- anthropic-0.75.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
438
- anthropic-0.75.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
439
- anthropic-0.75.0.dist-info/RECORD,,
440
+ anthropic-0.77.0.dist-info/METADATA,sha256=oTqjLrVTMZLVOr4NzzidjlP7iGlt0oIsXKhKeJwYWIY,28630
441
+ anthropic-0.77.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
442
+ anthropic-0.77.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
443
+ anthropic-0.77.0.dist-info/RECORD,,