anthropic 0.63.0__py3-none-any.whl → 0.65.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 (56) hide show
  1. anthropic/_models.py +1 -1
  2. anthropic/_types.py +35 -1
  3. anthropic/_utils/__init__.py +1 -0
  4. anthropic/_utils/_transform.py +6 -0
  5. anthropic/_utils/_typing.py +5 -0
  6. anthropic/_version.py +1 -1
  7. anthropic/lib/streaming/_beta_messages.py +0 -1
  8. anthropic/resources/beta/messages/messages.py +19 -203
  9. anthropic/resources/completions.py +9 -9
  10. anthropic/resources/messages/messages.py +22 -204
  11. anthropic/types/__init__.py +1 -0
  12. anthropic/types/beta/__init__.py +53 -0
  13. anthropic/types/beta/beta_bash_code_execution_output_block.py +13 -0
  14. anthropic/types/beta/beta_bash_code_execution_output_block_param.py +13 -0
  15. anthropic/types/beta/beta_bash_code_execution_result_block.py +21 -0
  16. anthropic/types/beta/beta_bash_code_execution_result_block_param.py +22 -0
  17. anthropic/types/beta/beta_bash_code_execution_tool_result_block.py +20 -0
  18. anthropic/types/beta/beta_bash_code_execution_tool_result_block_param.py +25 -0
  19. anthropic/types/beta/beta_bash_code_execution_tool_result_error.py +15 -0
  20. anthropic/types/beta/beta_bash_code_execution_tool_result_error_param.py +17 -0
  21. anthropic/types/beta/beta_code_execution_tool_20250825_param.py +23 -0
  22. anthropic/types/beta/beta_content_block.py +4 -0
  23. anthropic/types/beta/beta_content_block_param.py +4 -0
  24. anthropic/types/beta/beta_raw_content_block_start_event.py +4 -0
  25. anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py +4 -2
  26. anthropic/types/beta/beta_server_tool_use_block.py +1 -1
  27. anthropic/types/beta/beta_server_tool_use_block_param.py +1 -1
  28. anthropic/types/beta/beta_text_editor_code_execution_create_result_block.py +13 -0
  29. anthropic/types/beta/beta_text_editor_code_execution_create_result_block_param.py +13 -0
  30. anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block.py +22 -0
  31. anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block_param.py +24 -0
  32. anthropic/types/beta/beta_text_editor_code_execution_tool_result_block.py +27 -0
  33. anthropic/types/beta/beta_text_editor_code_execution_tool_result_block_param.py +34 -0
  34. anthropic/types/beta/beta_text_editor_code_execution_tool_result_error.py +18 -0
  35. anthropic/types/beta/beta_text_editor_code_execution_tool_result_error_param.py +18 -0
  36. anthropic/types/beta/beta_text_editor_code_execution_view_result_block.py +22 -0
  37. anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py +22 -0
  38. anthropic/types/beta/beta_tool_param.py +3 -2
  39. anthropic/types/beta/beta_tool_union_param.py +2 -0
  40. anthropic/types/beta/beta_web_search_tool_20250305_param.py +4 -3
  41. anthropic/types/beta/message_count_tokens_params.py +3 -24
  42. anthropic/types/beta/message_create_params.py +3 -25
  43. anthropic/types/beta_error_response.py +3 -0
  44. anthropic/types/cache_control_ephemeral_param.py +11 -0
  45. anthropic/types/cache_creation.py +13 -0
  46. anthropic/types/completion_create_params.py +2 -1
  47. anthropic/types/message_count_tokens_params.py +1 -24
  48. anthropic/types/message_create_params.py +4 -26
  49. anthropic/types/shared/error_response.py +3 -0
  50. anthropic/types/tool_param.py +3 -2
  51. anthropic/types/usage.py +4 -0
  52. anthropic/types/web_search_tool_20250305_param.py +4 -3
  53. {anthropic-0.63.0.dist-info → anthropic-0.65.0.dist-info}/METADATA +1 -1
  54. {anthropic-0.63.0.dist-info → anthropic-0.65.0.dist-info}/RECORD +56 -36
  55. {anthropic-0.63.0.dist-info → anthropic-0.65.0.dist-info}/WHEEL +0 -0
  56. {anthropic-0.63.0.dist-info → anthropic-0.65.0.dist-info}/licenses/LICENSE +0 -0
anthropic/types/usage.py CHANGED
@@ -4,12 +4,16 @@ from typing import Optional
4
4
  from typing_extensions import Literal
5
5
 
6
6
  from .._models import BaseModel
7
+ from .cache_creation import CacheCreation
7
8
  from .server_tool_usage import ServerToolUsage
8
9
 
9
10
  __all__ = ["Usage"]
10
11
 
11
12
 
12
13
  class Usage(BaseModel):
14
+ cache_creation: Optional[CacheCreation] = None
15
+ """Breakdown of cached tokens by TTL"""
16
+
13
17
  cache_creation_input_tokens: Optional[int] = None
14
18
  """The number of input tokens used to create the cache entry."""
15
19
 
@@ -2,9 +2,10 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Optional
5
+ from typing import Optional
6
6
  from typing_extensions import Literal, Required, TypedDict
7
7
 
8
+ from .._types import SequenceNotStr
8
9
  from .cache_control_ephemeral_param import CacheControlEphemeralParam
9
10
 
10
11
  __all__ = ["WebSearchTool20250305Param", "UserLocation"]
@@ -39,13 +40,13 @@ class WebSearchTool20250305Param(TypedDict, total=False):
39
40
 
40
41
  type: Required[Literal["web_search_20250305"]]
41
42
 
42
- allowed_domains: Optional[List[str]]
43
+ allowed_domains: Optional[SequenceNotStr[str]]
43
44
  """If provided, only these domains will be included in results.
44
45
 
45
46
  Cannot be used alongside `blocked_domains`.
46
47
  """
47
48
 
48
- blocked_domains: Optional[List[str]]
49
+ blocked_domains: Optional[SequenceNotStr[str]]
49
50
  """If provided, these domains will never appear in results.
50
51
 
51
52
  Cannot be used alongside `allowed_domains`.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: anthropic
3
- Version: 0.63.0
3
+ Version: 0.65.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
@@ -6,17 +6,17 @@ 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=VEovOb5ek_pfb-KvxfBpCYYUszw2KMUT6x_zzUzCLzk,31387
9
+ anthropic/_models.py,sha256=gazGxmyphT7CHS3bFVhdkhS0rsx2iyVVcpXkN4TXtHc,31389
10
10
  anthropic/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
11
11
  anthropic/_resource.py,sha256=FYEOzfhB-XWTR2gyTmQuuFoecRiVXxe_SpjZlQQGytU,1080
12
12
  anthropic/_response.py,sha256=1Y7-OrGn1lOwvZ_SmMlwT9Nb2i9A1RYw2Q4-F1cwPSU,30542
13
13
  anthropic/_streaming.py,sha256=vn8K5KgfO3Bv9NE8nwHIQEjEhkQeVE6YMnGqiJlCgqE,14023
14
- anthropic/_types.py,sha256=WeAcP68yMpfs3hNEltM_k2nYMiG4xda4cFdf5kHbjP8,6299
15
- anthropic/_version.py,sha256=AA2DKv87__ZSNGCHpn_sg6tWbLXFvFAGJc9Eb7dyFwA,162
14
+ anthropic/_types.py,sha256=PwAzwWTKp9b08FTllhWjQPX_-8CLXWh6U-9atpUYHxg,7398
15
+ anthropic/_version.py,sha256=ikqCFO1tZh83TLNXRp_eDM1t2ZnWRapAZRTMTaIkH2o,162
16
16
  anthropic/pagination.py,sha256=hW6DOtNbwwQrNQ8wn4PJj7WB2y_37szSDQeUBnunQ40,2202
17
17
  anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  anthropic/_decoders/jsonl.py,sha256=KDLw-Frjo7gRup5qDp_BWkXIZ-mFZU5vFDz0WBhEKcs,3510
19
- anthropic/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
19
+ anthropic/_utils/__init__.py,sha256=QMTNChOzCs5KF_NTxyb5XpFyyfmHiQASrFovz3dHmK8,2104
20
20
  anthropic/_utils/_httpx.py,sha256=buTjMcUfp_KBTwIPStAD0mx1PreJIHn10if9y__wBeY,2094
21
21
  anthropic/_utils/_logs.py,sha256=R8FqzEnxoLq-BLAzMROQmAHOKJussAkbd4eZL5xBkec,783
22
22
  anthropic/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
@@ -24,8 +24,8 @@ anthropic/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmE
24
24
  anthropic/_utils/_resources_proxy.py,sha256=Y6WaTfDzBlt-GXVlTQLlIjpkSZZ8fRlMzXuRBh64CrA,604
25
25
  anthropic/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
26
26
  anthropic/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
27
- anthropic/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
28
- anthropic/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
27
+ anthropic/_utils/_transform.py,sha256=Owrq-VLQMnGwPwOYHRLnnRTZTaGn1DJYSD2YROB23CU,15894
28
+ anthropic/_utils/_typing.py,sha256=UAoN7JEd8A-T32Cju-dL5EyqWKO_ktG4VDQ3KOhzqG0,4787
29
29
  anthropic/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
30
30
  anthropic/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
31
31
  anthropic/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -40,7 +40,7 @@ anthropic/lib/bedrock/_client.py,sha256=kZDEdx07b4rXG81evFsWB5TgOqhRwsYoCBJTEkWz
40
40
  anthropic/lib/bedrock/_stream.py,sha256=wCS-1otwfIIVbfG3TFFKxTD-antJiTmprW6eAAGTCDA,871
41
41
  anthropic/lib/bedrock/_stream_decoder.py,sha256=gTlsTn0s6iVOL4Smp_inhDUBcOZuCgGgJib7fORbQWM,2551
42
42
  anthropic/lib/streaming/__init__.py,sha256=vV3U4VttIgWc3eNCSbdt1U1_pUnpi5pPJzSYcXX5zMk,980
43
- anthropic/lib/streaming/_beta_messages.py,sha256=1MQX63-9Q2Ks8zvHTAxDLgKLKX5doy7Rd6A1X5SkTmo,18260
43
+ anthropic/lib/streaming/_beta_messages.py,sha256=swDeDwTbhx33G_YjwTkusbij6CerLuWAT67XWPe9Z3k,18259
44
44
  anthropic/lib/streaming/_beta_types.py,sha256=fny8XN85afEG6of84YuaScr3U8UeMCJxqyfuTePHNbM,2131
45
45
  anthropic/lib/streaming/_messages.py,sha256=OSV9sjb8MLThSywEFXQV9OchcNXAE2KxDacVpJbkNRM,16958
46
46
  anthropic/lib/streaming/_types.py,sha256=CrR4948IWgUF7L9O0ase2QwbpiQ1JeiYXrRyVi74-Bw,2086
@@ -50,7 +50,7 @@ anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4
50
50
  anthropic/lib/vertex/_beta_messages.py,sha256=4fsV2F6TzB14DuHLo9k8i95vymcbixIPjsplqpsHfac,3399
51
51
  anthropic/lib/vertex/_client.py,sha256=bvemByz7HdwDIHMojcvBUN7khsI32jFglgtRVDH5o04,16619
52
52
  anthropic/resources/__init__.py,sha256=H0t_V-A_u6bIVmbAUpY9ZfgqoNIjIfyNpZz7hAiErIA,1583
53
- anthropic/resources/completions.py,sha256=lrht7C7OY4tNEHXGYUVkciCmnMXwYcte4myEQ7T75LI,37132
53
+ anthropic/resources/completions.py,sha256=dYTC5eGoyqrIjpgcVhqP6xeari-yc_RHiZyylXEI9a8,37228
54
54
  anthropic/resources/models.py,sha256=4iV-zSkb_b1iICRW9Lc-pEhZkpSANn5CS_q2Kmp3xws,12480
55
55
  anthropic/resources/beta/__init__.py,sha256=uP3kAv-GGcjuPJ6F9QM3a6g7vIiugm-iPecFTQdQUlg,1505
56
56
  anthropic/resources/beta/beta.py,sha256=UDgDxryFjxRx_amzcRdZBo9fWunU4EHfZnKF6FTe2Bs,5123
@@ -58,11 +58,11 @@ anthropic/resources/beta/files.py,sha256=q4V7iBnUDflYrG31oNPqY9ycXTF5oryMMBmrR7i
58
58
  anthropic/resources/beta/models.py,sha256=OsXRcsEHoNuj1VjhbFLeOYgE35DnUO8m4hTPF6zcs0Q,12594
59
59
  anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
60
60
  anthropic/resources/beta/messages/batches.py,sha256=6sbFpFCCRC-qN37-5n7lO3BzGXKGVaXhPv9y7Daj0-0,35990
61
- anthropic/resources/beta/messages/messages.py,sha256=Dd7qofd2C-DJBqqySwIbtrjjdnaMOA5Kdtnjq1KTbXM,122055
61
+ anthropic/resources/beta/messages/messages.py,sha256=OlRVKosYcpFW-zmrrZcwDRpKNI50GuB9pnahEEBx_YU,115891
62
62
  anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
63
63
  anthropic/resources/messages/batches.py,sha256=w_bNgg_NV4rFQkDeixJtRokimPIT3OVpimr8D8_7v5Y,28590
64
- anthropic/resources/messages/messages.py,sha256=ea_T-P7m6XWQ3mwyujhsxT7xvcDwb0ALbWFM2TVNzWs,115893
65
- anthropic/types/__init__.py,sha256=d1cg-Au73-TCjCtCXABVIsh_jEF44HxGp98siIx-css,9399
64
+ anthropic/resources/messages/messages.py,sha256=PBhZL3iuG-A0WhNcawR3pRtgL8fR8qSmAYsx48Mksi8,109831
65
+ anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
66
66
  anthropic/types/anthropic_beta_param.py,sha256=UyV6amEHP5EhVAxA_viLrdpX0YclbZtakiak-7XSayc,848
67
67
  anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
68
68
  anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
@@ -70,14 +70,15 @@ anthropic/types/beta_api_error.py,sha256=rr_VBxFp9VqNmVjTUokYzpkYRYvO9MVh_t406Bv
70
70
  anthropic/types/beta_authentication_error.py,sha256=3nxjZjiGWwxXzvbPVlShjk0x7-EMgvryJsZvprVID8A,301
71
71
  anthropic/types/beta_billing_error.py,sha256=6lg7924RmfVKxQymCZBjIWswsvMgAbmNpbRxV2I6r3c,280
72
72
  anthropic/types/beta_error.py,sha256=u7ppFd0RXvk0Ol7gU4kwKU_NTJXxl8cVY8xHAMozCvM,1075
73
- anthropic/types/beta_error_response.py,sha256=9FJznUO-RiuG1ad9TQKETTwYTIJcsMerxPwfhvzIixg,312
73
+ anthropic/types/beta_error_response.py,sha256=o5llWy_eOsp38lEQDIpZENvxsOPTMNyYVW1MjtQ-gZI,378
74
74
  anthropic/types/beta_gateway_timeout_error.py,sha256=Je01xyEyAT6Ol4GOD9TyOn26oIkILcWs0_xf4AjjqFE,294
75
75
  anthropic/types/beta_invalid_request_error.py,sha256=aT_hyszZwfj02rhdnqL9LcnPe1if-RqgwmsqMO8ML2Q,302
76
76
  anthropic/types/beta_not_found_error.py,sha256=Oyc2bXxB1n_q1wm9ejJHY-TBCIdNL-Sl8-yilT61b_0,284
77
77
  anthropic/types/beta_overloaded_error.py,sha256=TPBl-7AuTOj0i2IcB8l8OAYBsJE-WjxzyKGlKh0eeeI,289
78
78
  anthropic/types/beta_permission_error.py,sha256=OU90hnoOaVLxiP_dwYbROdt25QhSZjuhKbVdTNx3uAM,289
79
79
  anthropic/types/beta_rate_limit_error.py,sha256=-I0edM31ytNCWnO5ozYqgyzC92U7PfJbFvaACSEP7zs,287
80
- anthropic/types/cache_control_ephemeral_param.py,sha256=-poqnL5puq-uzfZsV029kZMgCKPF5rRQn2seG_Jpwds,325
80
+ anthropic/types/cache_control_ephemeral_param.py,sha256=q03wMTU8_TtKBXTlVJH6N36yIPmv4iRblwgvlZ0LLBA,529
81
+ anthropic/types/cache_creation.py,sha256=Br9XkoKHTr-2DpKCOBkDAzf5bPxQiYBCemHZvXRPY9M,407
81
82
  anthropic/types/citation_char_location.py,sha256=1PmYQ4NkEgmhJPOv6m7XhcXtd0myp-gHvgtyQ0Uws-s,473
82
83
  anthropic/types/citation_char_location_param.py,sha256=9tk6PgA-ktMZ21A1PeWgidXQjaW7cIE2ETKFGWc-6tE,538
83
84
  anthropic/types/citation_content_block_location.py,sha256=wF2H_nZcZ7XVlc2n6ZzTsdxuh55h6lUIVEI38SXWGgw,500
@@ -91,7 +92,7 @@ anthropic/types/citations_delta.py,sha256=1lnPGh4nfooE90rqBRNonwGvHPuyzF7-Rs76LH
91
92
  anthropic/types/citations_search_result_location.py,sha256=9UN4QljowQ9p3NVWHiGn_vuh1BTrqQhNU3ijiZ9Atms,480
92
93
  anthropic/types/citations_web_search_result_location.py,sha256=rxbcJmhqPa394V5253XDKWtphNklZq44RsKhs8_d_xg,429
93
94
  anthropic/types/completion.py,sha256=rwyZeILWQMjzTaYA7wNOJFYQrTobiGt5gsxIpD7ejdI,1151
94
- anthropic/types/completion_create_params.py,sha256=g7Ul00vlxm8lHUKc3bB45dEfjGiiEAGuFgahS-eeUFY,4809
95
+ anthropic/types/completion_create_params.py,sha256=JVNzvlwgDnw08qeeah7dy1rod5518ztXV8jsF0vG2pM,4855
95
96
  anthropic/types/content_block.py,sha256=GecBwRGBTdWLlBkEox1b6ukKD0r6_4Gxbu__9m4FE-Q,723
96
97
  anthropic/types/content_block_delta_event.py,sha256=Y1wLLQioHYK25FeFYMHv0ya2MrOw26iFSksZwnK9eHs,310
97
98
  anthropic/types/content_block_param.py,sha256=oBRgNTe1-bW6SOmpV9GJXlmBynzu77qSJQN47Y7bOUI,1108
@@ -103,9 +104,9 @@ anthropic/types/document_block_param.py,sha256=IiFFBmvMZq85VAdcucrxjfK-sGTzYtgnJ
103
104
  anthropic/types/image_block_param.py,sha256=qIh7kE3IyA4wrd4KNhmFmpv2fpOeJr1Dp-WNJLjQVx0,770
104
105
  anthropic/types/input_json_delta.py,sha256=s-DsbG4jVex1nYxAXNOeraCqGpbRidCbRqBR_Th2YYI,336
105
106
  anthropic/types/message.py,sha256=Uy4ZsxH0RNE4u2cBrVjsgeQyHg7To9yHBvNBTZk6MqA,3530
106
- anthropic/types/message_count_tokens_params.py,sha256=W2yCNHiqvTqV5drWFEJiMwc52vdLLKFdag-BT3sSerY,7357
107
+ anthropic/types/message_count_tokens_params.py,sha256=8oQlU7YTfm1zmc6Jwb_FfGmPF-DgBdx5dQUHTb8--ac,6772
107
108
  anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXltzyblbEbVu6MxbitTfet4k,840
108
- anthropic/types/message_create_params.py,sha256=8vIp6b6wCFiHGS0rW1Ay8RTEhtVU3IT1_zHQ7jBeIVE,11624
109
+ anthropic/types/message_create_params.py,sha256=5fZ3GZjhb-yvOlDZSVcWiXtnm77x0yp_ilM7IIBAAQ8,11079
109
110
  anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
110
111
  anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
111
112
  anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
@@ -152,7 +153,7 @@ anthropic/types/tool_choice_auto_param.py,sha256=F6ZzaVnXZgCa9AxEddyHu_xsO5sK4n-
152
153
  anthropic/types/tool_choice_none_param.py,sha256=druYe_74R1D92_ZPvJfbapBXjXMPXwQToAm-Wwukac0,306
153
154
  anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
154
155
  anthropic/types/tool_choice_tool_param.py,sha256=61mEbvhxU4oGKxTlcFt1RBUzHPIIuWgQynrn49_HKZY,552
155
- anthropic/types/tool_param.py,sha256=CiU_bpBntP6-GknQKuI0ghI1CpsMAQWkrVAbLSbvdno,1614
156
+ anthropic/types/tool_param.py,sha256=9VaIuk1lshZRtNwuACIRRYGSH_4E-yi7PEozOqEx3Vs,1654
156
157
  anthropic/types/tool_result_block_param.py,sha256=p-NvDniVgdPjmZ5bIhNcpTTUitKEwFnWWU-q1U1nwvM,912
157
158
  anthropic/types/tool_text_editor_20250124_param.py,sha256=uZU1b3qkuAMf_WnyPd_SyEO7iQXY75-XEYBP1JkGu4U,725
158
159
  anthropic/types/tool_text_editor_20250429_param.py,sha256=2laqI5jBBNignFGJhwyOWoRFjFiMAMTApJLJhcW11Lk,734
@@ -162,20 +163,28 @@ anthropic/types/tool_use_block.py,sha256=qIzJL6pN2zho5RjCYiHnUaPFbQKpRWVIbxIlzAz
162
163
  anthropic/types/tool_use_block_param.py,sha256=NmmecN-YJ4aBEl4YFEmO4aNyPE3M0SOoQL6NA0djxFE,606
163
164
  anthropic/types/url_image_source_param.py,sha256=jhgWbgwFgChO8v_XZzuMpuv2u3E0R8zISam8WbVwXyw,329
164
165
  anthropic/types/url_pdf_source_param.py,sha256=knFb8DFOWlrFFYwXnZbQx8tqejjWbPQjn3euIWPBMKk,325
165
- anthropic/types/usage.py,sha256=x0jo3NbFfPcsWF7PjakIylQidqJmj1x9EL01uXYTQmQ,915
166
+ anthropic/types/usage.py,sha256=FPIepQO8jXFHX3RM2HuN-hWLz6y3UOyC4lnJRQxOSZY,1053
166
167
  anthropic/types/web_search_result_block.py,sha256=Y8-r0n86qKex4eonDCKre4mS1w7SXleuOFMCT6HmpHU,396
167
168
  anthropic/types/web_search_result_block_param.py,sha256=AbQnJIyfQYHSOEUYxBCGuZNqP5hmpFZI_1SxyD5QC8A,476
168
- anthropic/types/web_search_tool_20250305_param.py,sha256=WACn4i31vhmX0NdfodNcUmzvZA85xEUVwm4LVLwdkTM,1779
169
+ anthropic/types/web_search_tool_20250305_param.py,sha256=GB91ImdTWjK8BsrhEoc0oCZDes_CwUv2t4Wo0zlm2Xs,1829
169
170
  anthropic/types/web_search_tool_request_error_param.py,sha256=nCRDcI1Ffc2gznp_ezMGQsSfgXH9wGEzrTm6X_aCumM,498
170
171
  anthropic/types/web_search_tool_result_block.py,sha256=-E5RRLn9EznUyxJQNkThIoLEgW-eMzBJDvfA2rO3oDY,437
171
172
  anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTduZkNgyWFZAiG7kYamPGqwpCffk,437
172
173
  anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
173
174
  anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
174
175
  anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
175
- anthropic/types/beta/__init__.py,sha256=G3IzbsvfCDrGfKb-EasXm6BVRmQoi_Agkn7gRjV9yKY,12068
176
+ anthropic/types/beta/__init__.py,sha256=-essHkiV6eOfHmYPE_hELzs6x72u87uscSruSx58DsE,15073
176
177
  anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
177
178
  anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
178
179
  anthropic/types/beta/beta_base64_pdf_source_param.py,sha256=EeDrTSoJ0TtH2YfimFHtvwMURQ0rbStvrAEVevCnkSs,699
180
+ anthropic/types/beta/beta_bash_code_execution_output_block.py,sha256=3HnSSH_XDKQKbp1Twg_szNHXVxoeVX6EwbLJ_V2nqEg,326
181
+ anthropic/types/beta/beta_bash_code_execution_output_block_param.py,sha256=MvZUE4MZdIccAf5_QmLKsvHnocVr-o8iqdrXvQ3idU8,392
182
+ anthropic/types/beta/beta_bash_code_execution_result_block.py,sha256=PSoGRNzfr045Q9jpEk7PxzrbQCD1x6WHDdfI6QO8rn4,525
183
+ anthropic/types/beta/beta_bash_code_execution_result_block_param.py,sha256=Ot2MyAQplQR5FGemJEWVSoVG_86g4KDu-nodzod7R4k,646
184
+ anthropic/types/beta/beta_bash_code_execution_tool_result_block.py,sha256=eem9jC9gHmHfG-pu27kLZAoMEhdOYcdZ0F8GJbUyuDY,689
185
+ anthropic/types/beta/beta_bash_code_execution_tool_result_block_param.py,sha256=f7Mesx4pldLNeGeSkD2Sm-3YdBCdtNVZDwNDIsEwx1o,1015
186
+ anthropic/types/beta/beta_bash_code_execution_tool_result_error.py,sha256=opjX2RTHSrF51gMTnn_0zUhoNWmNxvy7g10jc22p8ZI,476
187
+ anthropic/types/beta/beta_bash_code_execution_tool_result_error_param.py,sha256=FApBEL4XyZNtOgpVpahyolzeLrQy2RMKKJBFrmotTvU,564
179
188
  anthropic/types/beta/beta_cache_control_ephemeral_param.py,sha256=l_knz_Mf0KnXkhO47kRp7AW_5WwJZV8kIjE-8JSRPDc,537
180
189
  anthropic/types/beta/beta_cache_creation.py,sha256=zqVV6J8sxETdrrOLmPQVMAsxnLptcz-ESpHeJcXrzpo,416
181
190
  anthropic/types/beta/beta_citation_char_location.py,sha256=GoAYqL-EFKVJyGSpBR6AmziTRB320dUM-1lR3j17iwQ,482
@@ -195,6 +204,7 @@ anthropic/types/beta/beta_code_execution_output_block_param.py,sha256=EOtPBBkd-A
195
204
  anthropic/types/beta/beta_code_execution_result_block.py,sha256=9xSRmN5jLtLU7i8OykIZ2avIyaQYN-AaruG6iH2-H80,499
196
205
  anthropic/types/beta/beta_code_execution_result_block_param.py,sha256=ntPk_c1f0xjvW-8EKinOJAyWhKsfwyPrwcxMbK8-0t8,620
197
206
  anthropic/types/beta/beta_code_execution_tool_20250522_param.py,sha256=3yyZY8qQzTVlTbjWpF-PkvVI22FdGYh3qbLIr67PuiY,751
207
+ anthropic/types/beta/beta_code_execution_tool_20250825_param.py,sha256=L24yiWjS1wlAaiOKc4kSS-dh8vJbYXNUsRJifpDjkXM,751
198
208
  anthropic/types/beta/beta_code_execution_tool_result_block.py,sha256=bheDD2Kv4yg7l2l68FQasijI_T3Cu6MtRwQ97KvOWj0,483
199
209
  anthropic/types/beta/beta_code_execution_tool_result_block_content.py,sha256=yzd-4lPmzMcv_NKxzgxZFMW2fdMa9cN25IsKkduzxo0,497
200
210
  anthropic/types/beta/beta_code_execution_tool_result_block_param.py,sha256=lYwrz8FSWbvM7_806rRTMY4dVHOS1QzBVRQGAXTty38,827
@@ -205,8 +215,8 @@ anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_
205
215
  anthropic/types/beta/beta_container.py,sha256=YhzjG6KsxwareMzDRnn9g8wobw_FMYsYWrFR16h0V54,367
206
216
  anthropic/types/beta/beta_container_upload_block.py,sha256=T-W7H8tlzin7_b_A6-hHxBBi9qJk0H7M-2JK_pnXyXE,300
207
217
  anthropic/types/beta/beta_container_upload_block_param.py,sha256=rqPN69iuHa6elrNfy-x_pMrm-xOLh_PTmqBrFhKzbhA,602
208
- anthropic/types/beta/beta_content_block.py,sha256=EI9_umSsMdjn6Wlo-zn4nOZvyC2j2YUscwPWaONnHYE,1272
209
- anthropic/types/beta/beta_content_block_param.py,sha256=Mn939tHXdsm5CWEad4kZIC3Uckm-_B4FYqjX_48yWYY,1745
218
+ anthropic/types/beta/beta_content_block.py,sha256=7OfQLCW857sVlLgRKEIO3cPkEHtvbsBZTJxdLtYcIgQ,1569
219
+ anthropic/types/beta/beta_content_block_param.py,sha256=OARMmfH5SgMEVGndRSm5FzvmhG31tfgSgJ1I4zEB9Vs,2066
210
220
  anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
211
221
  anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnhtEN_1dGYC7b1vakKpdLiX87pFhU,530
212
222
  anthropic/types/beta/beta_file_document_source_param.py,sha256=a5_eicJChOrOoBr7MIVj5hA-MZFs1syo5Oi8W_Jv1_4,350
@@ -225,7 +235,7 @@ anthropic/types/beta/beta_model_info.py,sha256=hFbhNT1THKUqBKYEB0QvtQ1UBVgcoO_dt
225
235
  anthropic/types/beta/beta_plain_text_source_param.py,sha256=5VW_apR2n3-G6KmDq6b58Me7kGTcN2IAHAwsGbPrlVQ,390
226
236
  anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h8AbwryMo9HXw4mNnrmv7Krg,690
227
237
  anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
228
- anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=WQu222lTUDsyGkQNoHKADlV0CC7PY5FI8ECdn400aj0,1542
238
+ anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=0OZuBY9hFvqqivaVEgXKhSm_CT2BAWX3-mPAbHCnr5E,1839
229
239
  anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
230
240
  anthropic/types/beta/beta_raw_message_delta_event.py,sha256=o4gGROi2CmzPQhZ1ZVlXYQWWzDbg9YqbjgCv_Jdpat4,1505
231
241
  anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
@@ -234,13 +244,13 @@ anthropic/types/beta/beta_raw_message_stream_event.py,sha256=8Aq-QAF0Fk6esNiI_L4
234
244
  anthropic/types/beta/beta_redacted_thinking_block.py,sha256=DVNuN59cCWpVBFWTYvE5fVPwBEb1LRF27d-BHVgApJI,300
235
245
  anthropic/types/beta/beta_redacted_thinking_block_param.py,sha256=BTpab5mqgUtlSgtXTPap0x8HpqVAyTvLoB3pf6o1TqI,366
236
246
  anthropic/types/beta/beta_request_document_block_param.py,sha256=deG7Q4pEfvug7SSDymWF-VkWypcXxFfOtzmlG20BgH8,1309
237
- anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py,sha256=6b68FWIzMSOKwK7-AunnNPhgRCRlMwv4u_rPfpDdfek,399
247
+ anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py,sha256=CFIzeyT9ni1lBMCUzIwkyp8D_6ry9MmWLaPhMQByVMA,441
238
248
  anthropic/types/beta/beta_request_mcp_server_url_definition_param.py,sha256=j8N0ixvGHFheT2KqqI64HKufHmVST9VcJgShtlkPzUw,644
239
249
  anthropic/types/beta/beta_request_mcp_tool_result_block_param.py,sha256=xK9SY8bmetn-LWN4hks8KDbeh2WiF0pttcCXsB99v84,761
240
250
  anthropic/types/beta/beta_search_result_block_param.py,sha256=uqzKu_6YVDRe6rIbVSmfvQE7YleyRfa_UncwI2k3cuI,842
241
251
  anthropic/types/beta/beta_server_tool_usage.py,sha256=2QfadWgy4RRhlsFLwZkoPzRssC_D-u0Fm79TF5Y0ouY,274
242
- anthropic/types/beta/beta_server_tool_use_block.py,sha256=FRIibiPAybiYqVIRnRbBjoq82jJPT1xixjLoDtS_Q_s,360
243
- anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=hIa2I-TDOkZnZgpszLRY-BiIn7i9KuRRXMa03Jkg4_0,682
252
+ anthropic/types/beta/beta_server_tool_use_block.py,sha256=t1hk-lMwjpDosGvIXmKweIB7S7nvF_TWJ4F85T9PVwA,413
253
+ anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=O-PVvzL0KfHyjEcleHyoAdS8ZnKL-ieXth7R85DFPoI,735
244
254
  anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
245
255
  anthropic/types/beta/beta_stop_reason.py,sha256=K128DdKu6vMjONi6uAqKpbdoOLqUYRoOapg8jZV0Z0E,283
246
256
  anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
@@ -248,6 +258,16 @@ anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze
248
258
  anthropic/types/beta/beta_text_citation.py,sha256=Ia_-kJ48QQ4ZN5AeWbCSCzAFwNXjVM4LHf-5-jyBJog,921
249
259
  anthropic/types/beta/beta_text_citation_param.py,sha256=QuBFgo1xfMkUl3mwWI5FDTRYA-VJ27SpE7ORpyUoTJs,916
250
260
  anthropic/types/beta/beta_text_delta.py,sha256=EUXMXCQ7Mk8BnGQzm-kKqIqo5YbbdGLoAlrNLxUxS-0,269
261
+ anthropic/types/beta/beta_text_editor_code_execution_create_result_block.py,sha256=nrQ5lljIQNk_JE4Dw8o5CnT0dY964K_BReTmQj4E4PA,372
262
+ anthropic/types/beta/beta_text_editor_code_execution_create_result_block_param.py,sha256=Y6WowYJPKPDJDQMTp-7cvwe4gU0GD1Q4ei81YhEFs3w,438
263
+ anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block.py,sha256=gHQ37oPSQ7c0QmUF7XZ6dcbTxHc2aXCg-2Ae6siPQH0,580
264
+ anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block_param.py,sha256=9FwvDVXX4XsXEwEyCRDyocwHzXjq09zjfiboffnAv-U,643
265
+ anthropic/types/beta/beta_text_editor_code_execution_tool_result_block.py,sha256=_lizxYlA7Tz_9mBAAn7aWPw7tYPGJLoj8MNNyVBO_2w,1103
266
+ anthropic/types/beta/beta_text_editor_code_execution_tool_result_block_param.py,sha256=JymZQHQESONFiTbUU3FrKMHVx_8OsvwbcVNIBwuEB_g,1470
267
+ anthropic/types/beta/beta_text_editor_code_execution_tool_result_error.py,sha256=McC6A7nU3QViJV7lLbGywNmUTDiriwvMtYJ_0g-AV1s,557
268
+ anthropic/types/beta/beta_text_editor_code_execution_tool_result_error_param.py,sha256=xCA1RzA_5nMGpp4_Cpa9sUgkqHr9Iko7I4Gx1OLbXkc,616
269
+ anthropic/types/beta/beta_text_editor_code_execution_view_result_block.py,sha256=Lh93HQ4NjV-1OUqXcRF-ffG9XU0LnxeUhIpqwQiTDL8,548
270
+ anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py,sha256=P9UB7HVx7ordu7YZ6M4EceO3yG-OwtrDyHolPe_EIc0,603
251
271
  anthropic/types/beta/beta_thinking_block.py,sha256=R-w0ZLaNZzELS2udP0vtxtDmE2MgNcf5gXz9FyMQVEg,299
252
272
  anthropic/types/beta/beta_thinking_block_param.py,sha256=tiOk592SxRHZ77nDIpLuocz35B_1yB3qbr7MTZqhnEA,375
253
273
  anthropic/types/beta/beta_thinking_config_disabled_param.py,sha256=tiVjV6z1NxDUdyl43EpEz3BRIFhDG2dQCjcBYjRc54o,334
@@ -263,13 +283,13 @@ anthropic/types/beta/beta_tool_choice_param.py,sha256=kJnRD1gWzx_NPpyfMShZtoXrUc
263
283
  anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=TYPA4HbTZrSBcDsMnsk86c0HqBYrkoN71TQq_7yNV4k,560
264
284
  anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=AjucXClRInpVVEhI2VnXwICpNCVlysr0YD4w32y56lg,1000
265
285
  anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=BIHpALLErLWvFA4Scv4ntAa8NSSmE2WA_EV9DCN6Udw,1000
266
- anthropic/types/beta/beta_tool_param.py,sha256=SAhBY4jZFiIQhxG-VbdPwwuAGOnzRwOuadGzYr7X-AA,1534
286
+ anthropic/types/beta/beta_tool_param.py,sha256=iUoPeB4GONzgEc3PstF2xPh9svwGqMWyo3K8V2zR988,1575
267
287
  anthropic/types/beta/beta_tool_result_block_param.py,sha256=g-4YcaWURLDwBVFu5k-cD9eCmYMMLcZsOBMb3TQCOas,972
268
288
  anthropic/types/beta/beta_tool_text_editor_20241022_param.py,sha256=z4plQ-egA85ettWcQm3sptpiBv3EYL1VbtrL2fldtTM,746
269
289
  anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=PqRpXlK9TqHPOcF5SRkGSeWc793QMNUztuIQKoGHyoI,746
270
290
  anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=2skxGp7C7fwrecE2dS22FPRXhxRF8VMQS4K5cNT-fbA,755
271
291
  anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=Y9Kx_C2XZQ0BmXoOUEunVJeb7FnGTWH9egNc-S9lzqI,927
272
- anthropic/types/beta/beta_tool_union_param.py,sha256=OgmPvgww57upg60_Df6Q6Q9FNQKBrmMiycYIkPHC7So,1491
292
+ anthropic/types/beta/beta_tool_union_param.py,sha256=1dHhf5cu3cGhXtn8DmHlIwQv94ML3A25MhhZF4tXybM,1619
273
293
  anthropic/types/beta/beta_tool_use_block.py,sha256=y1Y9ovht2t-BlJDqEOi_wk2b2XAIb2J_gkyIdzZM8fY,305
274
294
  anthropic/types/beta/beta_tool_use_block_param.py,sha256=eZvSxb6yvh_eLY0SSoN0pFSGGLxU4yJEv3nyMYZ7zBA,627
275
295
  anthropic/types/beta/beta_url_image_source_param.py,sha256=pquhkw8b13TbwhXA6_dMkPP-7vxYfbbXbjV_BVx_0ZY,337
@@ -277,7 +297,7 @@ anthropic/types/beta/beta_url_pdf_source_param.py,sha256=Ox2U0GM60MJgQBec8NKPw49
277
297
  anthropic/types/beta/beta_usage.py,sha256=H0PAOPwTs8V2myo89yCS9vG78hCIv39ooGza39N-nB8,1088
278
298
  anthropic/types/beta/beta_web_search_result_block.py,sha256=8k1ltqF03HVb440Nvms4fRD1xKZmvbrFG-BHeot-SGU,405
279
299
  anthropic/types/beta/beta_web_search_result_block_param.py,sha256=pAKcEO3RC5clujQoGSAJOO2o1gpfsYzaebsZ6aIMOfk,484
280
- anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=oCn2sQI4F01cBr8938oDJ8EsBcz9VbgTbLuUo_fsz5Q,1800
300
+ anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=PxvB_MdxWD1XEa1YH-Jmmse9cJXjJR4rNt2ZhpT0n20,1851
281
301
  anthropic/types/beta/beta_web_search_tool_request_error_param.py,sha256=PdRRrtIHg0P00ARhUekoCnlXXZ2H6K6F5wWmJJvKkNo,506
282
302
  anthropic/types/beta/beta_web_search_tool_result_block.py,sha256=Y4outQt1jPvujwwmUzoNH_d9FfYeRTw51_w6RCfmYMo,459
283
303
  anthropic/types/beta/beta_web_search_tool_result_block_content.py,sha256=qm77CYtUz5Owh934Uj5m0oLyCeJ6AoSZ_z3ZwrEi1qk,471
@@ -289,8 +309,8 @@ anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj6
289
309
  anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
290
310
  anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
291
311
  anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
292
- anthropic/types/beta/message_count_tokens_params.py,sha256=nDSyU4YTWp492rgUDMWoKCfeuCSjpLnPKZGBlb-FRhs,9071
293
- anthropic/types/beta/message_create_params.py,sha256=DfgTqYZN2E3gFwoxy956a_FfuoEfITDteNBm_Jxw5Gs,11359
312
+ anthropic/types/beta/message_count_tokens_params.py,sha256=YGOmzNJRPLI1jiKRiMLSjTWVoQysD1xlM-1qmKh7d_M,8614
313
+ anthropic/types/beta/message_create_params.py,sha256=aJy6wb5qCYhIfgFg9NQREQDxg8cwoOW5KAam6Vnawro,10821
294
314
  anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
295
315
  anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
296
316
  anthropic/types/beta/messages/batch_create_params.py,sha256=evapYsPHKVs2zrWZQpgVDpZIn2bMrk7Z7P03T8Go1c0,1336
@@ -321,14 +341,14 @@ anthropic/types/shared/api_error_object.py,sha256=7AY_Fus-yBeLhaCFix39VFV0DHSrUp
321
341
  anthropic/types/shared/authentication_error.py,sha256=XcEcXJLosZ4WSOdzTjsE4W6Yfik0BnGJhRKMd8sPGsc,294
322
342
  anthropic/types/shared/billing_error.py,sha256=yKzFXPOWicwm9b3VSMiTPe9B__FUJeGcv0e0heam9ug,273
323
343
  anthropic/types/shared/error_object.py,sha256=mGgRyJgHP7mtVojlSfxz08s8l9EzXXQ4_67-jY-ssxA,982
324
- anthropic/types/shared/error_response.py,sha256=ee8Yphf3YLcwnPCr0wb-I2NKRm2wdbqhp7XFOpsx6PM,311
344
+ anthropic/types/shared/error_response.py,sha256=v9tmfnrglq2xsyzOIL4CmEavVt7M81jX0AOff58kg9g,377
325
345
  anthropic/types/shared/gateway_timeout_error.py,sha256=-SPRDz7gzUHtrRLC_E7B0waG9ESbVEx1Jhwyerr8yCo,287
326
346
  anthropic/types/shared/invalid_request_error.py,sha256=RsNA8WGtbXBVpOE6OiH0Q_Za_lE9WOFjxWhFkvUiWKg,295
327
347
  anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA6hLvzzSqIKlQ,277
328
348
  anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
329
349
  anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
330
350
  anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
331
- anthropic-0.63.0.dist-info/METADATA,sha256=NBbDAsLZcaenqpBrT2ITxsl_GNlQrPuICeKmLzIKdas,27053
332
- anthropic-0.63.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
333
- anthropic-0.63.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
334
- anthropic-0.63.0.dist-info/RECORD,,
351
+ anthropic-0.65.0.dist-info/METADATA,sha256=8VHRfilbkMCeB5EODuf-j7iJcuTtTuX2G-AybN8kDno,27053
352
+ anthropic-0.65.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
353
+ anthropic-0.65.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
354
+ anthropic-0.65.0.dist-info/RECORD,,