anthropic 0.70.0__py3-none-any.whl → 0.71.1__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/_base_client.py +6 -2
- anthropic/_version.py +1 -1
- anthropic/lib/__init__.py +1 -0
- anthropic/lib/_files.py +42 -0
- anthropic/pagination.py +117 -1
- anthropic/resources/beta/__init__.py +14 -0
- anthropic/resources/beta/beta.py +32 -0
- anthropic/resources/beta/messages/messages.py +140 -122
- anthropic/resources/beta/skills/__init__.py +33 -0
- anthropic/resources/beta/skills/skills.py +680 -0
- anthropic/resources/beta/skills/versions.py +658 -0
- anthropic/resources/completions.py +36 -42
- anthropic/resources/messages/messages.py +92 -98
- anthropic/types/anthropic_beta_param.py +1 -0
- anthropic/types/beta/__init__.py +9 -0
- anthropic/types/beta/beta_container.py +5 -0
- anthropic/types/beta/beta_container_params.py +18 -0
- anthropic/types/beta/beta_message.py +4 -1
- anthropic/types/beta/beta_raw_message_delta_event.py +1 -1
- anthropic/types/beta/beta_skill.py +18 -0
- anthropic/types/beta/beta_skill_params.py +18 -0
- anthropic/types/beta/beta_thinking_config_enabled_param.py +1 -1
- anthropic/types/beta/message_count_tokens_params.py +14 -10
- anthropic/types/beta/message_create_params.py +25 -19
- anthropic/types/beta/messages/batch_create_params.py +1 -0
- anthropic/types/beta/skill_create_params.py +31 -0
- anthropic/types/beta/skill_create_response.py +49 -0
- anthropic/types/beta/skill_delete_response.py +19 -0
- anthropic/types/beta/skill_list_params.py +38 -0
- anthropic/types/beta/skill_list_response.py +49 -0
- anthropic/types/beta/skill_retrieve_response.py +49 -0
- anthropic/types/beta/skills/__init__.py +10 -0
- anthropic/types/beta/skills/version_create_params.py +24 -0
- anthropic/types/beta/skills/version_create_response.py +49 -0
- anthropic/types/beta/skills/version_delete_response.py +19 -0
- anthropic/types/beta/skills/version_list_params.py +25 -0
- anthropic/types/beta/skills/version_list_response.py +49 -0
- anthropic/types/beta/skills/version_retrieve_response.py +49 -0
- anthropic/types/completion_create_params.py +5 -6
- anthropic/types/message_count_tokens_params.py +9 -9
- anthropic/types/message_create_params.py +13 -15
- anthropic/types/messages/batch_create_params.py +1 -0
- anthropic/types/model.py +0 -3
- anthropic/types/model_param.py +0 -3
- anthropic/types/stop_reason.py +1 -3
- anthropic/types/thinking_config_enabled_param.py +1 -1
- {anthropic-0.70.0.dist-info → anthropic-0.71.1.dist-info}/METADATA +2 -2
- {anthropic-0.70.0.dist-info → anthropic-0.71.1.dist-info}/RECORD +50 -30
- {anthropic-0.70.0.dist-info → anthropic-0.71.1.dist-info}/WHEEL +0 -0
- {anthropic-0.70.0.dist-info → anthropic-0.71.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
anthropic/__init__.py,sha256=sPNLvrXJGDKWSF87xPj6CidUbcMD4sAVIzip4BeEP7g,2981
|
|
2
|
-
anthropic/_base_client.py,sha256=
|
|
2
|
+
anthropic/_base_client.py,sha256=Ca5ANeCg2kvkN3Ego42boLcHIhj9npORXzh3VGQs1tw,72929
|
|
3
3
|
anthropic/_client.py,sha256=M90bE_o_HRuBNrbA-D-grLZua841_5NTkzeUQpyE75Y,22812
|
|
4
4
|
anthropic/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
anthropic/_constants.py,sha256=wADeUqY3lsseF0L6jIen-PexfQ06FOtf2dVESXDM828,885
|
|
@@ -12,8 +12,8 @@ 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
14
|
anthropic/_types.py,sha256=vEab5B5Hp7xQQafVrgSCHeEPUmf74jofqIPo-n7Xljk,7338
|
|
15
|
-
anthropic/_version.py,sha256=
|
|
16
|
-
anthropic/pagination.py,sha256=
|
|
15
|
+
anthropic/_version.py,sha256=bOtoMxc6DENRbWC9R66igNBXu3_Vvar9dVprQLq9Uno,162
|
|
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
|
|
19
19
|
anthropic/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -30,7 +30,8 @@ anthropic/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-
|
|
|
30
30
|
anthropic/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
31
31
|
anthropic/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
|
|
32
32
|
anthropic/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
33
|
-
anthropic/lib/__init__.py,sha256=
|
|
33
|
+
anthropic/lib/__init__.py,sha256=ed3VXosCln6iXSojwutNZjzjoIVpDLIHfMiiMiSHjlU,99
|
|
34
|
+
anthropic/lib/_files.py,sha256=7gggVMi-rWE-42gElwl7nncy3Gf_V62Ga6cIln_yG_M,1209
|
|
34
35
|
anthropic/lib/_extras/__init__.py,sha256=a9HX69-V9nROM4Em9a4y-xZTgiLE2jdlCyC6ZKtxfyY,53
|
|
35
36
|
anthropic/lib/_extras/_common.py,sha256=IhHjAsirY2xfLJrzlt9rS_0IPsTJeWqKA2HWUuvDN14,348
|
|
36
37
|
anthropic/lib/_extras/_google_auth.py,sha256=Wukh6VOgcDRYSsFCVT9tx_oXI1ApIsmioSLEMsYvDfw,688
|
|
@@ -56,20 +57,23 @@ anthropic/lib/vertex/_beta.py,sha256=8kXsUUIGstf6dZfiZtm6s9OWEueuSgra8dPvkaUacy4
|
|
|
56
57
|
anthropic/lib/vertex/_beta_messages.py,sha256=4fsV2F6TzB14DuHLo9k8i95vymcbixIPjsplqpsHfac,3399
|
|
57
58
|
anthropic/lib/vertex/_client.py,sha256=bvemByz7HdwDIHMojcvBUN7khsI32jFglgtRVDH5o04,16619
|
|
58
59
|
anthropic/resources/__init__.py,sha256=H0t_V-A_u6bIVmbAUpY9ZfgqoNIjIfyNpZz7hAiErIA,1583
|
|
59
|
-
anthropic/resources/completions.py,sha256=
|
|
60
|
+
anthropic/resources/completions.py,sha256=D37K0gGYyKAaR7JLkHnaj0kjcDz8XJ3QUYM_BFalUa0,36598
|
|
60
61
|
anthropic/resources/models.py,sha256=GgfBa0oaEdEHXC04Z9T_9u_VQPnJEaKCcmZLKWDKAPM,12402
|
|
61
|
-
anthropic/resources/beta/__init__.py,sha256=
|
|
62
|
-
anthropic/resources/beta/beta.py,sha256=
|
|
62
|
+
anthropic/resources/beta/__init__.py,sha256=S89446AM8KtupBbPvduL0jnF1Y7IDGQ6M6JYVnLwBgk,1859
|
|
63
|
+
anthropic/resources/beta/beta.py,sha256=HMGHvzyUKGEfXz61u9nY26zeCaxnIcpCP3LmHtomJT0,6047
|
|
63
64
|
anthropic/resources/beta/files.py,sha256=rz2seKKOcoF0ebUMEMF86LoPWi1YqK2zp-dMQ7tMCYQ,26779
|
|
64
65
|
anthropic/resources/beta/models.py,sha256=1bPko6YIziXlKj9GWnAxReEoWIT_7TwBpU_oCUMhBlo,12516
|
|
65
66
|
anthropic/resources/beta/messages/__init__.py,sha256=7ZO4hB7hPBhXQja7gMzkwLXQVDlyap4JsihpA0UKZjk,849
|
|
66
67
|
anthropic/resources/beta/messages/batches.py,sha256=O8OfPkfqotwANicpsYrOiqlA2O7G-CaeDK8BpDJRRhU,35840
|
|
67
|
-
anthropic/resources/beta/messages/messages.py,sha256=
|
|
68
|
+
anthropic/resources/beta/messages/messages.py,sha256=VhJ5VBVJWgZpTR9bdAt0QR757jb6zRD-mq-5zW39EIM,135370
|
|
69
|
+
anthropic/resources/beta/skills/__init__.py,sha256=QMC_HEzfI-k0jhfKJThUUjf9wf7Vs8HTxSXYNnvVx2o,836
|
|
70
|
+
anthropic/resources/beta/skills/skills.py,sha256=ytCR9JN7Qgn9GbWT0oBgpy-nvYXWwqoBvOzZ_iURANE,25036
|
|
71
|
+
anthropic/resources/beta/skills/versions.py,sha256=iWSrZ4iqVGm16f7r_aE79gDxeUTUaSw5dEBAyHIxRu8,25212
|
|
68
72
|
anthropic/resources/messages/__init__.py,sha256=iOSBh4D7NTXqe7RNhw9HZCiFmJvDfIgVFnjaF7r27YU,897
|
|
69
73
|
anthropic/resources/messages/batches.py,sha256=oTuHN8jUqwJYbUybLiuHG6wFItO0jlwLWyxZeRLGr0Y,28548
|
|
70
|
-
anthropic/resources/messages/messages.py,sha256=
|
|
74
|
+
anthropic/resources/messages/messages.py,sha256=O4mKyIIKPSTIL9Ud7j-F2QBMTciwbfkTuWnb7hiSjVk,108526
|
|
71
75
|
anthropic/types/__init__.py,sha256=H56hkiGRNPgQE1PANpHed0ns8nMqJGVqLmM7gVWLRWg,9458
|
|
72
|
-
anthropic/types/anthropic_beta_param.py,sha256=
|
|
76
|
+
anthropic/types/anthropic_beta_param.py,sha256=TLDPgIjC5ZYDJXPCbszi6CoGBgeBdLRs3qs7Rw5AgEk,970
|
|
73
77
|
anthropic/types/base64_image_source_param.py,sha256=4djZ4GfXcL2khwcg8KpUdZILKmmzHro5YFXTdkhSqpw,725
|
|
74
78
|
anthropic/types/base64_pdf_source_param.py,sha256=N2ALmXljCEVfOh9oUbgFjH8hF3iNFoQLK7y0MfvPl4k,684
|
|
75
79
|
anthropic/types/beta_api_error.py,sha256=rr_VBxFp9VqNmVjTUokYzpkYRYvO9MVh_t406BvGi38,268
|
|
@@ -98,7 +102,7 @@ anthropic/types/citations_delta.py,sha256=1lnPGh4nfooE90rqBRNonwGvHPuyzF7-Rs76LH
|
|
|
98
102
|
anthropic/types/citations_search_result_location.py,sha256=9UN4QljowQ9p3NVWHiGn_vuh1BTrqQhNU3ijiZ9Atms,480
|
|
99
103
|
anthropic/types/citations_web_search_result_location.py,sha256=rxbcJmhqPa394V5253XDKWtphNklZq44RsKhs8_d_xg,429
|
|
100
104
|
anthropic/types/completion.py,sha256=rwyZeILWQMjzTaYA7wNOJFYQrTobiGt5gsxIpD7ejdI,1151
|
|
101
|
-
anthropic/types/completion_create_params.py,sha256=
|
|
105
|
+
anthropic/types/completion_create_params.py,sha256=rmr4mOvgEFcIVesGCgRDqKrUHuy0-vnreaxs4sbFsVA,4839
|
|
102
106
|
anthropic/types/content_block.py,sha256=GecBwRGBTdWLlBkEox1b6ukKD0r6_4Gxbu__9m4FE-Q,723
|
|
103
107
|
anthropic/types/content_block_delta_event.py,sha256=Y1wLLQioHYK25FeFYMHv0ya2MrOw26iFSksZwnK9eHs,310
|
|
104
108
|
anthropic/types/content_block_param.py,sha256=oBRgNTe1-bW6SOmpV9GJXlmBynzu77qSJQN47Y7bOUI,1108
|
|
@@ -110,9 +114,9 @@ anthropic/types/document_block_param.py,sha256=ATGjDsb0s4A3ExJaljj5kCQh9utjygv1I
|
|
|
110
114
|
anthropic/types/image_block_param.py,sha256=qIh7kE3IyA4wrd4KNhmFmpv2fpOeJr1Dp-WNJLjQVx0,770
|
|
111
115
|
anthropic/types/input_json_delta.py,sha256=s-DsbG4jVex1nYxAXNOeraCqGpbRidCbRqBR_Th2YYI,336
|
|
112
116
|
anthropic/types/message.py,sha256=Uy4ZsxH0RNE4u2cBrVjsgeQyHg7To9yHBvNBTZk6MqA,3530
|
|
113
|
-
anthropic/types/message_count_tokens_params.py,sha256=
|
|
117
|
+
anthropic/types/message_count_tokens_params.py,sha256=7C7sqC2kaixDxA11rGJ9cxaSyJKzabhsoWEQLB6_Obg,6751
|
|
114
118
|
anthropic/types/message_count_tokens_tool_param.py,sha256=NEIiWMf-YkKGQzhjnHCXltzyblbEbVu6MxbitTfet4k,840
|
|
115
|
-
anthropic/types/message_create_params.py,sha256=
|
|
119
|
+
anthropic/types/message_create_params.py,sha256=7HFrYFxVO6RXM27Z_D_c0E02-YwyYrJuX7i23Vc_jjM,11038
|
|
116
120
|
anthropic/types/message_delta_event.py,sha256=YXDoFicieByN-ur1L0kLMlBoLJEhQwYjD-wRUgbTiXM,279
|
|
117
121
|
anthropic/types/message_delta_usage.py,sha256=xckWsOsyF2QXRuJTfMKrlkPLohMsOc0lyMFFpmD8Sws,816
|
|
118
122
|
anthropic/types/message_param.py,sha256=6hsSw4E370SANL5TzpudsJqGQHiE291m6HwL9YXrFM0,1570
|
|
@@ -121,10 +125,10 @@ anthropic/types/message_stop_event.py,sha256=rtYh1F-b9xilu8s_RdaHijP7kf3om6FvK9c
|
|
|
121
125
|
anthropic/types/message_stream_event.py,sha256=OspCo1IFpItyJDr4Ta16o8DQmTsgVWSmeNg4BhfMM0M,285
|
|
122
126
|
anthropic/types/message_tokens_count.py,sha256=JmkcWw9nZAUgr2WY5G4Mwqs2jcnMuZXh920MlUkvY70,329
|
|
123
127
|
anthropic/types/metadata_param.py,sha256=p6j8bWh3FfI3PB-vJjU4JhRukP2NZdrcE2gQixw5zgw,594
|
|
124
|
-
anthropic/types/model.py,sha256=
|
|
128
|
+
anthropic/types/model.py,sha256=snPrs9phxAQqz6Eky_lVHDya0WttYlrQyjR0toiD6nc,851
|
|
125
129
|
anthropic/types/model_info.py,sha256=JrqNQwWcOiC5ItKTZqRfeAQhPWzi0AyzzOTF6AdE-ss,646
|
|
126
130
|
anthropic/types/model_list_params.py,sha256=O2GJOAHr6pB7yGAJhLjcwsDJ8ACtE1GrOrI2JDkj0w8,974
|
|
127
|
-
anthropic/types/model_param.py,sha256=
|
|
131
|
+
anthropic/types/model_param.py,sha256=RciNjl0f1i_BBlpdO800-LomLSrngA96hsRK97gHgL0,897
|
|
128
132
|
anthropic/types/plain_text_source_param.py,sha256=zdzLMfSQZH2_9Z8ssVc5hLG1w_AuFZ2Z3E17lEntAzg,382
|
|
129
133
|
anthropic/types/raw_content_block_delta.py,sha256=T1i1gSGq9u9obYbxgXYAwux-WIRqSRWJW9tBjBDXoP8,611
|
|
130
134
|
anthropic/types/raw_content_block_delta_event.py,sha256=XKpY_cCljZ6NFtVCt5R38imPbnZAbFyQVIB5d4K4ZgY,393
|
|
@@ -141,7 +145,7 @@ anthropic/types/server_tool_usage.py,sha256=nccmvOnXVirtx_ORf4xJTBDDTNPCk_0F3ObE
|
|
|
141
145
|
anthropic/types/server_tool_use_block.py,sha256=oim9TZxqdRaR3GzQQpc9y8wPlIFMGVhOTIAT2Vn9u6g,333
|
|
142
146
|
anthropic/types/server_tool_use_block_param.py,sha256=u6umSKDkkE5p2iFM3AaWs-mlfzTh7WxYU2rpT8vLJkE,643
|
|
143
147
|
anthropic/types/signature_delta.py,sha256=1e7MwUUU2j5oOie79x-5QU4-Fi1WXccDqgIMnvxfXTQ,280
|
|
144
|
-
anthropic/types/stop_reason.py,sha256=
|
|
148
|
+
anthropic/types/stop_reason.py,sha256=LZTfwN184HpIH4xNBwgNZ44EskkBDIvUWScEgaJWSd0,275
|
|
145
149
|
anthropic/types/text_block.py,sha256=otDts8sbTaDw9kIsvyqMHAxE-hxJv4F4HK4q7QkCmDo,662
|
|
146
150
|
anthropic/types/text_block_param.py,sha256=oz75dBBWudPw3IBl-Xpu4sLP4OdxQmrz8qbQc6pMoCw,659
|
|
147
151
|
anthropic/types/text_citation.py,sha256=otKNuFral4D_25v98K5NuGD0pDWKAyHTW5uvr90Wp5o,850
|
|
@@ -150,7 +154,7 @@ anthropic/types/text_delta.py,sha256=c9IXT5EENOr9TZTD4F6oHbi0gV3SxtsW_FLScgms3SQ
|
|
|
150
154
|
anthropic/types/thinking_block.py,sha256=2SQDYXwdg0VrYgQVBes6tFY2VU7nFe9UCmqBWL4dun8,290
|
|
151
155
|
anthropic/types/thinking_block_param.py,sha256=fqeY1_iHnCCcH_36_TZjfwP90BdS8ikSp_WYmHsheSk,367
|
|
152
156
|
anthropic/types/thinking_config_disabled_param.py,sha256=13QHVviCeaBGcZ2_xsYQROrC9p4-GFhdoeIVXZ9AXX4,326
|
|
153
|
-
anthropic/types/thinking_config_enabled_param.py,sha256=
|
|
157
|
+
anthropic/types/thinking_config_enabled_param.py,sha256=MKCofudk-qk80KzdkXWvA9Id_QeS0Q4_3gznpU0_ZqE,726
|
|
154
158
|
anthropic/types/thinking_config_param.py,sha256=n9h9Z_QtYpV7QnsbvkKYtTpT2opWjmPv1dx-RVKQzy0,463
|
|
155
159
|
anthropic/types/thinking_delta.py,sha256=OfGsFuv2SEKKIbMQw0fdQBnIPZtwNFQEB2oGjlryCNg,276
|
|
156
160
|
anthropic/types/tool_bash_20250124_param.py,sha256=Ww6iipXPdPxUsHXjmBoXahGsKDoA-Q7AM_fMJFPqBmI,692
|
|
@@ -179,7 +183,7 @@ anthropic/types/web_search_tool_result_block_content.py,sha256=Ev_QL9KMO7emKGcTd
|
|
|
179
183
|
anthropic/types/web_search_tool_result_block_param.py,sha256=BBYP395H7a_6I2874EDwxTcx6imeKPgrFL0d3aa2z_8,769
|
|
180
184
|
anthropic/types/web_search_tool_result_block_param_content_param.py,sha256=YIBYcDI1GSlrI-4QBugJ_2YLpkofR7Da3vOwVDU44lo,542
|
|
181
185
|
anthropic/types/web_search_tool_result_error.py,sha256=3WZaS3vYkAepbsa8yEmVNkUOYcpOHonaKfHBm1nFpr8,415
|
|
182
|
-
anthropic/types/beta/__init__.py,sha256=
|
|
186
|
+
anthropic/types/beta/__init__.py,sha256=VcD8PXQuw8ONUi-V73LqYPqB4fz7DaVxRfdCp1Crkuo,19020
|
|
183
187
|
anthropic/types/beta/beta_base64_image_source_param.py,sha256=njrnNCJcJyLt9JJQcidX3wuG9kpY_F5xWjb3DRO3tJQ,740
|
|
184
188
|
anthropic/types/beta/beta_base64_pdf_block_param.py,sha256=aYzXqHuaoyXgNNIRnVo0YdyVT3l0rdpT9UoN4CmAYlI,257
|
|
185
189
|
anthropic/types/beta/beta_base64_pdf_source.py,sha256=RbkrF6vfc4tMgntlk3U7jmrdpa876HxO8iDa28szsKA,321
|
|
@@ -222,7 +226,8 @@ anthropic/types/beta/beta_code_execution_tool_result_block_param_content_param.p
|
|
|
222
226
|
anthropic/types/beta/beta_code_execution_tool_result_error.py,sha256=SuLEG42APBGhO0jVc2xu8eXLS1_mM9x5trxtwrXS5ok,461
|
|
223
227
|
anthropic/types/beta/beta_code_execution_tool_result_error_code.py,sha256=BqoqrsTwo3PuXYz4mPiZr4z-q1kx2hs5iLoL7_otmyU,338
|
|
224
228
|
anthropic/types/beta/beta_code_execution_tool_result_error_param.py,sha256=rTdT_buEPIfaeGUnF9_pdfexZhjh_zdQju3LcERNVis,528
|
|
225
|
-
anthropic/types/beta/beta_container.py,sha256=
|
|
229
|
+
anthropic/types/beta/beta_container.py,sha256=Vr8BXNE55XlpcuoebIoxjOpG0SxNl3-tMu6KWMiBkZI,522
|
|
230
|
+
anthropic/types/beta/beta_container_params.py,sha256=PYJotNSzBW7_HdvPSs6N16huwhdIBSv6sGuY0ZHhCmc,481
|
|
226
231
|
anthropic/types/beta/beta_container_upload_block.py,sha256=T-W7H8tlzin7_b_A6-hHxBBi9qJk0H7M-2JK_pnXyXE,300
|
|
227
232
|
anthropic/types/beta/beta_container_upload_block_param.py,sha256=rqPN69iuHa6elrNfy-x_pMrm-xOLh_PTmqBrFhKzbhA,602
|
|
228
233
|
anthropic/types/beta/beta_content_block.py,sha256=vmZXOq7Frx8xAYVV5eDC9FbNq-wyL8C-J6Tlg0yp7a8,1680
|
|
@@ -250,7 +255,7 @@ anthropic/types/beta/beta_memory_tool_20250818_param.py,sha256=qL3iNL_Pk5NI4STT_
|
|
|
250
255
|
anthropic/types/beta/beta_memory_tool_20250818_rename_command.py,sha256=39AhTdurJEXwEdK54_Z-RjzAOMSvo8AeNo2KHD8vlgA,462
|
|
251
256
|
anthropic/types/beta/beta_memory_tool_20250818_str_replace_command.py,sha256=2FBRtAlMbGio876ixv3NnoDkdIGHfoKwQswUWo6qTfs,524
|
|
252
257
|
anthropic/types/beta/beta_memory_tool_20250818_view_command.py,sha256=NGvvJd_GEaQRfOXH0-YmGYpyyCtj7WkX9RQZ1iVc_OE,519
|
|
253
|
-
anthropic/types/beta/beta_message.py,sha256=
|
|
258
|
+
anthropic/types/beta/beta_message.py,sha256=4s-6QgSHvxkEYCp2Ev-kVcI2yD4vK6PLyS4r_k3Bdx0,4055
|
|
254
259
|
anthropic/types/beta/beta_message_delta_usage.py,sha256=fXrjDgH46VN53jTfHzoBPavFWx4YgBMH1T1ni4f9D2w,838
|
|
255
260
|
anthropic/types/beta/beta_message_param.py,sha256=jelI5bL_5DFMW5-aKDpBf1KsK-CvIZkueSrU_Go3gUc,477
|
|
256
261
|
anthropic/types/beta/beta_message_tokens_count.py,sha256=yO_2_42iBaPzX5izF1vTXoGSS1qy9LxzAf1K9GQgr4Y,621
|
|
@@ -262,7 +267,7 @@ anthropic/types/beta/beta_raw_content_block_delta.py,sha256=W9lWCYhkAI-KWMiQs42h
|
|
|
262
267
|
anthropic/types/beta/beta_raw_content_block_delta_event.py,sha256=-hn4oaYfZHCWJ5mUWeAHDM9h_XiPnLJIROqhztkiDM4,415
|
|
263
268
|
anthropic/types/beta/beta_raw_content_block_start_event.py,sha256=2UDrpyyC8V6DJADY1oI1P6kHzMS6drucGn05U96ZX3c,1950
|
|
264
269
|
anthropic/types/beta/beta_raw_content_block_stop_event.py,sha256=JcCrM004eYBjmsbFQ_0J-vAngAPCKlkdv30ylh7fi70,308
|
|
265
|
-
anthropic/types/beta/beta_raw_message_delta_event.py,sha256=
|
|
270
|
+
anthropic/types/beta/beta_raw_message_delta_event.py,sha256=L1XDYvixPbxjEW-r37TghkL2pn8B0311dj_nky_1xMA,1738
|
|
266
271
|
anthropic/types/beta/beta_raw_message_start_event.py,sha256=v7dcNblqSy9jD65ah1LvvNWD71IRBbYMcIG0L3SyXkA,343
|
|
267
272
|
anthropic/types/beta/beta_raw_message_stop_event.py,sha256=Xyo-UPOLgjOTCYA8kYZoK4cx_C_Jegd5MYVjf0C2-t8,276
|
|
268
273
|
anthropic/types/beta/beta_raw_message_stream_event.py,sha256=8Aq-QAF0Fk6esNiI_L44Mbr9SMaIFqNfi8p2NF6aO80,999
|
|
@@ -277,6 +282,8 @@ anthropic/types/beta/beta_server_tool_usage.py,sha256=StokZ2PZBQ5r5X8ri71h-eZsFH
|
|
|
277
282
|
anthropic/types/beta/beta_server_tool_use_block.py,sha256=w1TMUg0APiwSZqiUkXd137Fg1SGr9xIX90qvMrZF6Jg,426
|
|
278
283
|
anthropic/types/beta/beta_server_tool_use_block_param.py,sha256=yafWnsAG5jz7NzqcfWAnLtH86p-nNejxW1IUQmmnIJk,762
|
|
279
284
|
anthropic/types/beta/beta_signature_delta.py,sha256=LGjB7AM6uCcjn5diCtgzSPGMssf-hfS-JQbvtTmY2-I,289
|
|
285
|
+
anthropic/types/beta/beta_skill.py,sha256=eyvKq-A7cSfW3kWNP6KSFHoYCxfTnRe-CgQ396Wx8Js,454
|
|
286
|
+
anthropic/types/beta/beta_skill_params.py,sha256=xqw8ygiJ1oXn5PERZHfY1Pb8doQsZ3_E4WwruG6n7cI,522
|
|
280
287
|
anthropic/types/beta/beta_stop_reason.py,sha256=ndrI-m-0sFW7HD8wlEIZrznffRVj6mAWsnR4Gk61AC8,322
|
|
281
288
|
anthropic/types/beta/beta_text_block.py,sha256=irciVXypUcB5drTF5p0btH1QzB3ZlfEXq7XxjF1cs_U,684
|
|
282
289
|
anthropic/types/beta/beta_text_block_param.py,sha256=tRCfSMi2Jitz6KLp9j_7KOuToze3Ctlm-DuQH6Li1Do,693
|
|
@@ -296,7 +303,7 @@ anthropic/types/beta/beta_text_editor_code_execution_view_result_block_param.py,
|
|
|
296
303
|
anthropic/types/beta/beta_thinking_block.py,sha256=R-w0ZLaNZzELS2udP0vtxtDmE2MgNcf5gXz9FyMQVEg,299
|
|
297
304
|
anthropic/types/beta/beta_thinking_block_param.py,sha256=tiOk592SxRHZ77nDIpLuocz35B_1yB3qbr7MTZqhnEA,375
|
|
298
305
|
anthropic/types/beta/beta_thinking_config_disabled_param.py,sha256=tiVjV6z1NxDUdyl43EpEz3BRIFhDG2dQCjcBYjRc54o,334
|
|
299
|
-
anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=
|
|
306
|
+
anthropic/types/beta/beta_thinking_config_enabled_param.py,sha256=Wsufale1AF98kNN0xbBxucO4ScM6JKIANaDfM3toSWE,734
|
|
300
307
|
anthropic/types/beta/beta_thinking_config_param.py,sha256=VK-ZLTr5bUP_Nu1rF5d1eYACPmGbx_HDbta-yWbWxxg,497
|
|
301
308
|
anthropic/types/beta/beta_thinking_delta.py,sha256=4O9zQHhcqtvOz1zeqcJOo1YJpvzNN7t0q0dEzePswcc,285
|
|
302
309
|
anthropic/types/beta/beta_tool_bash_20241022_param.py,sha256=76wGHowVt9Nxe3MNuBwgXS8MtMJ6bvoT0vrEXpsAavQ,713
|
|
@@ -344,11 +351,17 @@ anthropic/types/beta/deleted_file.py,sha256=VwcPcmaViwLDirEQ6zIYk570vhCbHmUk4Lj6
|
|
|
344
351
|
anthropic/types/beta/file_list_params.py,sha256=kujdXupGnzdCtj0zTKyL6M5pgu1oXga64DXZya9uwsA,974
|
|
345
352
|
anthropic/types/beta/file_metadata.py,sha256=SzNnobYc5JO233_12Jr5IDnd7SiDE8XHx4PsvyjuaDY,851
|
|
346
353
|
anthropic/types/beta/file_upload_params.py,sha256=CvW5PpxpP2uyL5iIEWBi0MsNiNyTsrWm4I_5A2Qy__c,631
|
|
347
|
-
anthropic/types/beta/message_count_tokens_params.py,sha256=
|
|
348
|
-
anthropic/types/beta/message_create_params.py,sha256=
|
|
354
|
+
anthropic/types/beta/message_count_tokens_params.py,sha256=aqUe_mHOUIcDLaX5yK6WVuOhPgUuH3VUVh1eOvnXdEw,9161
|
|
355
|
+
anthropic/types/beta/message_create_params.py,sha256=v2ERAB2hEwWm2xsSZ5IE1TVznJ1FcDOh85MlchTVgMk,11261
|
|
349
356
|
anthropic/types/beta/model_list_params.py,sha256=CqxSV6PeWqZOh9D9D1qsJeC6fsWLFQmvY1Q8G1q4Gzo,976
|
|
357
|
+
anthropic/types/beta/skill_create_params.py,sha256=5oyHKyq_Fll_J4PwvxLnI7Jn-ThqfKISSlVClK3AIgQ,978
|
|
358
|
+
anthropic/types/beta/skill_create_response.py,sha256=d6hnEKxiUUvD8chx0RCe0Mm6G-HHCRDz6RDIljc8J24,1161
|
|
359
|
+
anthropic/types/beta/skill_delete_response.py,sha256=6_8iQ8ufvbzoxrrRo2wDC5QPgcdgzMyLo-EhlArNNZw,413
|
|
360
|
+
anthropic/types/beta/skill_list_params.py,sha256=BEzzX3nWpA-EAKx8UIm0_vjcJzDRxWO6o0bkHXuMCS0,1099
|
|
361
|
+
anthropic/types/beta/skill_list_response.py,sha256=jImI_kPHYQ8LHtlzkwD9qjBJHAHps8oLzEJzsarg7nM,1157
|
|
362
|
+
anthropic/types/beta/skill_retrieve_response.py,sha256=MFbkjMKP3a0H38tpsZ4bWZZYLue6eNstgezFJWROROI,1165
|
|
350
363
|
anthropic/types/beta/messages/__init__.py,sha256=6yumvCsY9IXU9jZW1yIrXXGAXzXpByx2Rlc8aWHdQKQ,1202
|
|
351
|
-
anthropic/types/beta/messages/batch_create_params.py,sha256=
|
|
364
|
+
anthropic/types/beta/messages/batch_create_params.py,sha256=CfeW3XVQTVT_iEsdbKFhyxPDBEU735YEr6mGttHB80g,1337
|
|
352
365
|
anthropic/types/beta/messages/batch_list_params.py,sha256=_pVFBKhuHPJ3TqXiA9lWO_5W9bjVG291SRCc5BruLuY,978
|
|
353
366
|
anthropic/types/beta/messages/beta_deleted_message_batch.py,sha256=fxnXySfpTxvxxpB0RPYXPcle6M17Bv4LCeMfDguCFaU,438
|
|
354
367
|
anthropic/types/beta/messages/beta_message_batch.py,sha256=xvKuMyh5ozZWi9ZNQG7MChZ69rd7cWunUU1WhgMsJIo,2437
|
|
@@ -359,8 +372,15 @@ anthropic/types/beta/messages/beta_message_batch_individual_response.py,sha256=M
|
|
|
359
372
|
anthropic/types/beta/messages/beta_message_batch_request_counts.py,sha256=mVj3pgtfgLdOIaMgbPXF8zeh99QuQyPox89T-8g5wWQ,1003
|
|
360
373
|
anthropic/types/beta/messages/beta_message_batch_result.py,sha256=aq-LfNiuRCBg9ZYloNUXRfQEEFJJE7LivWpXyZGIpyg,819
|
|
361
374
|
anthropic/types/beta/messages/beta_message_batch_succeeded_result.py,sha256=y4apNvDRTbJ_ldkpM4tWikiw1o0gROnrITZ0d7Qozrg,355
|
|
375
|
+
anthropic/types/beta/skills/__init__.py,sha256=O7NO7FhQ3882R0q8UthBFi8KlB9Owg93jjdA9ntTGgg,609
|
|
376
|
+
anthropic/types/beta/skills/version_create_params.py,sha256=5608lJ5M0r5fuvRYqndL-8Q6cJWaEs2xQUoGeK-msA8,813
|
|
377
|
+
anthropic/types/beta/skills/version_create_response.py,sha256=h_88pBqDHL-SYefLfx-ZA9i0RVWylO3E6uFZjSrWb8I,1187
|
|
378
|
+
anthropic/types/beta/skills/version_delete_response.py,sha256=_sJ892AuqEtAZ6g5w_r7AmA8N07FfhnLYM4v-jFNXtM,465
|
|
379
|
+
anthropic/types/beta/skills/version_list_params.py,sha256=7ybJm6AoOfrRE22qEF3GaBdDvkpTal1DoywiMN0y8QM,773
|
|
380
|
+
anthropic/types/beta/skills/version_list_response.py,sha256=S2ifcSXltFr4yJzhCEtuQAQtQ0sMycTuv1djhRId5n4,1183
|
|
381
|
+
anthropic/types/beta/skills/version_retrieve_response.py,sha256=1cfKkqynLN5Cy2RpUXdI-tlSZT3NK4e-xIUd4jUwEEo,1191
|
|
362
382
|
anthropic/types/messages/__init__.py,sha256=rL0U5ew9nqZzJRMked2CdI-UVIauM0cAx8O9a2RF5qo,1076
|
|
363
|
-
anthropic/types/messages/batch_create_params.py,sha256=
|
|
383
|
+
anthropic/types/messages/batch_create_params.py,sha256=PoXSHIY3CkcXXIaHV4ultrEf3fHD7yrtwtDfkOpIHyU,1069
|
|
364
384
|
anthropic/types/messages/batch_list_params.py,sha256=uuyRsq3a2qb89vESjKuvz7l6bkVewfQSJsVzWp8lKrI,691
|
|
365
385
|
anthropic/types/messages/deleted_message_batch.py,sha256=f5CDJzj4UEsRAy9SkYivpMuz-E5lpfoLHTl8mLeThAg,429
|
|
366
386
|
anthropic/types/messages/message_batch.py,sha256=2Oxp1wiOkp22w_UvIkBL4cgwH-4IkZcAx7MpN-ycYGg,2415
|
|
@@ -383,7 +403,7 @@ anthropic/types/shared/not_found_error.py,sha256=R6OsCvAmsf_SB2TwoX6E63o049qZMaA
|
|
|
383
403
|
anthropic/types/shared/overloaded_error.py,sha256=PlyhHt3wmzcnynSfkWbfP4XkLoWsPa9B39V3CyAdgx8,282
|
|
384
404
|
anthropic/types/shared/permission_error.py,sha256=nuyxtLXOiEkYEbFRXiAWjxU6XtdyjkAaXQ2NgMB3pjw,282
|
|
385
405
|
anthropic/types/shared/rate_limit_error.py,sha256=eYULATjXa6KKdqeBauest7RzuN-bhGsY5BWwH9eYv4c,280
|
|
386
|
-
anthropic-0.
|
|
387
|
-
anthropic-0.
|
|
388
|
-
anthropic-0.
|
|
389
|
-
anthropic-0.
|
|
406
|
+
anthropic-0.71.1.dist-info/METADATA,sha256=POPFz3Z8GAU6VfJ6b-LSXrHgQ895bytGBb3vVw3GSgE,28564
|
|
407
|
+
anthropic-0.71.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
408
|
+
anthropic-0.71.1.dist-info/licenses/LICENSE,sha256=i_lphP-Lz65-SMrnalKeiiUxe6ngKr9_08xk_flWV6Y,1056
|
|
409
|
+
anthropic-0.71.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|