anthropic 1.6.0 → 1.8.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 +33 -0
- data/README.md +1 -1
- data/lib/anthropic/helpers/input_schema/array_of.rb +41 -0
- data/lib/anthropic/helpers/input_schema/base_model.rb +86 -0
- data/lib/anthropic/helpers/input_schema/boolean.rb +29 -0
- data/lib/anthropic/helpers/input_schema/enum_of.rb +63 -0
- data/lib/anthropic/helpers/input_schema/json_schema_converter.rb +199 -0
- data/lib/anthropic/helpers/input_schema/parsed_json.rb +39 -0
- data/lib/anthropic/helpers/input_schema/property_mapping.rb +47 -0
- data/lib/anthropic/helpers/input_schema/union_of.rb +56 -0
- data/lib/anthropic/helpers/input_schema.rb +16 -0
- data/lib/anthropic/helpers/streaming/message_stream.rb +41 -1
- data/lib/anthropic/input_schema.rb +10 -0
- data/lib/anthropic/internal/stream.rb +2 -1
- data/lib/anthropic/internal/transport/base_client.rb +1 -2
- data/lib/anthropic/internal/transport/pooled_net_requester.rb +1 -9
- data/lib/anthropic/internal/type/base_model.rb +2 -9
- data/lib/anthropic/internal/util.rb +1 -1
- data/lib/anthropic/models/beta/beta_bash_code_execution_output_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_output_block_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_result_block.rb +44 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_result_block_param.rb +44 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rb +43 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rb +53 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rb +39 -0
- data/lib/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rb +39 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_20250825.rb +40 -0
- data/lib/anthropic/models/beta/beta_content_block.rb +6 -1
- data/lib/anthropic/models/beta/beta_content_block_param.rb +7 -1
- data/lib/anthropic/models/beta/beta_message.rb +2 -2
- data/lib/anthropic/models/beta/beta_message_param.rb +3 -3
- data/lib/anthropic/models/beta/beta_raw_content_block_start_event.rb +8 -3
- data/lib/anthropic/models/beta/beta_server_tool_use_block.rb +2 -0
- data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +2 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rb +26 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rb +49 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rb +50 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rb +47 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rb +57 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rb +45 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rb +46 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rb +61 -0
- data/lib/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rb +62 -0
- data/lib/anthropic/models/beta/beta_tool_union.rb +3 -1
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +7 -30
- data/lib/anthropic/models/beta/message_create_params.rb +3 -26
- data/lib/anthropic/models/beta/messages/batch_create_params.rb +6 -36
- data/lib/anthropic/models/beta/messages/beta_message_batch.rb +1 -4
- data/lib/anthropic/models/beta_error_response.rb +7 -1
- data/lib/anthropic/models/cache_control_ephemeral.rb +39 -1
- data/lib/anthropic/models/cache_creation.rb +24 -0
- data/lib/anthropic/models/error_response.rb +7 -1
- data/lib/anthropic/models/message_count_tokens_params.rb +1 -24
- data/lib/anthropic/models/message_create_params.rb +1 -24
- data/lib/anthropic/models/messages/batch_create_params.rb +2 -28
- data/lib/anthropic/models/model.rb +6 -0
- data/lib/anthropic/models/tool_use_block.rb +8 -0
- data/lib/anthropic/models/usage.rb +9 -1
- data/lib/anthropic/models.rb +2 -0
- data/lib/anthropic/resources/beta/messages.rb +3 -3
- data/lib/anthropic/resources/messages.rb +85 -1
- data/lib/anthropic/version.rb +1 -1
- data/lib/anthropic.rb +30 -0
- data/rbi/anthropic/errors.rbi +2 -2
- data/rbi/anthropic/helpers/input_schema/array_of.rbi +16 -0
- data/rbi/anthropic/helpers/input_schema/base_model.rbi +21 -0
- data/rbi/anthropic/helpers/input_schema/boolean.rbi +11 -0
- data/rbi/anthropic/helpers/input_schema/enum_of.rbi +30 -0
- data/rbi/anthropic/helpers/input_schema/json_schema_converter.rbi +89 -0
- data/rbi/anthropic/helpers/input_schema/union_of.rbi +23 -0
- data/rbi/anthropic/helpers/structured_output.rbi +16 -0
- data/rbi/anthropic/input_schema.rbi +12 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_output_block.rbi +33 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_output_block_param.rbi +34 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_result_block.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_result_block_param.rbi +77 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rbi +86 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rbi +110 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rbi +101 -0
- data/rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rbi +101 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_20250825.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_content_block.rbi +2 -0
- data/rbi/anthropic/models/beta/beta_content_block_param.rbi +2 -0
- data/rbi/anthropic/models/beta/beta_message.rbi +2 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi +4 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +10 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +10 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rbi +41 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rbi +41 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rbi +73 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbi +73 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rbi +90 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rbi +118 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rbi +110 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rbi +110 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rbi +118 -0
- data/rbi/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rbi +118 -0
- data/rbi/anthropic/models/beta/beta_tool_union.rbi +1 -0
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +7 -48
- data/rbi/anthropic/models/beta/message_create_params.rbi +6 -48
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +6 -48
- data/rbi/anthropic/models/beta_error_response.rbi +10 -2
- data/rbi/anthropic/models/cache_control_ephemeral.rbi +68 -3
- data/rbi/anthropic/models/cache_creation.rbi +45 -0
- data/rbi/anthropic/models/error_response.rbi +10 -2
- data/rbi/anthropic/models/message_count_tokens_params.rbi +2 -48
- data/rbi/anthropic/models/message_create_params.rbi +2 -48
- data/rbi/anthropic/models/messages/batch_create_params.rbi +2 -48
- data/rbi/anthropic/models/usage.rbi +13 -0
- data/rbi/anthropic/models.rbi +2 -0
- data/rbi/anthropic/resources/beta/messages.rbi +6 -72
- data/rbi/anthropic/resources/messages.rbi +3 -72
- data/sig/anthropic/models/beta/beta_bash_code_execution_output_block.rbs +23 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_output_block_param.rbs +23 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_result_block_param.rbs +44 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rbs +48 -0
- data/sig/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rbs +48 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_20250825.rbs +34 -0
- data/sig/anthropic/models/beta/beta_content_block.rbs +2 -0
- data/sig/anthropic/models/beta/beta_content_block_param.rbs +2 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs +2 -0
- data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +7 -1
- data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +7 -1
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rbs +29 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rbs +29 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rbs +49 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rbs +46 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rbs +51 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rbs +53 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rbs +53 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rbs +61 -0
- data/sig/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rbs +61 -0
- data/sig/anthropic/models/beta/beta_tool_union.rbs +1 -0
- data/sig/anthropic/models/beta/message_count_tokens_params.rbs +1 -0
- data/sig/anthropic/models/beta_error_response.rbs +13 -2
- data/sig/anthropic/models/cache_control_ephemeral.rbs +27 -3
- data/sig/anthropic/models/cache_creation.rbs +25 -0
- data/sig/anthropic/models/error_response.rbs +13 -2
- data/sig/anthropic/models/usage.rbs +5 -0
- data/sig/anthropic/models.rbs +2 -0
- metadata +80 -2
@@ -2,6 +2,7 @@ module Anthropic
|
|
2
2
|
module Models
|
3
3
|
type usage =
|
4
4
|
{
|
5
|
+
cache_creation: Anthropic::CacheCreation?,
|
5
6
|
cache_creation_input_tokens: Integer?,
|
6
7
|
cache_read_input_tokens: Integer?,
|
7
8
|
input_tokens: Integer,
|
@@ -11,6 +12,8 @@ module Anthropic
|
|
11
12
|
}
|
12
13
|
|
13
14
|
class Usage < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor cache_creation: Anthropic::CacheCreation?
|
16
|
+
|
14
17
|
attr_accessor cache_creation_input_tokens: Integer?
|
15
18
|
|
16
19
|
attr_accessor cache_read_input_tokens: Integer?
|
@@ -24,6 +27,7 @@ module Anthropic
|
|
24
27
|
attr_accessor service_tier: Anthropic::Models::Usage::service_tier?
|
25
28
|
|
26
29
|
def initialize: (
|
30
|
+
cache_creation: Anthropic::CacheCreation?,
|
27
31
|
cache_creation_input_tokens: Integer?,
|
28
32
|
cache_read_input_tokens: Integer?,
|
29
33
|
input_tokens: Integer,
|
@@ -33,6 +37,7 @@ module Anthropic
|
|
33
37
|
) -> void
|
34
38
|
|
35
39
|
def to_hash: -> {
|
40
|
+
cache_creation: Anthropic::CacheCreation?,
|
36
41
|
cache_creation_input_tokens: Integer?,
|
37
42
|
cache_read_input_tokens: Integer?,
|
38
43
|
input_tokens: Integer,
|
data/sig/anthropic/models.rbs
CHANGED
@@ -37,6 +37,8 @@ module Anthropic
|
|
37
37
|
|
38
38
|
class CacheControlEphemeral = Anthropic::Models::CacheControlEphemeral
|
39
39
|
|
40
|
+
class CacheCreation = Anthropic::Models::CacheCreation
|
41
|
+
|
40
42
|
class CitationCharLocation = Anthropic::Models::CitationCharLocation
|
41
43
|
|
42
44
|
class CitationCharLocationParam = Anthropic::Models::CitationCharLocationParam
|
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.8.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-
|
11
|
+
date: 2025-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -41,10 +41,20 @@ files:
|
|
41
41
|
- lib/anthropic/errors.rb
|
42
42
|
- lib/anthropic/file_part.rb
|
43
43
|
- lib/anthropic/helpers/bedrock/client.rb
|
44
|
+
- lib/anthropic/helpers/input_schema.rb
|
45
|
+
- lib/anthropic/helpers/input_schema/array_of.rb
|
46
|
+
- lib/anthropic/helpers/input_schema/base_model.rb
|
47
|
+
- lib/anthropic/helpers/input_schema/boolean.rb
|
48
|
+
- lib/anthropic/helpers/input_schema/enum_of.rb
|
49
|
+
- lib/anthropic/helpers/input_schema/json_schema_converter.rb
|
50
|
+
- lib/anthropic/helpers/input_schema/parsed_json.rb
|
51
|
+
- lib/anthropic/helpers/input_schema/property_mapping.rb
|
52
|
+
- lib/anthropic/helpers/input_schema/union_of.rb
|
44
53
|
- lib/anthropic/helpers/streaming.rb
|
45
54
|
- lib/anthropic/helpers/streaming/events.rb
|
46
55
|
- lib/anthropic/helpers/streaming/message_stream.rb
|
47
56
|
- lib/anthropic/helpers/vertex/client.rb
|
57
|
+
- lib/anthropic/input_schema.rb
|
48
58
|
- lib/anthropic/internal.rb
|
49
59
|
- lib/anthropic/internal/jsonl_stream.rb
|
50
60
|
- lib/anthropic/internal/page.rb
|
@@ -73,6 +83,14 @@ files:
|
|
73
83
|
- lib/anthropic/models/beta/beta_base64_image_source.rb
|
74
84
|
- lib/anthropic/models/beta/beta_base64_pdf_block.rb
|
75
85
|
- lib/anthropic/models/beta/beta_base64_pdf_source.rb
|
86
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_output_block.rb
|
87
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_output_block_param.rb
|
88
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_result_block.rb
|
89
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_result_block_param.rb
|
90
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rb
|
91
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rb
|
92
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rb
|
93
|
+
- lib/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rb
|
76
94
|
- lib/anthropic/models/beta/beta_cache_control_ephemeral.rb
|
77
95
|
- lib/anthropic/models/beta/beta_cache_creation.rb
|
78
96
|
- lib/anthropic/models/beta/beta_citation_char_location.rb
|
@@ -92,6 +110,7 @@ files:
|
|
92
110
|
- lib/anthropic/models/beta/beta_code_execution_result_block.rb
|
93
111
|
- lib/anthropic/models/beta/beta_code_execution_result_block_param.rb
|
94
112
|
- lib/anthropic/models/beta/beta_code_execution_tool_20250522.rb
|
113
|
+
- lib/anthropic/models/beta/beta_code_execution_tool_20250825.rb
|
95
114
|
- lib/anthropic/models/beta/beta_code_execution_tool_result_block.rb
|
96
115
|
- lib/anthropic/models/beta/beta_code_execution_tool_result_block_content.rb
|
97
116
|
- lib/anthropic/models/beta/beta_code_execution_tool_result_block_param.rb
|
@@ -145,6 +164,16 @@ files:
|
|
145
164
|
- lib/anthropic/models/beta/beta_text_citation.rb
|
146
165
|
- lib/anthropic/models/beta/beta_text_citation_param.rb
|
147
166
|
- lib/anthropic/models/beta/beta_text_delta.rb
|
167
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rb
|
168
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rb
|
169
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rb
|
170
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rb
|
171
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rb
|
172
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rb
|
173
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rb
|
174
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rb
|
175
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rb
|
176
|
+
- lib/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rb
|
148
177
|
- lib/anthropic/models/beta/beta_thinking_block.rb
|
149
178
|
- lib/anthropic/models/beta/beta_thinking_block_param.rb
|
150
179
|
- lib/anthropic/models/beta/beta_thinking_config_disabled.rb
|
@@ -221,6 +250,7 @@ files:
|
|
221
250
|
- lib/anthropic/models/beta_rate_limit_error.rb
|
222
251
|
- lib/anthropic/models/billing_error.rb
|
223
252
|
- lib/anthropic/models/cache_control_ephemeral.rb
|
253
|
+
- lib/anthropic/models/cache_creation.rb
|
224
254
|
- lib/anthropic/models/citation_char_location.rb
|
225
255
|
- lib/anthropic/models/citation_char_location_param.rb
|
226
256
|
- lib/anthropic/models/citation_content_block_location.rb
|
@@ -350,9 +380,17 @@ files:
|
|
350
380
|
- rbi/anthropic/errors.rbi
|
351
381
|
- rbi/anthropic/file_part.rbi
|
352
382
|
- rbi/anthropic/helpers/bedrock/client.rbi
|
383
|
+
- rbi/anthropic/helpers/input_schema/array_of.rbi
|
384
|
+
- rbi/anthropic/helpers/input_schema/base_model.rbi
|
385
|
+
- rbi/anthropic/helpers/input_schema/boolean.rbi
|
386
|
+
- rbi/anthropic/helpers/input_schema/enum_of.rbi
|
387
|
+
- rbi/anthropic/helpers/input_schema/json_schema_converter.rbi
|
388
|
+
- rbi/anthropic/helpers/input_schema/union_of.rbi
|
353
389
|
- rbi/anthropic/helpers/streaming/events.rbi
|
354
390
|
- rbi/anthropic/helpers/streaming/message_stream.rbi
|
391
|
+
- rbi/anthropic/helpers/structured_output.rbi
|
355
392
|
- rbi/anthropic/helpers/vertex/client.rbi
|
393
|
+
- rbi/anthropic/input_schema.rbi
|
356
394
|
- rbi/anthropic/internal.rbi
|
357
395
|
- rbi/anthropic/internal/jsonl_stream.rbi
|
358
396
|
- rbi/anthropic/internal/page.rbi
|
@@ -381,6 +419,14 @@ files:
|
|
381
419
|
- rbi/anthropic/models/beta/beta_base64_image_source.rbi
|
382
420
|
- rbi/anthropic/models/beta/beta_base64_pdf_block.rbi
|
383
421
|
- rbi/anthropic/models/beta/beta_base64_pdf_source.rbi
|
422
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_output_block.rbi
|
423
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_output_block_param.rbi
|
424
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_result_block.rbi
|
425
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_result_block_param.rbi
|
426
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rbi
|
427
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rbi
|
428
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rbi
|
429
|
+
- rbi/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rbi
|
384
430
|
- rbi/anthropic/models/beta/beta_cache_control_ephemeral.rbi
|
385
431
|
- rbi/anthropic/models/beta/beta_cache_creation.rbi
|
386
432
|
- rbi/anthropic/models/beta/beta_citation_char_location.rbi
|
@@ -400,6 +446,7 @@ files:
|
|
400
446
|
- rbi/anthropic/models/beta/beta_code_execution_result_block.rbi
|
401
447
|
- rbi/anthropic/models/beta/beta_code_execution_result_block_param.rbi
|
402
448
|
- rbi/anthropic/models/beta/beta_code_execution_tool_20250522.rbi
|
449
|
+
- rbi/anthropic/models/beta/beta_code_execution_tool_20250825.rbi
|
403
450
|
- rbi/anthropic/models/beta/beta_code_execution_tool_result_block.rbi
|
404
451
|
- rbi/anthropic/models/beta/beta_code_execution_tool_result_block_content.rbi
|
405
452
|
- rbi/anthropic/models/beta/beta_code_execution_tool_result_block_param.rbi
|
@@ -453,6 +500,16 @@ files:
|
|
453
500
|
- rbi/anthropic/models/beta/beta_text_citation.rbi
|
454
501
|
- rbi/anthropic/models/beta/beta_text_citation_param.rbi
|
455
502
|
- rbi/anthropic/models/beta/beta_text_delta.rbi
|
503
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rbi
|
504
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rbi
|
505
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rbi
|
506
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbi
|
507
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rbi
|
508
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rbi
|
509
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rbi
|
510
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rbi
|
511
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rbi
|
512
|
+
- rbi/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rbi
|
456
513
|
- rbi/anthropic/models/beta/beta_thinking_block.rbi
|
457
514
|
- rbi/anthropic/models/beta/beta_thinking_block_param.rbi
|
458
515
|
- rbi/anthropic/models/beta/beta_thinking_config_disabled.rbi
|
@@ -529,6 +586,7 @@ files:
|
|
529
586
|
- rbi/anthropic/models/beta_rate_limit_error.rbi
|
530
587
|
- rbi/anthropic/models/billing_error.rbi
|
531
588
|
- rbi/anthropic/models/cache_control_ephemeral.rbi
|
589
|
+
- rbi/anthropic/models/cache_creation.rbi
|
532
590
|
- rbi/anthropic/models/citation_char_location.rbi
|
533
591
|
- rbi/anthropic/models/citation_char_location_param.rbi
|
534
592
|
- rbi/anthropic/models/citation_content_block_location.rbi
|
@@ -688,6 +746,14 @@ files:
|
|
688
746
|
- sig/anthropic/models/beta/beta_base64_image_source.rbs
|
689
747
|
- sig/anthropic/models/beta/beta_base64_pdf_block.rbs
|
690
748
|
- sig/anthropic/models/beta/beta_base64_pdf_source.rbs
|
749
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_output_block.rbs
|
750
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_output_block_param.rbs
|
751
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_result_block.rbs
|
752
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_result_block_param.rbs
|
753
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_tool_result_block.rbs
|
754
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_tool_result_block_param.rbs
|
755
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_tool_result_error.rbs
|
756
|
+
- sig/anthropic/models/beta/beta_bash_code_execution_tool_result_error_param.rbs
|
691
757
|
- sig/anthropic/models/beta/beta_cache_control_ephemeral.rbs
|
692
758
|
- sig/anthropic/models/beta/beta_cache_creation.rbs
|
693
759
|
- sig/anthropic/models/beta/beta_citation_char_location.rbs
|
@@ -707,6 +773,7 @@ files:
|
|
707
773
|
- sig/anthropic/models/beta/beta_code_execution_result_block.rbs
|
708
774
|
- sig/anthropic/models/beta/beta_code_execution_result_block_param.rbs
|
709
775
|
- sig/anthropic/models/beta/beta_code_execution_tool_20250522.rbs
|
776
|
+
- sig/anthropic/models/beta/beta_code_execution_tool_20250825.rbs
|
710
777
|
- sig/anthropic/models/beta/beta_code_execution_tool_result_block.rbs
|
711
778
|
- sig/anthropic/models/beta/beta_code_execution_tool_result_block_content.rbs
|
712
779
|
- sig/anthropic/models/beta/beta_code_execution_tool_result_block_param.rbs
|
@@ -760,6 +827,16 @@ files:
|
|
760
827
|
- sig/anthropic/models/beta/beta_text_citation.rbs
|
761
828
|
- sig/anthropic/models/beta/beta_text_citation_param.rbs
|
762
829
|
- sig/anthropic/models/beta/beta_text_delta.rbs
|
830
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_create_result_block.rbs
|
831
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_create_result_block_param.rbs
|
832
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block.rbs
|
833
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbs
|
834
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block.rbs
|
835
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_block_param.rbs
|
836
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error.rbs
|
837
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_tool_result_error_param.rbs
|
838
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_view_result_block.rbs
|
839
|
+
- sig/anthropic/models/beta/beta_text_editor_code_execution_view_result_block_param.rbs
|
763
840
|
- sig/anthropic/models/beta/beta_thinking_block.rbs
|
764
841
|
- sig/anthropic/models/beta/beta_thinking_block_param.rbs
|
765
842
|
- sig/anthropic/models/beta/beta_thinking_config_disabled.rbs
|
@@ -836,6 +913,7 @@ files:
|
|
836
913
|
- sig/anthropic/models/beta_rate_limit_error.rbs
|
837
914
|
- sig/anthropic/models/billing_error.rbs
|
838
915
|
- sig/anthropic/models/cache_control_ephemeral.rbs
|
916
|
+
- sig/anthropic/models/cache_creation.rbs
|
839
917
|
- sig/anthropic/models/citation_char_location.rbs
|
840
918
|
- sig/anthropic/models/citation_char_location_param.rbs
|
841
919
|
- sig/anthropic/models/citation_content_block_location.rbs
|