anthropic 1.9.0 → 1.10.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 +28 -0
- data/README.md +12 -12
- data/lib/anthropic/errors.rb +25 -11
- data/lib/anthropic/internal/page.rb +1 -1
- data/lib/anthropic/internal/stream.rb +1 -0
- data/lib/anthropic/internal/transport/base_client.rb +11 -7
- data/lib/anthropic/internal/type/base_page.rb +1 -1
- data/lib/anthropic/internal/type/base_stream.rb +9 -1
- data/lib/anthropic/internal/util.rb +2 -1
- data/lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rb +98 -0
- data/lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rb +38 -0
- data/lib/anthropic/models/beta/beta_context_management_config.rb +22 -0
- data/lib/anthropic/models/beta/beta_context_management_response.rb +23 -0
- data/lib/anthropic/models/beta/beta_count_tokens_context_management_response.rb +20 -0
- data/lib/anthropic/models/beta/beta_input_tokens_clear_at_least.rb +25 -0
- data/lib/anthropic/models/beta/beta_input_tokens_trigger.rb +25 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818.rb +40 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_command.rb +30 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_create_command.rb +36 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_delete_command.rb +28 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_insert_command.rb +44 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_rename_command.rb +36 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_str_replace_command.rb +44 -0
- data/lib/anthropic/models/beta/beta_memory_tool_20250818_view_command.rb +36 -0
- data/lib/anthropic/models/beta/beta_message.rb +9 -1
- data/lib/anthropic/models/beta/beta_message_tokens_count.rb +13 -1
- data/lib/anthropic/models/beta/beta_raw_message_delta_event.rb +9 -1
- data/lib/anthropic/models/beta/beta_stop_reason.rb +1 -0
- data/lib/anthropic/models/beta/beta_tool_union.rb +3 -1
- data/lib/anthropic/models/beta/beta_tool_uses_keep.rb +25 -0
- data/lib/anthropic/models/beta/beta_tool_uses_trigger.rb +25 -0
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +14 -4
- data/lib/anthropic/models/beta/message_create_params.rb +11 -3
- data/lib/anthropic/models/beta/messages/batch_create_params.rb +11 -3
- data/lib/anthropic/models/model.rb +10 -0
- data/lib/anthropic/models/stop_reason.rb +1 -0
- data/lib/anthropic/resources/beta/messages.rb +12 -6
- data/lib/anthropic/version.rb +1 -1
- data/lib/anthropic.rb +17 -0
- data/rbi/anthropic/errors.rbi +29 -2
- data/rbi/anthropic/internal/transport/base_client.rbi +4 -5
- data/rbi/anthropic/internal/type/base_page.rbi +1 -1
- data/rbi/anthropic/internal/type/base_stream.rbi +16 -1
- data/rbi/anthropic/internal/util.rbi +1 -1
- data/rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rbi +183 -0
- data/rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbi +62 -0
- data/rbi/anthropic/models/beta/beta_context_management_config.rbi +56 -0
- data/rbi/anthropic/models/beta/beta_context_management_response.rbi +53 -0
- data/rbi/anthropic/models/beta/beta_count_tokens_context_management_response.rbi +35 -0
- data/rbi/anthropic/models/beta/beta_input_tokens_clear_at_least.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_input_tokens_trigger.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_command.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_create_command.rbi +53 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_delete_command.rbi +41 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_insert_command.rbi +69 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_rename_command.rbi +55 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_str_replace_command.rbi +64 -0
- data/rbi/anthropic/models/beta/beta_memory_tool_20250818_view_command.rbi +59 -0
- data/rbi/anthropic/models/beta/beta_message.rbi +20 -0
- data/rbi/anthropic/models/beta/beta_message_tokens_count.rbi +40 -2
- data/rbi/anthropic/models/beta/beta_raw_message_delta_event.rbi +20 -0
- data/rbi/anthropic/models/beta/beta_stop_reason.rbi +5 -0
- data/rbi/anthropic/models/beta/beta_tool_union.rbi +1 -0
- data/rbi/anthropic/models/beta/beta_tool_uses_keep.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_tool_uses_trigger.rbi +33 -0
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +23 -0
- data/rbi/anthropic/models/beta/message_create_params.rbi +22 -0
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +28 -0
- data/rbi/anthropic/models/model.rbi +8 -0
- data/rbi/anthropic/models/stop_reason.rbi +5 -0
- data/rbi/anthropic/resources/beta/messages.rbi +15 -0
- data/sig/anthropic/errors.rbs +7 -0
- data/sig/anthropic/internal/type/base_stream.rbs +5 -0
- data/sig/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rbs +77 -0
- data/sig/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbs +34 -0
- data/sig/anthropic/models/beta/beta_context_management_config.rbs +26 -0
- data/sig/anthropic/models/beta/beta_context_management_response.rbs +24 -0
- data/sig/anthropic/models/beta/beta_count_tokens_context_management_response.rbs +18 -0
- data/sig/anthropic/models/beta/beta_input_tokens_clear_at_least.rbs +20 -0
- data/sig/anthropic/models/beta/beta_input_tokens_trigger.rbs +19 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818.rbs +34 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_command.rbs +21 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_create_command.rbs +26 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_delete_command.rbs +20 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_insert_command.rbs +39 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_rename_command.rbs +26 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_str_replace_command.rbs +39 -0
- data/sig/anthropic/models/beta/beta_memory_tool_20250818_view_command.rbs +32 -0
- data/sig/anthropic/models/beta/beta_message.rbs +5 -0
- data/sig/anthropic/models/beta/beta_message_tokens_count.rbs +15 -3
- data/sig/anthropic/models/beta/beta_raw_message_delta_event.rbs +5 -0
- data/sig/anthropic/models/beta/beta_stop_reason.rbs +2 -0
- data/sig/anthropic/models/beta/beta_tool_union.rbs +1 -0
- data/sig/anthropic/models/beta/beta_tool_uses_keep.rbs +19 -0
- data/sig/anthropic/models/beta/beta_tool_uses_trigger.rbs +19 -0
- data/sig/anthropic/models/beta/message_count_tokens_params.rbs +6 -0
- data/sig/anthropic/models/beta/message_create_params.rbs +5 -0
- data/sig/anthropic/models/beta/messages/batch_create_params.rbs +5 -0
- data/sig/anthropic/models/model.rbs +8 -0
- data/sig/anthropic/models/stop_reason.rbs +2 -0
- data/sig/anthropic/resources/beta/messages.rbs +3 -0
- metadata +53 -2
@@ -7,6 +7,7 @@ module Anthropic
|
|
7
7
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
8
8
|
model: Anthropic::Models::model,
|
9
9
|
container: String?,
|
10
|
+
context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
10
11
|
mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
11
12
|
metadata: Anthropic::Beta::BetaMetadata,
|
12
13
|
service_tier: Anthropic::Models::Beta::MessageCreateParams::service_tier,
|
@@ -34,6 +35,8 @@ module Anthropic
|
|
34
35
|
|
35
36
|
attr_accessor container: String?
|
36
37
|
|
38
|
+
attr_accessor context_management: Anthropic::Beta::BetaContextManagementConfig?
|
39
|
+
|
37
40
|
attr_reader mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition]?
|
38
41
|
|
39
42
|
def mcp_servers=: (
|
@@ -103,6 +106,7 @@ module Anthropic
|
|
103
106
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
104
107
|
model: Anthropic::Models::model,
|
105
108
|
?container: String?,
|
109
|
+
?context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
106
110
|
?mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
107
111
|
?metadata: Anthropic::Beta::BetaMetadata,
|
108
112
|
?service_tier: Anthropic::Models::Beta::MessageCreateParams::service_tier,
|
@@ -123,6 +127,7 @@ module Anthropic
|
|
123
127
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
124
128
|
model: Anthropic::Models::model,
|
125
129
|
container: String?,
|
130
|
+
context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
126
131
|
mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
127
132
|
metadata: Anthropic::Beta::BetaMetadata,
|
128
133
|
service_tier: Anthropic::Models::Beta::MessageCreateParams::service_tier,
|
@@ -60,6 +60,7 @@ module Anthropic
|
|
60
60
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
61
61
|
model: Anthropic::Models::model,
|
62
62
|
container: String?,
|
63
|
+
context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
63
64
|
mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
64
65
|
metadata: Anthropic::Beta::BetaMetadata,
|
65
66
|
service_tier: Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params::service_tier,
|
@@ -83,6 +84,8 @@ module Anthropic
|
|
83
84
|
|
84
85
|
attr_accessor container: String?
|
85
86
|
|
87
|
+
attr_accessor context_management: Anthropic::Beta::BetaContextManagementConfig?
|
88
|
+
|
86
89
|
attr_reader mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition]?
|
87
90
|
|
88
91
|
def mcp_servers=: (
|
@@ -150,6 +153,7 @@ module Anthropic
|
|
150
153
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
151
154
|
model: Anthropic::Models::model,
|
152
155
|
?container: String?,
|
156
|
+
?context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
153
157
|
?mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
154
158
|
?metadata: Anthropic::Beta::BetaMetadata,
|
155
159
|
?service_tier: Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params::service_tier,
|
@@ -169,6 +173,7 @@ module Anthropic
|
|
169
173
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
170
174
|
model: Anthropic::Models::model,
|
171
175
|
container: String?,
|
176
|
+
context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
172
177
|
mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
173
178
|
metadata: Anthropic::Beta::BetaMetadata,
|
174
179
|
service_tier: Anthropic::Models::Beta::Messages::BatchCreateParams::Request::Params::service_tier,
|
@@ -8,6 +8,8 @@ module Anthropic
|
|
8
8
|
| :"claude-sonnet-4-20250514"
|
9
9
|
| :"claude-sonnet-4-0"
|
10
10
|
| :"claude-4-sonnet-20250514"
|
11
|
+
| :"claude-sonnet-4-5"
|
12
|
+
| :"claude-sonnet-4-5-20250929"
|
11
13
|
| :"claude-3-5-sonnet-latest"
|
12
14
|
| :"claude-3-5-sonnet-20241022"
|
13
15
|
| :"claude-3-5-sonnet-20240620"
|
@@ -46,6 +48,12 @@ module Anthropic
|
|
46
48
|
# High-performance model with extended thinking
|
47
49
|
CLAUDE_4_SONNET_20250514: :"claude-4-sonnet-20250514"
|
48
50
|
|
51
|
+
# Our best model for real-world agents and coding
|
52
|
+
CLAUDE_SONNET_4_5: :"claude-sonnet-4-5"
|
53
|
+
|
54
|
+
# Our best model for real-world agents and coding
|
55
|
+
CLAUDE_SONNET_4_5_20250929: :"claude-sonnet-4-5-20250929"
|
56
|
+
|
49
57
|
# Our previous most intelligent model
|
50
58
|
CLAUDE_3_5_SONNET_LATEST: :"claude-3-5-sonnet-latest"
|
51
59
|
|
@@ -7,6 +7,7 @@ module Anthropic
|
|
7
7
|
| :tool_use
|
8
8
|
| :pause_turn
|
9
9
|
| :refusal
|
10
|
+
| :model_context_window_exceeded
|
10
11
|
|
11
12
|
module StopReason
|
12
13
|
extend Anthropic::Internal::Type::Enum
|
@@ -17,6 +18,7 @@ module Anthropic
|
|
17
18
|
TOOL_USE: :tool_use
|
18
19
|
PAUSE_TURN: :pause_turn
|
19
20
|
REFUSAL: :refusal
|
21
|
+
MODEL_CONTEXT_WINDOW_EXCEEDED: :model_context_window_exceeded
|
20
22
|
|
21
23
|
def self?.values: -> ::Array[Anthropic::Models::stop_reason]
|
22
24
|
end
|
@@ -9,6 +9,7 @@ module Anthropic
|
|
9
9
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
10
10
|
model: Anthropic::Models::model,
|
11
11
|
?container: String?,
|
12
|
+
?context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
12
13
|
?mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
13
14
|
?metadata: Anthropic::Beta::BetaMetadata,
|
14
15
|
?service_tier: Anthropic::Models::Beta::MessageCreateParams::service_tier,
|
@@ -29,6 +30,7 @@ module Anthropic
|
|
29
30
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
30
31
|
model: Anthropic::Models::model,
|
31
32
|
?container: String?,
|
33
|
+
?context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
32
34
|
?mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
33
35
|
?metadata: Anthropic::Beta::BetaMetadata,
|
34
36
|
?service_tier: Anthropic::Models::Beta::MessageCreateParams::service_tier,
|
@@ -47,6 +49,7 @@ module Anthropic
|
|
47
49
|
def count_tokens: (
|
48
50
|
messages: ::Array[Anthropic::Beta::BetaMessageParam],
|
49
51
|
model: Anthropic::Models::model,
|
52
|
+
?context_management: Anthropic::Beta::BetaContextManagementConfig?,
|
50
53
|
?mcp_servers: ::Array[Anthropic::Beta::BetaRequestMCPServerURLDefinition],
|
51
54
|
?system_: Anthropic::Models::Beta::MessageCountTokensParams::system_,
|
52
55
|
?thinking: Anthropic::Models::Beta::beta_thinking_config_param,
|
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.10.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-09-
|
11
|
+
date: 2025-09-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -106,6 +106,8 @@ files:
|
|
106
106
|
- lib/anthropic/models/beta/beta_citations_config_param.rb
|
107
107
|
- lib/anthropic/models/beta/beta_citations_delta.rb
|
108
108
|
- lib/anthropic/models/beta/beta_citations_web_search_result_location.rb
|
109
|
+
- lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rb
|
110
|
+
- lib/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rb
|
109
111
|
- lib/anthropic/models/beta/beta_code_execution_output_block.rb
|
110
112
|
- lib/anthropic/models/beta/beta_code_execution_output_block_param.rb
|
111
113
|
- lib/anthropic/models/beta/beta_code_execution_result_block.rb
|
@@ -126,14 +128,27 @@ files:
|
|
126
128
|
- lib/anthropic/models/beta/beta_content_block_param.rb
|
127
129
|
- lib/anthropic/models/beta/beta_content_block_source.rb
|
128
130
|
- lib/anthropic/models/beta/beta_content_block_source_content.rb
|
131
|
+
- lib/anthropic/models/beta/beta_context_management_config.rb
|
132
|
+
- lib/anthropic/models/beta/beta_context_management_response.rb
|
133
|
+
- lib/anthropic/models/beta/beta_count_tokens_context_management_response.rb
|
129
134
|
- lib/anthropic/models/beta/beta_document_block.rb
|
130
135
|
- lib/anthropic/models/beta/beta_file_document_source.rb
|
131
136
|
- lib/anthropic/models/beta/beta_file_image_source.rb
|
132
137
|
- lib/anthropic/models/beta/beta_image_block_param.rb
|
133
138
|
- lib/anthropic/models/beta/beta_input_json_delta.rb
|
139
|
+
- lib/anthropic/models/beta/beta_input_tokens_clear_at_least.rb
|
140
|
+
- lib/anthropic/models/beta/beta_input_tokens_trigger.rb
|
134
141
|
- lib/anthropic/models/beta/beta_mcp_tool_result_block.rb
|
135
142
|
- lib/anthropic/models/beta/beta_mcp_tool_use_block.rb
|
136
143
|
- lib/anthropic/models/beta/beta_mcp_tool_use_block_param.rb
|
144
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818.rb
|
145
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_command.rb
|
146
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_create_command.rb
|
147
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_delete_command.rb
|
148
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_insert_command.rb
|
149
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_rename_command.rb
|
150
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_str_replace_command.rb
|
151
|
+
- lib/anthropic/models/beta/beta_memory_tool_20250818_view_command.rb
|
137
152
|
- lib/anthropic/models/beta/beta_message.rb
|
138
153
|
- lib/anthropic/models/beta/beta_message_delta_usage.rb
|
139
154
|
- lib/anthropic/models/beta/beta_message_param.rb
|
@@ -200,6 +215,8 @@ files:
|
|
200
215
|
- lib/anthropic/models/beta/beta_tool_union.rb
|
201
216
|
- lib/anthropic/models/beta/beta_tool_use_block.rb
|
202
217
|
- lib/anthropic/models/beta/beta_tool_use_block_param.rb
|
218
|
+
- lib/anthropic/models/beta/beta_tool_uses_keep.rb
|
219
|
+
- lib/anthropic/models/beta/beta_tool_uses_trigger.rb
|
203
220
|
- lib/anthropic/models/beta/beta_url_image_source.rb
|
204
221
|
- lib/anthropic/models/beta/beta_url_pdf_source.rb
|
205
222
|
- lib/anthropic/models/beta/beta_usage.rb
|
@@ -452,6 +469,8 @@ files:
|
|
452
469
|
- rbi/anthropic/models/beta/beta_citations_config_param.rbi
|
453
470
|
- rbi/anthropic/models/beta/beta_citations_delta.rbi
|
454
471
|
- rbi/anthropic/models/beta/beta_citations_web_search_result_location.rbi
|
472
|
+
- rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rbi
|
473
|
+
- rbi/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbi
|
455
474
|
- rbi/anthropic/models/beta/beta_code_execution_output_block.rbi
|
456
475
|
- rbi/anthropic/models/beta/beta_code_execution_output_block_param.rbi
|
457
476
|
- rbi/anthropic/models/beta/beta_code_execution_result_block.rbi
|
@@ -472,14 +491,27 @@ files:
|
|
472
491
|
- rbi/anthropic/models/beta/beta_content_block_param.rbi
|
473
492
|
- rbi/anthropic/models/beta/beta_content_block_source.rbi
|
474
493
|
- rbi/anthropic/models/beta/beta_content_block_source_content.rbi
|
494
|
+
- rbi/anthropic/models/beta/beta_context_management_config.rbi
|
495
|
+
- rbi/anthropic/models/beta/beta_context_management_response.rbi
|
496
|
+
- rbi/anthropic/models/beta/beta_count_tokens_context_management_response.rbi
|
475
497
|
- rbi/anthropic/models/beta/beta_document_block.rbi
|
476
498
|
- rbi/anthropic/models/beta/beta_file_document_source.rbi
|
477
499
|
- rbi/anthropic/models/beta/beta_file_image_source.rbi
|
478
500
|
- rbi/anthropic/models/beta/beta_image_block_param.rbi
|
479
501
|
- rbi/anthropic/models/beta/beta_input_json_delta.rbi
|
502
|
+
- rbi/anthropic/models/beta/beta_input_tokens_clear_at_least.rbi
|
503
|
+
- rbi/anthropic/models/beta/beta_input_tokens_trigger.rbi
|
480
504
|
- rbi/anthropic/models/beta/beta_mcp_tool_result_block.rbi
|
481
505
|
- rbi/anthropic/models/beta/beta_mcp_tool_use_block.rbi
|
482
506
|
- rbi/anthropic/models/beta/beta_mcp_tool_use_block_param.rbi
|
507
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818.rbi
|
508
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_command.rbi
|
509
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_create_command.rbi
|
510
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_delete_command.rbi
|
511
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_insert_command.rbi
|
512
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_rename_command.rbi
|
513
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_str_replace_command.rbi
|
514
|
+
- rbi/anthropic/models/beta/beta_memory_tool_20250818_view_command.rbi
|
483
515
|
- rbi/anthropic/models/beta/beta_message.rbi
|
484
516
|
- rbi/anthropic/models/beta/beta_message_delta_usage.rbi
|
485
517
|
- rbi/anthropic/models/beta/beta_message_param.rbi
|
@@ -546,6 +578,8 @@ files:
|
|
546
578
|
- rbi/anthropic/models/beta/beta_tool_union.rbi
|
547
579
|
- rbi/anthropic/models/beta/beta_tool_use_block.rbi
|
548
580
|
- rbi/anthropic/models/beta/beta_tool_use_block_param.rbi
|
581
|
+
- rbi/anthropic/models/beta/beta_tool_uses_keep.rbi
|
582
|
+
- rbi/anthropic/models/beta/beta_tool_uses_trigger.rbi
|
549
583
|
- rbi/anthropic/models/beta/beta_url_image_source.rbi
|
550
584
|
- rbi/anthropic/models/beta/beta_url_pdf_source.rbi
|
551
585
|
- rbi/anthropic/models/beta/beta_usage.rbi
|
@@ -789,6 +823,8 @@ files:
|
|
789
823
|
- sig/anthropic/models/beta/beta_citations_config_param.rbs
|
790
824
|
- sig/anthropic/models/beta/beta_citations_delta.rbs
|
791
825
|
- sig/anthropic/models/beta/beta_citations_web_search_result_location.rbs
|
826
|
+
- sig/anthropic/models/beta/beta_clear_tool_uses_20250919_edit.rbs
|
827
|
+
- sig/anthropic/models/beta/beta_clear_tool_uses_20250919_edit_response.rbs
|
792
828
|
- sig/anthropic/models/beta/beta_code_execution_output_block.rbs
|
793
829
|
- sig/anthropic/models/beta/beta_code_execution_output_block_param.rbs
|
794
830
|
- sig/anthropic/models/beta/beta_code_execution_result_block.rbs
|
@@ -809,14 +845,27 @@ files:
|
|
809
845
|
- sig/anthropic/models/beta/beta_content_block_param.rbs
|
810
846
|
- sig/anthropic/models/beta/beta_content_block_source.rbs
|
811
847
|
- sig/anthropic/models/beta/beta_content_block_source_content.rbs
|
848
|
+
- sig/anthropic/models/beta/beta_context_management_config.rbs
|
849
|
+
- sig/anthropic/models/beta/beta_context_management_response.rbs
|
850
|
+
- sig/anthropic/models/beta/beta_count_tokens_context_management_response.rbs
|
812
851
|
- sig/anthropic/models/beta/beta_document_block.rbs
|
813
852
|
- sig/anthropic/models/beta/beta_file_document_source.rbs
|
814
853
|
- sig/anthropic/models/beta/beta_file_image_source.rbs
|
815
854
|
- sig/anthropic/models/beta/beta_image_block_param.rbs
|
816
855
|
- sig/anthropic/models/beta/beta_input_json_delta.rbs
|
856
|
+
- sig/anthropic/models/beta/beta_input_tokens_clear_at_least.rbs
|
857
|
+
- sig/anthropic/models/beta/beta_input_tokens_trigger.rbs
|
817
858
|
- sig/anthropic/models/beta/beta_mcp_tool_result_block.rbs
|
818
859
|
- sig/anthropic/models/beta/beta_mcp_tool_use_block.rbs
|
819
860
|
- sig/anthropic/models/beta/beta_mcp_tool_use_block_param.rbs
|
861
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818.rbs
|
862
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_command.rbs
|
863
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_create_command.rbs
|
864
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_delete_command.rbs
|
865
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_insert_command.rbs
|
866
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_rename_command.rbs
|
867
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_str_replace_command.rbs
|
868
|
+
- sig/anthropic/models/beta/beta_memory_tool_20250818_view_command.rbs
|
820
869
|
- sig/anthropic/models/beta/beta_message.rbs
|
821
870
|
- sig/anthropic/models/beta/beta_message_delta_usage.rbs
|
822
871
|
- sig/anthropic/models/beta/beta_message_param.rbs
|
@@ -883,6 +932,8 @@ files:
|
|
883
932
|
- sig/anthropic/models/beta/beta_tool_union.rbs
|
884
933
|
- sig/anthropic/models/beta/beta_tool_use_block.rbs
|
885
934
|
- sig/anthropic/models/beta/beta_tool_use_block_param.rbs
|
935
|
+
- sig/anthropic/models/beta/beta_tool_uses_keep.rbs
|
936
|
+
- sig/anthropic/models/beta/beta_tool_uses_trigger.rbs
|
886
937
|
- sig/anthropic/models/beta/beta_url_image_source.rbs
|
887
938
|
- sig/anthropic/models/beta/beta_url_pdf_source.rbs
|
888
939
|
- sig/anthropic/models/beta/beta_usage.rbs
|