anthropic 0.64.0__py3-none-any.whl → 0.66.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.
- anthropic/_models.py +1 -1
- anthropic/_types.py +35 -1
- anthropic/_utils/__init__.py +1 -0
- anthropic/_utils/_transform.py +6 -0
- anthropic/_utils/_typing.py +5 -0
- anthropic/_version.py +1 -1
- anthropic/lib/streaming/_beta_messages.py +0 -1
- anthropic/resources/beta/messages/messages.py +19 -203
- anthropic/resources/completions.py +9 -9
- anthropic/resources/messages/messages.py +20 -204
- anthropic/types/beta/__init__.py +53 -0
- anthropic/types/beta/beta_bash_code_execution_output_block.py +13 -0
- anthropic/types/beta/beta_bash_code_execution_output_block_param.py +13 -0
- anthropic/types/beta/beta_bash_code_execution_result_block.py +21 -0
- anthropic/types/beta/beta_bash_code_execution_result_block_param.py +22 -0
- anthropic/types/beta/beta_bash_code_execution_tool_result_block.py +20 -0
- anthropic/types/beta/beta_bash_code_execution_tool_result_block_param.py +25 -0
- anthropic/types/beta/beta_bash_code_execution_tool_result_error.py +15 -0
- anthropic/types/beta/beta_bash_code_execution_tool_result_error_param.py +17 -0
- anthropic/types/beta/beta_code_execution_tool_20250825_param.py +23 -0
- anthropic/types/beta/beta_content_block.py +4 -0
- anthropic/types/beta/beta_content_block_param.py +4 -0
- anthropic/types/beta/beta_raw_content_block_start_event.py +4 -0
- anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py +4 -2
- anthropic/types/beta/beta_server_tool_use_block.py +1 -1
- anthropic/types/beta/beta_server_tool_use_block_param.py +1 -1
- anthropic/types/beta/beta_text_editor_code_execution_create_result_block.py +13 -0
- anthropic/types/beta/beta_text_editor_code_execution_create_result_block_param.py +13 -0
- anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block.py +22 -0
- anthropic/types/beta/beta_text_editor_code_execution_str_replace_result_block_param.py +24 -0
- anthropic/types/beta/beta_text_editor_code_execution_tool_result_block.py +27 -0
- anthropic/types/beta/beta_text_editor_code_execution_tool_result_block_param.py +34 -0
- anthropic/types/beta/beta_text_editor_code_execution_tool_result_error.py +18 -0
- anthropic/types/beta/beta_text_editor_code_execution_tool_result_error_param.py +18 -0
- anthropic/types/beta/beta_text_editor_code_execution_view_result_block.py +22 -0
- anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py +22 -0
- anthropic/types/beta/beta_tool_param.py +3 -2
- anthropic/types/beta/beta_tool_result_block_param.py +4 -1
- anthropic/types/beta/beta_tool_union_param.py +2 -0
- anthropic/types/beta/beta_web_search_tool_20250305_param.py +4 -3
- anthropic/types/beta/message_count_tokens_params.py +3 -24
- anthropic/types/beta/message_create_params.py +3 -25
- anthropic/types/beta_error_response.py +3 -0
- anthropic/types/completion_create_params.py +2 -1
- anthropic/types/message_count_tokens_params.py +1 -24
- anthropic/types/message_create_params.py +4 -26
- anthropic/types/shared/error_response.py +3 -0
- anthropic/types/tool_param.py +3 -2
- anthropic/types/tool_result_block_param.py +2 -1
- anthropic/types/web_search_tool_20250305_param.py +4 -3
- {anthropic-0.64.0.dist-info → anthropic-0.66.0.dist-info}/METADATA +1 -1
- {anthropic-0.64.0.dist-info → anthropic-0.66.0.dist-info}/RECORD +54 -35
- {anthropic-0.64.0.dist-info → anthropic-0.66.0.dist-info}/WHEEL +0 -0
- {anthropic-0.64.0.dist-info → anthropic-0.66.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
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[
|
|
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[
|
|
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.
|
|
3
|
+
Version: 0.66.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=
|
|
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=
|
|
15
|
-
anthropic/_version.py,sha256=
|
|
14
|
+
anthropic/_types.py,sha256=PwAzwWTKp9b08FTllhWjQPX_-8CLXWh6U-9atpUYHxg,7398
|
|
15
|
+
anthropic/_version.py,sha256=kUZAIOAxkBJpV7HJ8PedCJByxx4XsYZr9FNnhGqGyk4,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=
|
|
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=
|
|
28
|
-
anthropic/_utils/_typing.py,sha256=
|
|
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=
|
|
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=
|
|
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,10 +58,10 @@ 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=
|
|
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=
|
|
64
|
+
anthropic/resources/messages/messages.py,sha256=PBhZL3iuG-A0WhNcawR3pRtgL8fR8qSmAYsx48Mksi8,109831
|
|
65
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
|
|
@@ -70,7 +70,7 @@ 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=
|
|
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
|
|
@@ -92,7 +92,7 @@ anthropic/types/citations_delta.py,sha256=1lnPGh4nfooE90rqBRNonwGvHPuyzF7-Rs76LH
|
|
|
92
92
|
anthropic/types/citations_search_result_location.py,sha256=9UN4QljowQ9p3NVWHiGn_vuh1BTrqQhNU3ijiZ9Atms,480
|
|
93
93
|
anthropic/types/citations_web_search_result_location.py,sha256=rxbcJmhqPa394V5253XDKWtphNklZq44RsKhs8_d_xg,429
|
|
94
94
|
anthropic/types/completion.py,sha256=rwyZeILWQMjzTaYA7wNOJFYQrTobiGt5gsxIpD7ejdI,1151
|
|
95
|
-
anthropic/types/completion_create_params.py,sha256=
|
|
95
|
+
anthropic/types/completion_create_params.py,sha256=JVNzvlwgDnw08qeeah7dy1rod5518ztXV8jsF0vG2pM,4855
|
|
96
96
|
anthropic/types/content_block.py,sha256=GecBwRGBTdWLlBkEox1b6ukKD0r6_4Gxbu__9m4FE-Q,723
|
|
97
97
|
anthropic/types/content_block_delta_event.py,sha256=Y1wLLQioHYK25FeFYMHv0ya2MrOw26iFSksZwnK9eHs,310
|
|
98
98
|
anthropic/types/content_block_param.py,sha256=oBRgNTe1-bW6SOmpV9GJXlmBynzu77qSJQN47Y7bOUI,1108
|
|
@@ -104,9 +104,9 @@ anthropic/types/document_block_param.py,sha256=IiFFBmvMZq85VAdcucrxjfK-sGTzYtgnJ
|
|
|
104
104
|
anthropic/types/image_block_param.py,sha256=qIh7kE3IyA4wrd4KNhmFmpv2fpOeJr1Dp-WNJLjQVx0,770
|
|
105
105
|
anthropic/types/input_json_delta.py,sha256=s-DsbG4jVex1nYxAXNOeraCqGpbRidCbRqBR_Th2YYI,336
|
|
106
106
|
anthropic/types/message.py,sha256=Uy4ZsxH0RNE4u2cBrVjsgeQyHg7To9yHBvNBTZk6MqA,3530
|
|
107
|
-
anthropic/types/message_count_tokens_params.py,sha256=
|
|
107
|
+
anthropic/types/message_count_tokens_params.py,sha256=8oQlU7YTfm1zmc6Jwb_FfGmPF-DgBdx5dQUHTb8--ac,6772
|
|
108
108
|
anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXltzyblbEbVu6MxbitTfet4k,840
|
|
109
|
-
anthropic/types/message_create_params.py,sha256=
|
|
109
|
+
anthropic/types/message_create_params.py,sha256=5fZ3GZjhb-yvOlDZSVcWiXtnm77x0yp_ilM7IIBAAQ8,11079
|
|
110
110
|
anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
|
|
111
111
|
anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
|
|
112
112
|
anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
|
|
@@ -153,8 +153,8 @@ anthropic/types/tool_choice_auto_param.py,sha256=F6ZzaVnXZgCa9AxEddyHu_xsO5sK4n-
|
|
|
153
153
|
anthropic/types/tool_choice_none_param.py,sha256=druYe_74R1D92_ZPvJfbapBXjXMPXwQToAm-Wwukac0,306
|
|
154
154
|
anthropic/types/tool_choice_param.py,sha256=nA7VNo9XKPNTpof8yr7GcgAPKOjWyR3glRpBVZZR2gc,561
|
|
155
155
|
anthropic/types/tool_choice_tool_param.py,sha256=61mEbvhxU4oGKxTlcFt1RBUzHPIIuWgQynrn49_HKZY,552
|
|
156
|
-
anthropic/types/tool_param.py,sha256=
|
|
157
|
-
anthropic/types/tool_result_block_param.py,sha256=
|
|
156
|
+
anthropic/types/tool_param.py,sha256=9VaIuk1lshZRtNwuACIRRYGSH_4E-yi7PEozOqEx3Vs,1654
|
|
157
|
+
anthropic/types/tool_result_block_param.py,sha256=0rbEAOygNLSnt03pfVdZfcTEVWK_CbBdk2mdUTN0gkg,985
|
|
158
158
|
anthropic/types/tool_text_editor_20250124_param.py,sha256=uZU1b3qkuAMf_WnyPd_SyEO7iQXY75-XEYBP1JkGu4U,725
|
|
159
159
|
anthropic/types/tool_text_editor_20250429_param.py,sha256=2laqI5jBBNignFGJhwyOWoRFjFiMAMTApJLJhcW11Lk,734
|
|
160
160
|
anthropic/types/tool_text_editor_20250728_param.py,sha256=ep1KG6uIZFZ94XhRD0sV3zdtXNcA9WJ9MBtm26Y88U0,906
|
|
@@ -166,17 +166,25 @@ anthropic/types/url_pdf_source_param.py,sha256=knFb8DFOWlrFFYwXnZbQx8tqejjWbPQjn
|
|
|
166
166
|
anthropic/types/usage.py,sha256=FPIepQO8jXFHX3RM2HuN-hWLz6y3UOyC4lnJRQxOSZY,1053
|
|
167
167
|
anthropic/types/web_search_result_block.py,sha256=Y8-r0n86qKex4eonDCKre4mS1w7SXleuOFMCT6HmpHU,396
|
|
168
168
|
anthropic/types/web_search_result_block_param.py,sha256=AbQnJIyfQYHSOEUYxBCGuZNqP5hmpFZI_1SxyD5QC8A,476
|
|
169
|
-
anthropic/types/web_search_tool_20250305_param.py,sha256=
|
|
169
|
+
anthropic/types/web_search_tool_20250305_param.py,sha256=GB91ImdTWjK8BsrhEoc0oCZDes_CwUv2t4Wo0zlm2Xs,1829
|
|
170
170
|
anthropic/types/web_search_tool_request_error_param.py,sha256=nCRDcI1Ffc2gznp_ezMGQsSfgXH9wGEzrTm6X_aCumM,498
|
|
171
171
|
anthropic/types/web_search_tool_result_block.py,sha256=-E5RRLn9EznUyxJQNkThIoLEgW-eMzBJDvfA2rO3oDY,437
|
|
172
172
|
anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTduZkNgyWFZAiG7kYamPGqwpCffk,437
|
|
173
173
|
anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
|
|
174
174
|
anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
|
|
175
175
|
anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
|
|
176
|
-
anthropic/types/beta/__init__.py,sha256
|
|
176
|
+
anthropic/types/beta/__init__.py,sha256=-essHkiV6eOfHmYPE_hELzs6x72u87uscSruSx58DsE,15073
|
|
177
177
|
anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
|
|
178
178
|
anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
|
|
179
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
|
|
180
188
|
anthropic/types/beta/beta_cache_control_ephemeral_param.py,sha256=l_knz_Mf0KnXkhO47kRp7AW_5WwJZV8kIjE-8JSRPDc,537
|
|
181
189
|
anthropic/types/beta/beta_cache_creation.py,sha256=zqVV6J8sxETdrrOLmPQVMAsxnLptcz-ESpHeJcXrzpo,416
|
|
182
190
|
anthropic/types/beta/beta_citation_char_location.py,sha256=GoAYqL-EFKVJyGSpBR6AmziTRB320dUM-1lR3j17iwQ,482
|
|
@@ -196,6 +204,7 @@ anthropic/types/beta/beta_code_execution_output_block_param.py,sha256=EOtPBBkd-A
|
|
|
196
204
|
anthropic/types/beta/beta_code_execution_result_block.py,sha256=9xSRmN5jLtLU7i8OykIZ2avIyaQYN-AaruG6iH2-H80,499
|
|
197
205
|
anthropic/types/beta/beta_code_execution_result_block_param.py,sha256=ntPk_c1f0xjvW-8EKinOJAyWhKsfwyPrwcxMbK8-0t8,620
|
|
198
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
|
|
199
208
|
anthropic/types/beta/beta_code_execution_tool_result_block.py,sha256=bheDD2Kv4yg7l2l68FQasijI_T3Cu6MtRwQ97KvOWj0,483
|
|
200
209
|
anthropic/types/beta/beta_code_execution_tool_result_block_content.py,sha256=yzd-4lPmzMcv_NKxzgxZFMW2fdMa9cN25IsKkduzxo0,497
|
|
201
210
|
anthropic/types/beta/beta_code_execution_tool_result_block_param.py,sha256=lYwrz8FSWbvM7_806rRTMY4dVHOS1QzBVRQGAXTty38,827
|
|
@@ -206,8 +215,8 @@ anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_
|
|
|
206
215
|
anthropic/types/beta/beta_container.py,sha256=YhzjG6KsxwareMzDRnn9g8wobw_FMYsYWrFR16h0V54,367
|
|
207
216
|
anthropic/types/beta/beta_container_upload_block.py,sha256=T-W7H8tlzin7_b_A6-hHxBBi9qJk0H7M-2JK_pnXyXE,300
|
|
208
217
|
anthropic/types/beta/beta_container_upload_block_param.py,sha256=rqPN69iuHa6elrNfy-x_pMrm-xOLh_PTmqBrFhKzbhA,602
|
|
209
|
-
anthropic/types/beta/beta_content_block.py,sha256=
|
|
210
|
-
anthropic/types/beta/beta_content_block_param.py,sha256=
|
|
218
|
+
anthropic/types/beta/beta_content_block.py,sha256=7OfQLCW857sVlLgRKEIO3cPkEHtvbsBZTJxdLtYcIgQ,1569
|
|
219
|
+
anthropic/types/beta/beta_content_block_param.py,sha256=OARMmfH5SgMEVGndRSm5FzvmhG31tfgSgJ1I4zEB9Vs,2066
|
|
211
220
|
anthropic/types/beta/beta_content_block_source_content_param.py,sha256=IxeRBqzUPEC35VXHr4xHkQdpMw_A5hqSnBwyixn9v7E,445
|
|
212
221
|
anthropic/types/beta/beta_content_block_source_param.py,sha256=baurrUKAlsFMqHnhtEN_1dGYC7b1vakKpdLiX87pFhU,530
|
|
213
222
|
anthropic/types/beta/beta_file_document_source_param.py,sha256=a5_eicJChOrOoBr7MIVj5hA-MZFs1syo5Oi8W_Jv1_4,350
|
|
@@ -226,7 +235,7 @@ anthropic/types/beta/beta_model_info.py,sha256=hFbhNT1THKUqBKYEB0QvtQ1UBVgcoO_dt
|
|
|
226
235
|
anthropic/types/beta/beta_plain_text_source_param.py,sha256=5VW_apR2n3-G6KmDq6b58Me7kGTcN2IAHAwsGbPrlVQ,390
|
|
227
236
|
anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h8AbwryMo9HXw4mNnrmv7Krg,690
|
|
228
237
|
anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
|
|
229
|
-
anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=
|
|
238
|
+
anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=0OZuBY9hFvqqivaVEgXKhSm_CT2BAWX3-mPAbHCnr5E,1839
|
|
230
239
|
anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
|
|
231
240
|
anthropic/types/beta/beta_raw_message_delta_event.py,sha256=o4gGROi2CmzPQhZ1ZVlXYQWWzDbg9YqbjgCv_Jdpat4,1505
|
|
232
241
|
anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
|
|
@@ -235,13 +244,13 @@ anthropic/types/beta/beta_raw_message_stream_event.py,sha256=8Aq-QAF0Fk6esNiI_L4
|
|
|
235
244
|
anthropic/types/beta/beta_redacted_thinking_block.py,sha256=DVNuN59cCWpVBFWTYvE5fVPwBEb1LRF27d-BHVgApJI,300
|
|
236
245
|
anthropic/types/beta/beta_redacted_thinking_block_param.py,sha256=BTpab5mqgUtlSgtXTPap0x8HpqVAyTvLoB3pf6o1TqI,366
|
|
237
246
|
anthropic/types/beta/beta_request_document_block_param.py,sha256=deG7Q4pEfvug7SSDymWF-VkWypcXxFfOtzmlG20BgH8,1309
|
|
238
|
-
anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py,sha256=
|
|
247
|
+
anthropic/types/beta/beta_request_mcp_server_tool_configuration_param.py,sha256=CFIzeyT9ni1lBMCUzIwkyp8D_6ry9MmWLaPhMQByVMA,441
|
|
239
248
|
anthropic/types/beta/beta_request_mcp_server_url_definition_param.py,sha256=j8N0ixvGHFheT2KqqI64HKufHmVST9VcJgShtlkPzUw,644
|
|
240
249
|
anthropic/types/beta/beta_request_mcp_tool_result_block_param.py,sha256=xK9SY8bmetn-LWN4hks8KDbeh2WiF0pttcCXsB99v84,761
|
|
241
250
|
anthropic/types/beta/beta_search_result_block_param.py,sha256=uqzKu_6YVDRe6rIbVSmfvQE7YleyRfa_UncwI2k3cuI,842
|
|
242
251
|
anthropic/types/beta/beta_server_tool_usage.py,sha256=2QfadWgy4RRhlsFLwZkoPzRssC_D-u0Fm79TF5Y0ouY,274
|
|
243
|
-
anthropic/types/beta/beta_server_tool_use_block.py,sha256=
|
|
244
|
-
anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=
|
|
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
|
|
245
254
|
anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
|
|
246
255
|
anthropic/types/beta/beta_stop_reason.py,sha256=K128DdKu6vMjONi6uAqKpbdoOLqUYRoOapg8jZV0Z0E,283
|
|
247
256
|
anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
|
|
@@ -249,6 +258,16 @@ anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze
|
|
|
249
258
|
anthropic/types/beta/beta_text_citation.py,sha256=Ia_-kJ48QQ4ZN5AeWbCSCzAFwNXjVM4LHf-5-jyBJog,921
|
|
250
259
|
anthropic/types/beta/beta_text_citation_param.py,sha256=QuBFgo1xfMkUl3mwWI5FDTRYA-VJ27SpE7ORpyUoTJs,916
|
|
251
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
|
|
252
271
|
anthropic/types/beta/beta_thinking_block.py,sha256=R-w0ZLaNZzELS2udP0vtxtDmE2MgNcf5gXz9FyMQVEg,299
|
|
253
272
|
anthropic/types/beta/beta_thinking_block_param.py,sha256=tiOk592SxRHZ77nDIpLuocz35B_1yB3qbr7MTZqhnEA,375
|
|
254
273
|
anthropic/types/beta/beta_thinking_config_disabled_param.py,sha256=tiVjV6z1NxDUdyl43EpEz3BRIFhDG2dQCjcBYjRc54o,334
|
|
@@ -264,13 +283,13 @@ anthropic/types/beta/beta_tool_choice_param.py,sha256=kJnRD1gWzx_NPpyfMShZtoXrUc
|
|
|
264
283
|
anthropic/types/beta/beta_tool_choice_tool_param.py,sha256=TYPA4HbTZrSBcDsMnsk86c0HqBYrkoN71TQq_7yNV4k,560
|
|
265
284
|
anthropic/types/beta/beta_tool_computer_use_20241022_param.py,sha256=AjucXClRInpVVEhI2VnXwICpNCVlysr0YD4w32y56lg,1000
|
|
266
285
|
anthropic/types/beta/beta_tool_computer_use_20250124_param.py,sha256=BIHpALLErLWvFA4Scv4ntAa8NSSmE2WA_EV9DCN6Udw,1000
|
|
267
|
-
anthropic/types/beta/beta_tool_param.py,sha256=
|
|
268
|
-
anthropic/types/beta/beta_tool_result_block_param.py,sha256=
|
|
286
|
+
anthropic/types/beta/beta_tool_param.py,sha256=iUoPeB4GONzgEc3PstF2xPh9svwGqMWyo3K8V2zR988,1575
|
|
287
|
+
anthropic/types/beta/beta_tool_result_block_param.py,sha256=84vvYhCfImu22BECeL-zBvfjNCXV0rIfr7trnR9VE3Q,1086
|
|
269
288
|
anthropic/types/beta/beta_tool_text_editor_20241022_param.py,sha256=z4plQ-egA85ettWcQm3sptpiBv3EYL1VbtrL2fldtTM,746
|
|
270
289
|
anthropic/types/beta/beta_tool_text_editor_20250124_param.py,sha256=PqRpXlK9TqHPOcF5SRkGSeWc793QMNUztuIQKoGHyoI,746
|
|
271
290
|
anthropic/types/beta/beta_tool_text_editor_20250429_param.py,sha256=2skxGp7C7fwrecE2dS22FPRXhxRF8VMQS4K5cNT-fbA,755
|
|
272
291
|
anthropic/types/beta/beta_tool_text_editor_20250728_param.py,sha256=Y9Kx_C2XZQ0BmXoOUEunVJeb7FnGTWH9egNc-S9lzqI,927
|
|
273
|
-
anthropic/types/beta/beta_tool_union_param.py,sha256=
|
|
292
|
+
anthropic/types/beta/beta_tool_union_param.py,sha256=1dHhf5cu3cGhXtn8DmHlIwQv94ML3A25MhhZF4tXybM,1619
|
|
274
293
|
anthropic/types/beta/beta_tool_use_block.py,sha256=y1Y9ovht2t-BlJDqEOi_wk2b2XAIb2J_gkyIdzZM8fY,305
|
|
275
294
|
anthropic/types/beta/beta_tool_use_block_param.py,sha256=eZvSxb6yvh_eLY0SSoN0pFSGGLxU4yJEv3nyMYZ7zBA,627
|
|
276
295
|
anthropic/types/beta/beta_url_image_source_param.py,sha256=pquhkw8b13TbwhXA6_dMkPP-7vxYfbbXbjV_BVx_0ZY,337
|
|
@@ -278,7 +297,7 @@ anthropic/types/beta/beta_url_pdf_source_param.py,sha256=Ox2U0GM60MJgQBec8NKPw49
|
|
|
278
297
|
anthropic/types/beta/beta_usage.py,sha256=H0PAOPwTs8V2myo89yCS9vG78hCIv39ooGza39N-nB8,1088
|
|
279
298
|
anthropic/types/beta/beta_web_search_result_block.py,sha256=8k1ltqF03HVb440Nvms4fRD1xKZmvbrFG-BHeot-SGU,405
|
|
280
299
|
anthropic/types/beta/beta_web_search_result_block_param.py,sha256=pAKcEO3RC5clujQoGSAJOO2o1gpfsYzaebsZ6aIMOfk,484
|
|
281
|
-
anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=
|
|
300
|
+
anthropic/types/beta/beta_web_search_tool_20250305_param.py,sha256=PxvB_MdxWD1XEa1YH-Jmmse9cJXjJR4rNt2ZhpT0n20,1851
|
|
282
301
|
anthropic/types/beta/beta_web_search_tool_request_error_param.py,sha256=PdRRrtIHg0P00ARhUekoCnlXXZ2H6K6F5wWmJJvKkNo,506
|
|
283
302
|
anthropic/types/beta/beta_web_search_tool_result_block.py,sha256=Y4outQt1jPvujwwmUzoNH_d9FfYeRTw51_w6RCfmYMo,459
|
|
284
303
|
anthropic/types/beta/beta_web_search_tool_result_block_content.py,sha256=qm77CYtUz5Owh934Uj5m0oLyCeJ6AoSZ_z3ZwrEi1qk,471
|
|
@@ -290,8 +309,8 @@ anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj6
|
|
|
290
309
|
anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
|
|
291
310
|
anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
|
|
292
311
|
anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
|
|
293
|
-
anthropic/types/beta/message_count_tokens_params.py,sha256=
|
|
294
|
-
anthropic/types/beta/message_create_params.py,sha256=
|
|
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
|
|
295
314
|
anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
|
|
296
315
|
anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
|
|
297
316
|
anthropic/types/beta/messages/batch_create_params.py,sha256=evapYsPHKVs2zrWZQpgVDpZIn2bMrk7Z7P03T8Go1c0,1336
|
|
@@ -322,14 +341,14 @@ anthropic/types/shared/api_error_object.py,sha256=7AY_Fus-yBeLhaCFix39VFV0DHSrUp
|
|
|
322
341
|
anthropic/types/shared/authentication_error.py,sha256=XcEcXJLosZ4WSOdzTjsE4W6Yfik0BnGJhRKMd8sPGsc,294
|
|
323
342
|
anthropic/types/shared/billing_error.py,sha256=yKzFXPOWicwm9b3VSMiTPe9B__FUJeGcv0e0heam9ug,273
|
|
324
343
|
anthropic/types/shared/error_object.py,sha256=mGgRyJgHP7mtVojlSfxz08s8l9EzXXQ4_67-jY-ssxA,982
|
|
325
|
-
anthropic/types/shared/error_response.py,sha256=
|
|
344
|
+
anthropic/types/shared/error_response.py,sha256=v9tmfnrglq2xsyzOIL4CmEavVt7M81jX0AOff58kg9g,377
|
|
326
345
|
anthropic/types/shared/gateway_timeout_error.py,sha256=-SPRDz7gzUHtrRLC_E7B0waG9ESbVEx1Jhwyerr8yCo,287
|
|
327
346
|
anthropic/types/shared/invalid_request_error.py,sha256=RsNA8WGtbXBVpOE6OiH0Q_Za_lE9WOFjxWhFkvUiWKg,295
|
|
328
347
|
anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA6hLvzzSqIKlQ,277
|
|
329
348
|
anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
|
|
330
349
|
anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
|
|
331
350
|
anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
|
|
332
|
-
anthropic-0.
|
|
333
|
-
anthropic-0.
|
|
334
|
-
anthropic-0.
|
|
335
|
-
anthropic-0.
|
|
351
|
+
anthropic-0.66.0.dist-info/METADATA,sha256=fDkA3IeEzPoi_eumFDVRVEZsiWQJGaojKdJbEDSyZzU,27053
|
|
352
|
+
anthropic-0.66.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
353
|
+
anthropic-0.66.0.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
|
|
354
|
+
anthropic-0.66.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|