anthropic 1.11.0 → 1.13.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +29 -0
- data/README.md +1 -1
- data/lib/anthropic/helpers/streaming/message_stream.rb +3 -0
- data/lib/anthropic/internal/page_cursor.rb +92 -0
- data/lib/anthropic/internal/token_page.rb +92 -0
- data/lib/anthropic/internal/transport/pooled_net_requester.rb +30 -24
- data/lib/anthropic/models/anthropic_beta.rb +3 -0
- data/lib/anthropic/models/beta/beta_all_thinking_turns.rb +19 -0
- data/lib/anthropic/models/beta/beta_clear_thinking_20251015_edit.rb +48 -0
- data/lib/anthropic/models/beta/beta_clear_thinking_20251015_edit_response.rb +36 -0
- data/lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rb +0 -2
- data/lib/anthropic/models/beta/beta_container.rb +9 -1
- data/lib/anthropic/models/beta/beta_container_params.rb +34 -0
- data/lib/anthropic/models/beta/beta_context_management_config.rb +17 -5
- data/lib/anthropic/models/beta/beta_context_management_response.rb +16 -5
- data/lib/anthropic/models/beta/beta_mcp_tool_use_block_param.rb +3 -3
- data/lib/anthropic/models/beta/beta_message.rb +4 -2
- data/lib/anthropic/models/beta/beta_raw_message_delta_event.rb +2 -2
- data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +3 -3
- data/lib/anthropic/models/beta/beta_skill.rb +51 -0
- data/lib/anthropic/models/beta/beta_skill_params.rb +51 -0
- data/lib/anthropic/models/beta/beta_thinking_config_enabled.rb +1 -1
- data/lib/anthropic/models/beta/beta_thinking_config_param.rb +1 -1
- data/lib/anthropic/models/beta/beta_thinking_turns.rb +25 -0
- data/lib/anthropic/models/beta/beta_tool.rb +5 -3
- data/lib/anthropic/models/beta/beta_tool_use_block_param.rb +3 -3
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +15 -12
- data/lib/anthropic/models/beta/message_create_params.rb +34 -18
- data/lib/anthropic/models/beta/messages/batch_create_params.rb +39 -20
- data/lib/anthropic/models/beta/skill_create_params.rb +49 -0
- data/lib/anthropic/models/beta/skill_create_response.rb +84 -0
- data/lib/anthropic/models/beta/skill_delete_params.rb +24 -0
- data/lib/anthropic/models/beta/skill_delete_response.rb +34 -0
- data/lib/anthropic/models/beta/skill_list_params.rb +61 -0
- data/lib/anthropic/models/beta/skill_list_response.rb +84 -0
- data/lib/anthropic/models/beta/skill_retrieve_params.rb +24 -0
- data/lib/anthropic/models/beta/skill_retrieve_response.rb +84 -0
- data/lib/anthropic/models/beta/skills/version_create_params.rb +42 -0
- data/lib/anthropic/models/beta/skills/version_create_response.rb +92 -0
- data/lib/anthropic/models/beta/skills/version_delete_params.rb +39 -0
- data/lib/anthropic/models/beta/skills/version_delete_response.rb +36 -0
- data/lib/anthropic/models/beta/skills/version_list_params.rb +47 -0
- data/lib/anthropic/models/beta/skills/version_list_response.rb +92 -0
- data/lib/anthropic/models/beta/skills/version_retrieve_params.rb +39 -0
- data/lib/anthropic/models/beta/skills/version_retrieve_response.rb +92 -0
- data/lib/anthropic/models/completion_create_params.rb +3 -4
- data/lib/anthropic/models/message_count_tokens_params.rb +10 -10
- data/lib/anthropic/models/message_create_params.rb +13 -13
- data/lib/anthropic/models/messages/batch_create_params.rb +14 -15
- data/lib/anthropic/models/model.rb +6 -20
- data/lib/anthropic/models/server_tool_use_block_param.rb +3 -3
- data/lib/anthropic/models/stop_reason.rb +0 -1
- data/lib/anthropic/models/thinking_config_enabled.rb +1 -1
- data/lib/anthropic/models/thinking_config_param.rb +1 -1
- data/lib/anthropic/models/tool.rb +5 -3
- data/lib/anthropic/models/tool_use_block_param.rb +3 -3
- data/lib/anthropic/resources/beta/messages.rb +5 -5
- data/lib/anthropic/resources/beta/skills/versions.rb +154 -0
- data/lib/anthropic/resources/beta/skills.rb +144 -0
- data/lib/anthropic/resources/beta.rb +4 -0
- data/lib/anthropic/resources/completions.rb +4 -4
- data/lib/anthropic/version.rb +1 -1
- data/lib/anthropic.rb +27 -0
- data/rbi/anthropic/internal/page_cursor.rbi +25 -0
- data/rbi/anthropic/internal/token_page.rbi +25 -0
- data/rbi/anthropic/models/anthropic_beta.rbi +2 -0
- data/rbi/anthropic/models/beta/beta_all_thinking_turns.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_clear_thinking_20251015_edit.rbi +109 -0
- data/rbi/anthropic/models/beta/beta_clear_thinking_20251015_edit_response.rbi +61 -0
- data/rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbi +0 -1
- data/rbi/anthropic/models/beta/beta_container.rbi +23 -3
- data/rbi/anthropic/models/beta/beta_container_params.rbi +54 -0
- data/rbi/anthropic/models/beta/beta_context_management_config.rbi +51 -5
- data/rbi/anthropic/models/beta/beta_context_management_response.rbi +32 -4
- data/rbi/anthropic/models/beta/beta_mcp_tool_use_block.rbi +3 -3
- data/rbi/anthropic/models/beta/beta_mcp_tool_use_block_param.rbi +3 -3
- data/rbi/anthropic/models/beta/beta_message.rbi +6 -2
- data/rbi/anthropic/models/beta/beta_raw_message_delta_event.rbi +2 -2
- data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +3 -3
- data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +3 -3
- data/rbi/anthropic/models/beta/beta_skill.rbi +80 -0
- data/rbi/anthropic/models/beta/beta_skill_params.rbi +91 -0
- data/rbi/anthropic/models/beta/beta_thinking_config_enabled.rbi +2 -2
- data/rbi/anthropic/models/beta/beta_thinking_config_param.rbi +1 -1
- data/rbi/anthropic/models/beta/beta_thinking_turns.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_tool.rbi +3 -3
- data/rbi/anthropic/models/beta/beta_tool_use_block.rbi +8 -3
- data/rbi/anthropic/models/beta/beta_tool_use_block_param.rbi +3 -3
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +27 -21
- data/rbi/anthropic/models/beta/message_create_params.rbi +61 -29
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +70 -33
- data/rbi/anthropic/models/beta/skill_create_params.rbi +90 -0
- data/rbi/anthropic/models/beta/skill_create_response.rbi +118 -0
- data/rbi/anthropic/models/beta/skill_delete_params.rbi +62 -0
- data/rbi/anthropic/models/beta/skill_delete_response.rbi +46 -0
- data/rbi/anthropic/models/beta/skill_list_params.rbi +109 -0
- data/rbi/anthropic/models/beta/skill_list_response.rbi +118 -0
- data/rbi/anthropic/models/beta/skill_retrieve_params.rbi +62 -0
- data/rbi/anthropic/models/beta/skill_retrieve_response.rbi +118 -0
- data/rbi/anthropic/models/beta/skills/version_create_params.rbi +79 -0
- data/rbi/anthropic/models/beta/skills/version_create_response.rbi +124 -0
- data/rbi/anthropic/models/beta/skills/version_delete_params.rbi +77 -0
- data/rbi/anthropic/models/beta/skills/version_delete_response.rbi +48 -0
- data/rbi/anthropic/models/beta/skills/version_list_params.rbi +85 -0
- data/rbi/anthropic/models/beta/skills/version_list_response.rbi +124 -0
- data/rbi/anthropic/models/beta/skills/version_retrieve_params.rbi +77 -0
- data/rbi/anthropic/models/beta/skills/version_retrieve_response.rbi +124 -0
- data/rbi/anthropic/models/completion_create_params.rbi +6 -8
- data/rbi/anthropic/models/message_count_tokens_params.rbi +19 -19
- data/rbi/anthropic/models/message_create_params.rbi +24 -24
- data/rbi/anthropic/models/messages/batch_create_params.rbi +26 -28
- data/rbi/anthropic/models/model.rbi +0 -11
- data/rbi/anthropic/models/server_tool_use_block.rbi +8 -3
- data/rbi/anthropic/models/server_tool_use_block_param.rbi +3 -3
- data/rbi/anthropic/models/stop_reason.rbi +0 -5
- data/rbi/anthropic/models/thinking_config_enabled.rbi +2 -2
- data/rbi/anthropic/models/thinking_config_param.rbi +1 -1
- data/rbi/anthropic/models/tool.rbi +3 -3
- data/rbi/anthropic/models/tool_use_block.rbi +8 -3
- data/rbi/anthropic/models/tool_use_block_param.rbi +3 -3
- data/rbi/anthropic/resources/beta/messages.rbi +51 -36
- data/rbi/anthropic/resources/beta/skills/versions.rbi +124 -0
- data/rbi/anthropic/resources/beta/skills.rbi +118 -0
- data/rbi/anthropic/resources/beta.rbi +3 -0
- data/rbi/anthropic/resources/completions.rbi +10 -12
- data/rbi/anthropic/resources/messages.rbi +31 -31
- data/sig/anthropic/internal/page_cursor.rbs +15 -0
- data/sig/anthropic/internal/token_page.rbs +15 -0
- data/sig/anthropic/models/anthropic_beta.rbs +2 -0
- data/sig/anthropic/models/beta/beta_all_thinking_turns.rbs +17 -0
- data/sig/anthropic/models/beta/beta_clear_thinking_20251015_edit.rbs +44 -0
- data/sig/anthropic/models/beta/beta_clear_thinking_20251015_edit_response.rbs +34 -0
- data/sig/anthropic/models/beta/beta_container.rbs +18 -3
- data/sig/anthropic/models/beta/beta_container_params.rbs +26 -0
- data/sig/anthropic/models/beta/beta_context_management_config.rbs +18 -6
- data/sig/anthropic/models/beta/beta_context_management_response.rbs +14 -4
- data/sig/anthropic/models/beta/beta_mcp_tool_use_block.rbs +4 -4
- data/sig/anthropic/models/beta/beta_mcp_tool_use_block_param.rbs +4 -4
- data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +4 -4
- data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +4 -4
- data/sig/anthropic/models/beta/beta_skill.rbs +45 -0
- data/sig/anthropic/models/beta/beta_skill_params.rbs +47 -0
- data/sig/anthropic/models/beta/beta_thinking_turns.rbs +19 -0
- data/sig/anthropic/models/beta/beta_tool.rbs +8 -4
- data/sig/anthropic/models/beta/beta_tool_use_block.rbs +9 -4
- data/sig/anthropic/models/beta/beta_tool_use_block_param.rbs +4 -4
- data/sig/anthropic/models/beta/message_create_params.rbs +12 -4
- data/sig/anthropic/models/beta/messages/batch_create_params.rbs +12 -4
- data/sig/anthropic/models/beta/skill_create_params.rbs +42 -0
- data/sig/anthropic/models/beta/skill_create_response.rbs +52 -0
- data/sig/anthropic/models/beta/skill_delete_params.rbs +30 -0
- data/sig/anthropic/models/beta/skill_delete_response.rbs +17 -0
- data/sig/anthropic/models/beta/skill_list_params.rbs +49 -0
- data/sig/anthropic/models/beta/skill_list_response.rbs +52 -0
- data/sig/anthropic/models/beta/skill_retrieve_params.rbs +30 -0
- data/sig/anthropic/models/beta/skill_retrieve_response.rbs +52 -0
- data/sig/anthropic/models/beta/skills/version_create_params.rbs +39 -0
- data/sig/anthropic/models/beta/skills/version_create_response.rbs +59 -0
- data/sig/anthropic/models/beta/skills/version_delete_params.rbs +39 -0
- data/sig/anthropic/models/beta/skills/version_delete_response.rbs +19 -0
- data/sig/anthropic/models/beta/skills/version_list_params.rbs +44 -0
- data/sig/anthropic/models/beta/skills/version_list_response.rbs +59 -0
- data/sig/anthropic/models/beta/skills/version_retrieve_params.rbs +39 -0
- data/sig/anthropic/models/beta/skills/version_retrieve_response.rbs +59 -0
- data/sig/anthropic/models/model.rbs +0 -11
- data/sig/anthropic/models/server_tool_use_block.rbs +9 -4
- data/sig/anthropic/models/server_tool_use_block_param.rbs +4 -4
- data/sig/anthropic/models/stop_reason.rbs +0 -2
- data/sig/anthropic/models/tool.rbs +8 -4
- data/sig/anthropic/models/tool_use_block.rbs +9 -4
- data/sig/anthropic/models/tool_use_block_param.rbs +4 -4
- data/sig/anthropic/resources/beta/messages.rbs +2 -2
- data/sig/anthropic/resources/beta/skills/versions.rbs +40 -0
- data/sig/anthropic/resources/beta/skills.rbs +38 -0
- data/sig/anthropic/resources/beta.rbs +2 -0
- metadata +83 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: anthropic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anthropic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-10-
|
|
11
|
+
date: 2025-10-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|
|
@@ -58,7 +58,9 @@ files:
|
|
|
58
58
|
- lib/anthropic/internal.rb
|
|
59
59
|
- lib/anthropic/internal/jsonl_stream.rb
|
|
60
60
|
- lib/anthropic/internal/page.rb
|
|
61
|
+
- lib/anthropic/internal/page_cursor.rb
|
|
61
62
|
- lib/anthropic/internal/stream.rb
|
|
63
|
+
- lib/anthropic/internal/token_page.rb
|
|
62
64
|
- lib/anthropic/internal/transport/base_client.rb
|
|
63
65
|
- lib/anthropic/internal/transport/pooled_net_requester.rb
|
|
64
66
|
- lib/anthropic/internal/type/array_of.rb
|
|
@@ -80,6 +82,7 @@ files:
|
|
|
80
82
|
- lib/anthropic/models/authentication_error.rb
|
|
81
83
|
- lib/anthropic/models/base64_image_source.rb
|
|
82
84
|
- lib/anthropic/models/base64_pdf_source.rb
|
|
85
|
+
- lib/anthropic/models/beta/beta_all_thinking_turns.rb
|
|
83
86
|
- lib/anthropic/models/beta/beta_base64_image_source.rb
|
|
84
87
|
- lib/anthropic/models/beta/beta_base64_pdf_block.rb
|
|
85
88
|
- lib/anthropic/models/beta/beta_base64_pdf_source.rb
|
|
@@ -106,6 +109,8 @@ files:
|
|
|
106
109
|
- lib/anthropic/models/beta/beta_citations_config_param.rb
|
|
107
110
|
- lib/anthropic/models/beta/beta_citations_delta.rb
|
|
108
111
|
- lib/anthropic/models/beta/beta_citations_web_search_result_location.rb
|
|
112
|
+
- lib/anthropic/models/beta/beta_clear_thinking_20251015_edit.rb
|
|
113
|
+
- lib/anthropic/models/beta/beta_clear_thinking_20251015_edit_response.rb
|
|
109
114
|
- lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rb
|
|
110
115
|
- lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rb
|
|
111
116
|
- lib/anthropic/models/beta/beta_code_execution_output_block.rb
|
|
@@ -122,6 +127,7 @@ files:
|
|
|
122
127
|
- lib/anthropic/models/beta/beta_code_execution_tool_result_error_code.rb
|
|
123
128
|
- lib/anthropic/models/beta/beta_code_execution_tool_result_error_param.rb
|
|
124
129
|
- lib/anthropic/models/beta/beta_container.rb
|
|
130
|
+
- lib/anthropic/models/beta/beta_container_params.rb
|
|
125
131
|
- lib/anthropic/models/beta/beta_container_upload_block.rb
|
|
126
132
|
- lib/anthropic/models/beta/beta_container_upload_block_param.rb
|
|
127
133
|
- lib/anthropic/models/beta/beta_content_block.rb
|
|
@@ -175,6 +181,8 @@ files:
|
|
|
175
181
|
- lib/anthropic/models/beta/beta_server_tool_use_block.rb
|
|
176
182
|
- lib/anthropic/models/beta/beta_server_tool_use_block_param.rb
|
|
177
183
|
- lib/anthropic/models/beta/beta_signature_delta.rb
|
|
184
|
+
- lib/anthropic/models/beta/beta_skill.rb
|
|
185
|
+
- lib/anthropic/models/beta/beta_skill_params.rb
|
|
178
186
|
- lib/anthropic/models/beta/beta_stop_reason.rb
|
|
179
187
|
- lib/anthropic/models/beta/beta_text_block.rb
|
|
180
188
|
- lib/anthropic/models/beta/beta_text_block_param.rb
|
|
@@ -197,6 +205,7 @@ files:
|
|
|
197
205
|
- lib/anthropic/models/beta/beta_thinking_config_enabled.rb
|
|
198
206
|
- lib/anthropic/models/beta/beta_thinking_config_param.rb
|
|
199
207
|
- lib/anthropic/models/beta/beta_thinking_delta.rb
|
|
208
|
+
- lib/anthropic/models/beta/beta_thinking_turns.rb
|
|
200
209
|
- lib/anthropic/models/beta/beta_tool.rb
|
|
201
210
|
- lib/anthropic/models/beta/beta_tool_bash_20241022.rb
|
|
202
211
|
- lib/anthropic/models/beta/beta_tool_bash_20250124.rb
|
|
@@ -264,6 +273,22 @@ files:
|
|
|
264
273
|
- lib/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rb
|
|
265
274
|
- lib/anthropic/models/beta/model_list_params.rb
|
|
266
275
|
- lib/anthropic/models/beta/model_retrieve_params.rb
|
|
276
|
+
- lib/anthropic/models/beta/skill_create_params.rb
|
|
277
|
+
- lib/anthropic/models/beta/skill_create_response.rb
|
|
278
|
+
- lib/anthropic/models/beta/skill_delete_params.rb
|
|
279
|
+
- lib/anthropic/models/beta/skill_delete_response.rb
|
|
280
|
+
- lib/anthropic/models/beta/skill_list_params.rb
|
|
281
|
+
- lib/anthropic/models/beta/skill_list_response.rb
|
|
282
|
+
- lib/anthropic/models/beta/skill_retrieve_params.rb
|
|
283
|
+
- lib/anthropic/models/beta/skill_retrieve_response.rb
|
|
284
|
+
- lib/anthropic/models/beta/skills/version_create_params.rb
|
|
285
|
+
- lib/anthropic/models/beta/skills/version_create_response.rb
|
|
286
|
+
- lib/anthropic/models/beta/skills/version_delete_params.rb
|
|
287
|
+
- lib/anthropic/models/beta/skills/version_delete_response.rb
|
|
288
|
+
- lib/anthropic/models/beta/skills/version_list_params.rb
|
|
289
|
+
- lib/anthropic/models/beta/skills/version_list_response.rb
|
|
290
|
+
- lib/anthropic/models/beta/skills/version_retrieve_params.rb
|
|
291
|
+
- lib/anthropic/models/beta/skills/version_retrieve_response.rb
|
|
267
292
|
- lib/anthropic/models/beta_api_error.rb
|
|
268
293
|
- lib/anthropic/models/beta_authentication_error.rb
|
|
269
294
|
- lib/anthropic/models/beta_billing_error.rb
|
|
@@ -394,6 +419,8 @@ files:
|
|
|
394
419
|
- lib/anthropic/resources/beta/messages.rb
|
|
395
420
|
- lib/anthropic/resources/beta/messages/batches.rb
|
|
396
421
|
- lib/anthropic/resources/beta/models.rb
|
|
422
|
+
- lib/anthropic/resources/beta/skills.rb
|
|
423
|
+
- lib/anthropic/resources/beta/skills/versions.rb
|
|
397
424
|
- lib/anthropic/resources/completions.rb
|
|
398
425
|
- lib/anthropic/resources/messages.rb
|
|
399
426
|
- lib/anthropic/resources/messages/batches.rb
|
|
@@ -421,7 +448,9 @@ files:
|
|
|
421
448
|
- rbi/anthropic/internal.rbi
|
|
422
449
|
- rbi/anthropic/internal/jsonl_stream.rbi
|
|
423
450
|
- rbi/anthropic/internal/page.rbi
|
|
451
|
+
- rbi/anthropic/internal/page_cursor.rbi
|
|
424
452
|
- rbi/anthropic/internal/stream.rbi
|
|
453
|
+
- rbi/anthropic/internal/token_page.rbi
|
|
425
454
|
- rbi/anthropic/internal/transport/base_client.rbi
|
|
426
455
|
- rbi/anthropic/internal/transport/pooled_net_requester.rbi
|
|
427
456
|
- rbi/anthropic/internal/type/array_of.rbi
|
|
@@ -443,6 +472,7 @@ files:
|
|
|
443
472
|
- rbi/anthropic/models/authentication_error.rbi
|
|
444
473
|
- rbi/anthropic/models/base64_image_source.rbi
|
|
445
474
|
- rbi/anthropic/models/base64_pdf_source.rbi
|
|
475
|
+
- rbi/anthropic/models/beta/beta_all_thinking_turns.rbi
|
|
446
476
|
- rbi/anthropic/models/beta/beta_base64_image_source.rbi
|
|
447
477
|
- rbi/anthropic/models/beta/beta_base64_pdf_block.rbi
|
|
448
478
|
- rbi/anthropic/models/beta/beta_base64_pdf_source.rbi
|
|
@@ -469,6 +499,8 @@ files:
|
|
|
469
499
|
- rbi/anthropic/models/beta/beta_citations_config_param.rbi
|
|
470
500
|
- rbi/anthropic/models/beta/beta_citations_delta.rbi
|
|
471
501
|
- rbi/anthropic/models/beta/beta_citations_web_search_result_location.rbi
|
|
502
|
+
- rbi/anthropic/models/beta/beta_clear_thinking_20251015_edit.rbi
|
|
503
|
+
- rbi/anthropic/models/beta/beta_clear_thinking_20251015_edit_response.rbi
|
|
472
504
|
- rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rbi
|
|
473
505
|
- rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbi
|
|
474
506
|
- rbi/anthropic/models/beta/beta_code_execution_output_block.rbi
|
|
@@ -485,6 +517,7 @@ files:
|
|
|
485
517
|
- rbi/anthropic/models/beta/beta_code_execution_tool_result_error_code.rbi
|
|
486
518
|
- rbi/anthropic/models/beta/beta_code_execution_tool_result_error_param.rbi
|
|
487
519
|
- rbi/anthropic/models/beta/beta_container.rbi
|
|
520
|
+
- rbi/anthropic/models/beta/beta_container_params.rbi
|
|
488
521
|
- rbi/anthropic/models/beta/beta_container_upload_block.rbi
|
|
489
522
|
- rbi/anthropic/models/beta/beta_container_upload_block_param.rbi
|
|
490
523
|
- rbi/anthropic/models/beta/beta_content_block.rbi
|
|
@@ -538,6 +571,8 @@ files:
|
|
|
538
571
|
- rbi/anthropic/models/beta/beta_server_tool_use_block.rbi
|
|
539
572
|
- rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi
|
|
540
573
|
- rbi/anthropic/models/beta/beta_signature_delta.rbi
|
|
574
|
+
- rbi/anthropic/models/beta/beta_skill.rbi
|
|
575
|
+
- rbi/anthropic/models/beta/beta_skill_params.rbi
|
|
541
576
|
- rbi/anthropic/models/beta/beta_stop_reason.rbi
|
|
542
577
|
- rbi/anthropic/models/beta/beta_text_block.rbi
|
|
543
578
|
- rbi/anthropic/models/beta/beta_text_block_param.rbi
|
|
@@ -560,6 +595,7 @@ files:
|
|
|
560
595
|
- rbi/anthropic/models/beta/beta_thinking_config_enabled.rbi
|
|
561
596
|
- rbi/anthropic/models/beta/beta_thinking_config_param.rbi
|
|
562
597
|
- rbi/anthropic/models/beta/beta_thinking_delta.rbi
|
|
598
|
+
- rbi/anthropic/models/beta/beta_thinking_turns.rbi
|
|
563
599
|
- rbi/anthropic/models/beta/beta_tool.rbi
|
|
564
600
|
- rbi/anthropic/models/beta/beta_tool_bash_20241022.rbi
|
|
565
601
|
- rbi/anthropic/models/beta/beta_tool_bash_20250124.rbi
|
|
@@ -627,6 +663,22 @@ files:
|
|
|
627
663
|
- rbi/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbi
|
|
628
664
|
- rbi/anthropic/models/beta/model_list_params.rbi
|
|
629
665
|
- rbi/anthropic/models/beta/model_retrieve_params.rbi
|
|
666
|
+
- rbi/anthropic/models/beta/skill_create_params.rbi
|
|
667
|
+
- rbi/anthropic/models/beta/skill_create_response.rbi
|
|
668
|
+
- rbi/anthropic/models/beta/skill_delete_params.rbi
|
|
669
|
+
- rbi/anthropic/models/beta/skill_delete_response.rbi
|
|
670
|
+
- rbi/anthropic/models/beta/skill_list_params.rbi
|
|
671
|
+
- rbi/anthropic/models/beta/skill_list_response.rbi
|
|
672
|
+
- rbi/anthropic/models/beta/skill_retrieve_params.rbi
|
|
673
|
+
- rbi/anthropic/models/beta/skill_retrieve_response.rbi
|
|
674
|
+
- rbi/anthropic/models/beta/skills/version_create_params.rbi
|
|
675
|
+
- rbi/anthropic/models/beta/skills/version_create_response.rbi
|
|
676
|
+
- rbi/anthropic/models/beta/skills/version_delete_params.rbi
|
|
677
|
+
- rbi/anthropic/models/beta/skills/version_delete_response.rbi
|
|
678
|
+
- rbi/anthropic/models/beta/skills/version_list_params.rbi
|
|
679
|
+
- rbi/anthropic/models/beta/skills/version_list_response.rbi
|
|
680
|
+
- rbi/anthropic/models/beta/skills/version_retrieve_params.rbi
|
|
681
|
+
- rbi/anthropic/models/beta/skills/version_retrieve_response.rbi
|
|
630
682
|
- rbi/anthropic/models/beta_api_error.rbi
|
|
631
683
|
- rbi/anthropic/models/beta_authentication_error.rbi
|
|
632
684
|
- rbi/anthropic/models/beta_billing_error.rbi
|
|
@@ -757,6 +809,8 @@ files:
|
|
|
757
809
|
- rbi/anthropic/resources/beta/messages.rbi
|
|
758
810
|
- rbi/anthropic/resources/beta/messages/batches.rbi
|
|
759
811
|
- rbi/anthropic/resources/beta/models.rbi
|
|
812
|
+
- rbi/anthropic/resources/beta/skills.rbi
|
|
813
|
+
- rbi/anthropic/resources/beta/skills/versions.rbi
|
|
760
814
|
- rbi/anthropic/resources/completions.rbi
|
|
761
815
|
- rbi/anthropic/resources/messages.rbi
|
|
762
816
|
- rbi/anthropic/resources/messages/batches.rbi
|
|
@@ -775,7 +829,9 @@ files:
|
|
|
775
829
|
- sig/anthropic/internal.rbs
|
|
776
830
|
- sig/anthropic/internal/jsonl_stream.rbs
|
|
777
831
|
- sig/anthropic/internal/page.rbs
|
|
832
|
+
- sig/anthropic/internal/page_cursor.rbs
|
|
778
833
|
- sig/anthropic/internal/stream.rbs
|
|
834
|
+
- sig/anthropic/internal/token_page.rbs
|
|
779
835
|
- sig/anthropic/internal/transport/base_client.rbs
|
|
780
836
|
- sig/anthropic/internal/transport/pooled_net_requester.rbs
|
|
781
837
|
- sig/anthropic/internal/type/array_of.rbs
|
|
@@ -797,6 +853,7 @@ files:
|
|
|
797
853
|
- sig/anthropic/models/authentication_error.rbs
|
|
798
854
|
- sig/anthropic/models/base64_image_source.rbs
|
|
799
855
|
- sig/anthropic/models/base64_pdf_source.rbs
|
|
856
|
+
- sig/anthropic/models/beta/beta_all_thinking_turns.rbs
|
|
800
857
|
- sig/anthropic/models/beta/beta_base64_image_source.rbs
|
|
801
858
|
- sig/anthropic/models/beta/beta_base64_pdf_block.rbs
|
|
802
859
|
- sig/anthropic/models/beta/beta_base64_pdf_source.rbs
|
|
@@ -823,6 +880,8 @@ files:
|
|
|
823
880
|
- sig/anthropic/models/beta/beta_citations_config_param.rbs
|
|
824
881
|
- sig/anthropic/models/beta/beta_citations_delta.rbs
|
|
825
882
|
- sig/anthropic/models/beta/beta_citations_web_search_result_location.rbs
|
|
883
|
+
- sig/anthropic/models/beta/beta_clear_thinking_20251015_edit.rbs
|
|
884
|
+
- sig/anthropic/models/beta/beta_clear_thinking_20251015_edit_response.rbs
|
|
826
885
|
- sig/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rbs
|
|
827
886
|
- sig/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbs
|
|
828
887
|
- sig/anthropic/models/beta/beta_code_execution_output_block.rbs
|
|
@@ -839,6 +898,7 @@ files:
|
|
|
839
898
|
- sig/anthropic/models/beta/beta_code_execution_tool_result_error_code.rbs
|
|
840
899
|
- sig/anthropic/models/beta/beta_code_execution_tool_result_error_param.rbs
|
|
841
900
|
- sig/anthropic/models/beta/beta_container.rbs
|
|
901
|
+
- sig/anthropic/models/beta/beta_container_params.rbs
|
|
842
902
|
- sig/anthropic/models/beta/beta_container_upload_block.rbs
|
|
843
903
|
- sig/anthropic/models/beta/beta_container_upload_block_param.rbs
|
|
844
904
|
- sig/anthropic/models/beta/beta_content_block.rbs
|
|
@@ -892,6 +952,8 @@ files:
|
|
|
892
952
|
- sig/anthropic/models/beta/beta_server_tool_use_block.rbs
|
|
893
953
|
- sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs
|
|
894
954
|
- sig/anthropic/models/beta/beta_signature_delta.rbs
|
|
955
|
+
- sig/anthropic/models/beta/beta_skill.rbs
|
|
956
|
+
- sig/anthropic/models/beta/beta_skill_params.rbs
|
|
895
957
|
- sig/anthropic/models/beta/beta_stop_reason.rbs
|
|
896
958
|
- sig/anthropic/models/beta/beta_text_block.rbs
|
|
897
959
|
- sig/anthropic/models/beta/beta_text_block_param.rbs
|
|
@@ -914,6 +976,7 @@ files:
|
|
|
914
976
|
- sig/anthropic/models/beta/beta_thinking_config_enabled.rbs
|
|
915
977
|
- sig/anthropic/models/beta/beta_thinking_config_param.rbs
|
|
916
978
|
- sig/anthropic/models/beta/beta_thinking_delta.rbs
|
|
979
|
+
- sig/anthropic/models/beta/beta_thinking_turns.rbs
|
|
917
980
|
- sig/anthropic/models/beta/beta_tool.rbs
|
|
918
981
|
- sig/anthropic/models/beta/beta_tool_bash_20241022.rbs
|
|
919
982
|
- sig/anthropic/models/beta/beta_tool_bash_20250124.rbs
|
|
@@ -981,6 +1044,22 @@ files:
|
|
|
981
1044
|
- sig/anthropic/models/beta/messages/beta_message_batch_succeeded_result.rbs
|
|
982
1045
|
- sig/anthropic/models/beta/model_list_params.rbs
|
|
983
1046
|
- sig/anthropic/models/beta/model_retrieve_params.rbs
|
|
1047
|
+
- sig/anthropic/models/beta/skill_create_params.rbs
|
|
1048
|
+
- sig/anthropic/models/beta/skill_create_response.rbs
|
|
1049
|
+
- sig/anthropic/models/beta/skill_delete_params.rbs
|
|
1050
|
+
- sig/anthropic/models/beta/skill_delete_response.rbs
|
|
1051
|
+
- sig/anthropic/models/beta/skill_list_params.rbs
|
|
1052
|
+
- sig/anthropic/models/beta/skill_list_response.rbs
|
|
1053
|
+
- sig/anthropic/models/beta/skill_retrieve_params.rbs
|
|
1054
|
+
- sig/anthropic/models/beta/skill_retrieve_response.rbs
|
|
1055
|
+
- sig/anthropic/models/beta/skills/version_create_params.rbs
|
|
1056
|
+
- sig/anthropic/models/beta/skills/version_create_response.rbs
|
|
1057
|
+
- sig/anthropic/models/beta/skills/version_delete_params.rbs
|
|
1058
|
+
- sig/anthropic/models/beta/skills/version_delete_response.rbs
|
|
1059
|
+
- sig/anthropic/models/beta/skills/version_list_params.rbs
|
|
1060
|
+
- sig/anthropic/models/beta/skills/version_list_response.rbs
|
|
1061
|
+
- sig/anthropic/models/beta/skills/version_retrieve_params.rbs
|
|
1062
|
+
- sig/anthropic/models/beta/skills/version_retrieve_response.rbs
|
|
984
1063
|
- sig/anthropic/models/beta_api_error.rbs
|
|
985
1064
|
- sig/anthropic/models/beta_authentication_error.rbs
|
|
986
1065
|
- sig/anthropic/models/beta_billing_error.rbs
|
|
@@ -1111,6 +1190,8 @@ files:
|
|
|
1111
1190
|
- sig/anthropic/resources/beta/messages.rbs
|
|
1112
1191
|
- sig/anthropic/resources/beta/messages/batches.rbs
|
|
1113
1192
|
- sig/anthropic/resources/beta/models.rbs
|
|
1193
|
+
- sig/anthropic/resources/beta/skills.rbs
|
|
1194
|
+
- sig/anthropic/resources/beta/skills/versions.rbs
|
|
1114
1195
|
- sig/anthropic/resources/completions.rbs
|
|
1115
1196
|
- sig/anthropic/resources/messages.rbs
|
|
1116
1197
|
- sig/anthropic/resources/messages/batches.rbs
|