anthropic 1.7.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 +20 -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/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/tool_use_block.rb +8 -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 +29 -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/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/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/error_response.rbs +13 -2
- metadata +77 -2
@@ -223,30 +223,7 @@ module Anthropic
|
|
223
223
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
224
224
|
# ```
|
225
225
|
#
|
226
|
-
#
|
227
|
-
#
|
228
|
-
# ```json
|
229
|
-
# {
|
230
|
-
# "role": "user",
|
231
|
-
# "content": [
|
232
|
-
# {
|
233
|
-
# "type": "image",
|
234
|
-
# "source": {
|
235
|
-
# "type": "base64",
|
236
|
-
# "media_type": "image/jpeg",
|
237
|
-
# "data": "/9j/4AAQSkZJRg..."
|
238
|
-
# }
|
239
|
-
# },
|
240
|
-
# { "type": "text", "text": "What is in this image?" }
|
241
|
-
# ]
|
242
|
-
# }
|
243
|
-
# ```
|
244
|
-
#
|
245
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
246
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
247
|
-
#
|
248
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
249
|
-
# more input examples.
|
226
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
250
227
|
#
|
251
228
|
# Note that if you want to include a
|
252
229
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -524,6 +501,7 @@ module Anthropic
|
|
524
501
|
Anthropic::Beta::BetaToolBash20241022,
|
525
502
|
Anthropic::Beta::BetaToolBash20250124,
|
526
503
|
Anthropic::Beta::BetaCodeExecutionTool20250522,
|
504
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825,
|
527
505
|
Anthropic::Beta::BetaToolComputerUse20241022,
|
528
506
|
Anthropic::Beta::BetaToolComputerUse20250124,
|
529
507
|
Anthropic::Beta::BetaToolTextEditor20241022,
|
@@ -547,6 +525,7 @@ module Anthropic
|
|
547
525
|
Anthropic::Beta::BetaToolBash20241022::OrHash,
|
548
526
|
Anthropic::Beta::BetaToolBash20250124::OrHash,
|
549
527
|
Anthropic::Beta::BetaCodeExecutionTool20250522::OrHash,
|
528
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825::OrHash,
|
550
529
|
Anthropic::Beta::BetaToolComputerUse20241022::OrHash,
|
551
530
|
Anthropic::Beta::BetaToolComputerUse20250124::OrHash,
|
552
531
|
Anthropic::Beta::BetaToolTextEditor20241022::OrHash,
|
@@ -629,6 +608,7 @@ module Anthropic
|
|
629
608
|
Anthropic::Beta::BetaToolBash20241022::OrHash,
|
630
609
|
Anthropic::Beta::BetaToolBash20250124::OrHash,
|
631
610
|
Anthropic::Beta::BetaCodeExecutionTool20250522::OrHash,
|
611
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825::OrHash,
|
632
612
|
Anthropic::Beta::BetaToolComputerUse20241022::OrHash,
|
633
613
|
Anthropic::Beta::BetaToolComputerUse20250124::OrHash,
|
634
614
|
Anthropic::Beta::BetaToolTextEditor20241022::OrHash,
|
@@ -708,30 +688,7 @@ module Anthropic
|
|
708
688
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
709
689
|
# ```
|
710
690
|
#
|
711
|
-
#
|
712
|
-
#
|
713
|
-
# ```json
|
714
|
-
# {
|
715
|
-
# "role": "user",
|
716
|
-
# "content": [
|
717
|
-
# {
|
718
|
-
# "type": "image",
|
719
|
-
# "source": {
|
720
|
-
# "type": "base64",
|
721
|
-
# "media_type": "image/jpeg",
|
722
|
-
# "data": "/9j/4AAQSkZJRg..."
|
723
|
-
# }
|
724
|
-
# },
|
725
|
-
# { "type": "text", "text": "What is in this image?" }
|
726
|
-
# ]
|
727
|
-
# }
|
728
|
-
# ```
|
729
|
-
#
|
730
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
731
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
732
|
-
#
|
733
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
734
|
-
# more input examples.
|
691
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
735
692
|
#
|
736
693
|
# Note that if you want to include a
|
737
694
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -934,6 +891,7 @@ module Anthropic
|
|
934
891
|
Anthropic::Beta::BetaToolBash20241022,
|
935
892
|
Anthropic::Beta::BetaToolBash20250124,
|
936
893
|
Anthropic::Beta::BetaCodeExecutionTool20250522,
|
894
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825,
|
937
895
|
Anthropic::Beta::BetaToolComputerUse20241022,
|
938
896
|
Anthropic::Beta::BetaToolComputerUse20250124,
|
939
897
|
Anthropic::Beta::BetaToolTextEditor20241022,
|
@@ -11,6 +11,9 @@ module Anthropic
|
|
11
11
|
sig { returns(Anthropic::BetaError::Variants) }
|
12
12
|
attr_accessor :error
|
13
13
|
|
14
|
+
sig { returns(T.nilable(String)) }
|
15
|
+
attr_accessor :request_id
|
16
|
+
|
14
17
|
sig { returns(Symbol) }
|
15
18
|
attr_accessor :type
|
16
19
|
|
@@ -28,15 +31,20 @@ module Anthropic
|
|
28
31
|
Anthropic::BetaAPIError::OrHash,
|
29
32
|
Anthropic::BetaOverloadedError::OrHash
|
30
33
|
),
|
34
|
+
request_id: T.nilable(String),
|
31
35
|
type: Symbol
|
32
36
|
).returns(T.attached_class)
|
33
37
|
end
|
34
|
-
def self.new(error:, type: :error)
|
38
|
+
def self.new(error:, request_id:, type: :error)
|
35
39
|
end
|
36
40
|
|
37
41
|
sig do
|
38
42
|
override.returns(
|
39
|
-
{
|
43
|
+
{
|
44
|
+
error: Anthropic::BetaError::Variants,
|
45
|
+
request_id: T.nilable(String),
|
46
|
+
type: Symbol
|
47
|
+
}
|
40
48
|
)
|
41
49
|
end
|
42
50
|
def to_hash
|
@@ -11,6 +11,9 @@ module Anthropic
|
|
11
11
|
sig { returns(Anthropic::ErrorObject::Variants) }
|
12
12
|
attr_accessor :error
|
13
13
|
|
14
|
+
sig { returns(T.nilable(String)) }
|
15
|
+
attr_accessor :request_id
|
16
|
+
|
14
17
|
sig { returns(Symbol) }
|
15
18
|
attr_accessor :type
|
16
19
|
|
@@ -28,15 +31,20 @@ module Anthropic
|
|
28
31
|
Anthropic::APIErrorObject::OrHash,
|
29
32
|
Anthropic::OverloadedError::OrHash
|
30
33
|
),
|
34
|
+
request_id: T.nilable(String),
|
31
35
|
type: Symbol
|
32
36
|
).returns(T.attached_class)
|
33
37
|
end
|
34
|
-
def self.new(error:, type: :error)
|
38
|
+
def self.new(error:, request_id:, type: :error)
|
35
39
|
end
|
36
40
|
|
37
41
|
sig do
|
38
42
|
override.returns(
|
39
|
-
{
|
43
|
+
{
|
44
|
+
error: Anthropic::ErrorObject::Variants,
|
45
|
+
request_id: T.nilable(String),
|
46
|
+
type: Symbol
|
47
|
+
}
|
40
48
|
)
|
41
49
|
end
|
42
50
|
def to_hash
|
@@ -71,30 +71,7 @@ module Anthropic
|
|
71
71
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
72
72
|
# ```
|
73
73
|
#
|
74
|
-
#
|
75
|
-
#
|
76
|
-
# ```json
|
77
|
-
# {
|
78
|
-
# "role": "user",
|
79
|
-
# "content": [
|
80
|
-
# {
|
81
|
-
# "type": "image",
|
82
|
-
# "source": {
|
83
|
-
# "type": "base64",
|
84
|
-
# "media_type": "image/jpeg",
|
85
|
-
# "data": "/9j/4AAQSkZJRg..."
|
86
|
-
# }
|
87
|
-
# },
|
88
|
-
# { "type": "text", "text": "What is in this image?" }
|
89
|
-
# ]
|
90
|
-
# }
|
91
|
-
# ```
|
92
|
-
#
|
93
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
94
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
95
|
-
#
|
96
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
97
|
-
# more input examples.
|
74
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
98
75
|
#
|
99
76
|
# Note that if you want to include a
|
100
77
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -390,30 +367,7 @@ module Anthropic
|
|
390
367
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
391
368
|
# ```
|
392
369
|
#
|
393
|
-
#
|
394
|
-
#
|
395
|
-
# ```json
|
396
|
-
# {
|
397
|
-
# "role": "user",
|
398
|
-
# "content": [
|
399
|
-
# {
|
400
|
-
# "type": "image",
|
401
|
-
# "source": {
|
402
|
-
# "type": "base64",
|
403
|
-
# "media_type": "image/jpeg",
|
404
|
-
# "data": "/9j/4AAQSkZJRg..."
|
405
|
-
# }
|
406
|
-
# },
|
407
|
-
# { "type": "text", "text": "What is in this image?" }
|
408
|
-
# ]
|
409
|
-
# }
|
410
|
-
# ```
|
411
|
-
#
|
412
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
413
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
414
|
-
#
|
415
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
416
|
-
# more input examples.
|
370
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
417
371
|
#
|
418
372
|
# Note that if you want to include a
|
419
373
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -78,30 +78,7 @@ module Anthropic
|
|
78
78
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
79
79
|
# ```
|
80
80
|
#
|
81
|
-
#
|
82
|
-
#
|
83
|
-
# ```json
|
84
|
-
# {
|
85
|
-
# "role": "user",
|
86
|
-
# "content": [
|
87
|
-
# {
|
88
|
-
# "type": "image",
|
89
|
-
# "source": {
|
90
|
-
# "type": "base64",
|
91
|
-
# "media_type": "image/jpeg",
|
92
|
-
# "data": "/9j/4AAQSkZJRg..."
|
93
|
-
# }
|
94
|
-
# },
|
95
|
-
# { "type": "text", "text": "What is in this image?" }
|
96
|
-
# ]
|
97
|
-
# }
|
98
|
-
# ```
|
99
|
-
#
|
100
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
101
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
102
|
-
#
|
103
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
104
|
-
# more input examples.
|
81
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
105
82
|
#
|
106
83
|
# Note that if you want to include a
|
107
84
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -491,30 +468,7 @@ module Anthropic
|
|
491
468
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
492
469
|
# ```
|
493
470
|
#
|
494
|
-
#
|
495
|
-
#
|
496
|
-
# ```json
|
497
|
-
# {
|
498
|
-
# "role": "user",
|
499
|
-
# "content": [
|
500
|
-
# {
|
501
|
-
# "type": "image",
|
502
|
-
# "source": {
|
503
|
-
# "type": "base64",
|
504
|
-
# "media_type": "image/jpeg",
|
505
|
-
# "data": "/9j/4AAQSkZJRg..."
|
506
|
-
# }
|
507
|
-
# },
|
508
|
-
# { "type": "text", "text": "What is in this image?" }
|
509
|
-
# ]
|
510
|
-
# }
|
511
|
-
# ```
|
512
|
-
#
|
513
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
514
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
515
|
-
#
|
516
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
517
|
-
# more input examples.
|
471
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
518
472
|
#
|
519
473
|
# Note that if you want to include a
|
520
474
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -190,30 +190,7 @@ module Anthropic
|
|
190
190
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
191
191
|
# ```
|
192
192
|
#
|
193
|
-
#
|
194
|
-
#
|
195
|
-
# ```json
|
196
|
-
# {
|
197
|
-
# "role": "user",
|
198
|
-
# "content": [
|
199
|
-
# {
|
200
|
-
# "type": "image",
|
201
|
-
# "source": {
|
202
|
-
# "type": "base64",
|
203
|
-
# "media_type": "image/jpeg",
|
204
|
-
# "data": "/9j/4AAQSkZJRg..."
|
205
|
-
# }
|
206
|
-
# },
|
207
|
-
# { "type": "text", "text": "What is in this image?" }
|
208
|
-
# ]
|
209
|
-
# }
|
210
|
-
# ```
|
211
|
-
#
|
212
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
213
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
214
|
-
#
|
215
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
216
|
-
# more input examples.
|
193
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
217
194
|
#
|
218
195
|
# Note that if you want to include a
|
219
196
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -629,30 +606,7 @@ module Anthropic
|
|
629
606
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
630
607
|
# ```
|
631
608
|
#
|
632
|
-
#
|
633
|
-
#
|
634
|
-
# ```json
|
635
|
-
# {
|
636
|
-
# "role": "user",
|
637
|
-
# "content": [
|
638
|
-
# {
|
639
|
-
# "type": "image",
|
640
|
-
# "source": {
|
641
|
-
# "type": "base64",
|
642
|
-
# "media_type": "image/jpeg",
|
643
|
-
# "data": "/9j/4AAQSkZJRg..."
|
644
|
-
# }
|
645
|
-
# },
|
646
|
-
# { "type": "text", "text": "What is in this image?" }
|
647
|
-
# ]
|
648
|
-
# }
|
649
|
-
# ```
|
650
|
-
#
|
651
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
652
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
653
|
-
#
|
654
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
655
|
-
# more input examples.
|
609
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
656
610
|
#
|
657
611
|
# Note that if you want to include a
|
658
612
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -51,6 +51,7 @@ module Anthropic
|
|
51
51
|
Anthropic::Beta::BetaToolBash20241022::OrHash,
|
52
52
|
Anthropic::Beta::BetaToolBash20250124::OrHash,
|
53
53
|
Anthropic::Beta::BetaCodeExecutionTool20250522::OrHash,
|
54
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825::OrHash,
|
54
55
|
Anthropic::Beta::BetaToolComputerUse20241022::OrHash,
|
55
56
|
Anthropic::Beta::BetaToolComputerUse20250124::OrHash,
|
56
57
|
Anthropic::Beta::BetaToolTextEditor20241022::OrHash,
|
@@ -133,30 +134,7 @@ module Anthropic
|
|
133
134
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
134
135
|
# ```
|
135
136
|
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# ```json
|
139
|
-
# {
|
140
|
-
# "role": "user",
|
141
|
-
# "content": [
|
142
|
-
# {
|
143
|
-
# "type": "image",
|
144
|
-
# "source": {
|
145
|
-
# "type": "base64",
|
146
|
-
# "media_type": "image/jpeg",
|
147
|
-
# "data": "/9j/4AAQSkZJRg..."
|
148
|
-
# }
|
149
|
-
# },
|
150
|
-
# { "type": "text", "text": "What is in this image?" }
|
151
|
-
# ]
|
152
|
-
# }
|
153
|
-
# ```
|
154
|
-
#
|
155
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
156
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
157
|
-
#
|
158
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
159
|
-
# more input examples.
|
137
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
160
138
|
#
|
161
139
|
# Note that if you want to include a
|
162
140
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -366,6 +344,7 @@ module Anthropic
|
|
366
344
|
Anthropic::Beta::BetaToolBash20241022::OrHash,
|
367
345
|
Anthropic::Beta::BetaToolBash20250124::OrHash,
|
368
346
|
Anthropic::Beta::BetaCodeExecutionTool20250522::OrHash,
|
347
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825::OrHash,
|
369
348
|
Anthropic::Beta::BetaToolComputerUse20241022::OrHash,
|
370
349
|
Anthropic::Beta::BetaToolComputerUse20250124::OrHash,
|
371
350
|
Anthropic::Beta::BetaToolTextEditor20241022::OrHash,
|
@@ -452,30 +431,7 @@ module Anthropic
|
|
452
431
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
453
432
|
# ```
|
454
433
|
#
|
455
|
-
#
|
456
|
-
#
|
457
|
-
# ```json
|
458
|
-
# {
|
459
|
-
# "role": "user",
|
460
|
-
# "content": [
|
461
|
-
# {
|
462
|
-
# "type": "image",
|
463
|
-
# "source": {
|
464
|
-
# "type": "base64",
|
465
|
-
# "media_type": "image/jpeg",
|
466
|
-
# "data": "/9j/4AAQSkZJRg..."
|
467
|
-
# }
|
468
|
-
# },
|
469
|
-
# { "type": "text", "text": "What is in this image?" }
|
470
|
-
# ]
|
471
|
-
# }
|
472
|
-
# ```
|
473
|
-
#
|
474
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
475
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
476
|
-
#
|
477
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
478
|
-
# more input examples.
|
434
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
479
435
|
#
|
480
436
|
# Note that if you want to include a
|
481
437
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -677,6 +633,7 @@ module Anthropic
|
|
677
633
|
Anthropic::Beta::BetaToolBash20241022::OrHash,
|
678
634
|
Anthropic::Beta::BetaToolBash20250124::OrHash,
|
679
635
|
Anthropic::Beta::BetaCodeExecutionTool20250522::OrHash,
|
636
|
+
Anthropic::Beta::BetaCodeExecutionTool20250825::OrHash,
|
680
637
|
Anthropic::Beta::BetaToolComputerUse20241022::OrHash,
|
681
638
|
Anthropic::Beta::BetaToolComputerUse20250124::OrHash,
|
682
639
|
Anthropic::Beta::BetaToolTextEditor20241022::OrHash,
|
@@ -748,30 +705,7 @@ module Anthropic
|
|
748
705
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
749
706
|
# ```
|
750
707
|
#
|
751
|
-
#
|
752
|
-
#
|
753
|
-
# ```json
|
754
|
-
# {
|
755
|
-
# "role": "user",
|
756
|
-
# "content": [
|
757
|
-
# {
|
758
|
-
# "type": "image",
|
759
|
-
# "source": {
|
760
|
-
# "type": "base64",
|
761
|
-
# "media_type": "image/jpeg",
|
762
|
-
# "data": "/9j/4AAQSkZJRg..."
|
763
|
-
# }
|
764
|
-
# },
|
765
|
-
# { "type": "text", "text": "What is in this image?" }
|
766
|
-
# ]
|
767
|
-
# }
|
768
|
-
# ```
|
769
|
-
#
|
770
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
771
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
772
|
-
#
|
773
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
774
|
-
# more input examples.
|
708
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
775
709
|
#
|
776
710
|
# Note that if you want to include a
|
777
711
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -120,30 +120,7 @@ module Anthropic
|
|
120
120
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
121
121
|
# ```
|
122
122
|
#
|
123
|
-
#
|
124
|
-
#
|
125
|
-
# ```json
|
126
|
-
# {
|
127
|
-
# "role": "user",
|
128
|
-
# "content": [
|
129
|
-
# {
|
130
|
-
# "type": "image",
|
131
|
-
# "source": {
|
132
|
-
# "type": "base64",
|
133
|
-
# "media_type": "image/jpeg",
|
134
|
-
# "data": "/9j/4AAQSkZJRg..."
|
135
|
-
# }
|
136
|
-
# },
|
137
|
-
# { "type": "text", "text": "What is in this image?" }
|
138
|
-
# ]
|
139
|
-
# }
|
140
|
-
# ```
|
141
|
-
#
|
142
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
143
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
144
|
-
#
|
145
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
146
|
-
# more input examples.
|
123
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
147
124
|
#
|
148
125
|
# Note that if you want to include a
|
149
126
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -712,30 +689,7 @@ module Anthropic
|
|
712
689
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
713
690
|
# ```
|
714
691
|
#
|
715
|
-
#
|
716
|
-
#
|
717
|
-
# ```json
|
718
|
-
# {
|
719
|
-
# "role": "user",
|
720
|
-
# "content": [
|
721
|
-
# {
|
722
|
-
# "type": "image",
|
723
|
-
# "source": {
|
724
|
-
# "type": "base64",
|
725
|
-
# "media_type": "image/jpeg",
|
726
|
-
# "data": "/9j/4AAQSkZJRg..."
|
727
|
-
# }
|
728
|
-
# },
|
729
|
-
# { "type": "text", "text": "What is in this image?" }
|
730
|
-
# ]
|
731
|
-
# }
|
732
|
-
# ```
|
733
|
-
#
|
734
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
735
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
736
|
-
#
|
737
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
738
|
-
# more input examples.
|
692
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
739
693
|
#
|
740
694
|
# Note that if you want to include a
|
741
695
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -991,30 +945,7 @@ module Anthropic
|
|
991
945
|
# { "role": "user", "content": [{ "type": "text", "text": "Hello, Claude" }] }
|
992
946
|
# ```
|
993
947
|
#
|
994
|
-
#
|
995
|
-
#
|
996
|
-
# ```json
|
997
|
-
# {
|
998
|
-
# "role": "user",
|
999
|
-
# "content": [
|
1000
|
-
# {
|
1001
|
-
# "type": "image",
|
1002
|
-
# "source": {
|
1003
|
-
# "type": "base64",
|
1004
|
-
# "media_type": "image/jpeg",
|
1005
|
-
# "data": "/9j/4AAQSkZJRg..."
|
1006
|
-
# }
|
1007
|
-
# },
|
1008
|
-
# { "type": "text", "text": "What is in this image?" }
|
1009
|
-
# ]
|
1010
|
-
# }
|
1011
|
-
# ```
|
1012
|
-
#
|
1013
|
-
# We currently support the `base64` source type for images, and the `image/jpeg`,
|
1014
|
-
# `image/png`, `image/gif`, and `image/webp` media types.
|
1015
|
-
#
|
1016
|
-
# See [examples](https://docs.anthropic.com/en/api/messages-examples#vision) for
|
1017
|
-
# more input examples.
|
948
|
+
# See [input examples](https://docs.anthropic.com/en/api/messages-examples).
|
1018
949
|
#
|
1019
950
|
# Note that if you want to include a
|
1020
951
|
# [system prompt](https://docs.anthropic.com/en/docs/system-prompts), you can use
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaBashCodeExecutionOutputBlock = Beta::BetaBashCodeExecutionOutputBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_bash_code_execution_output_block =
|
7
|
+
{ file_id: String, type: :bash_code_execution_output }
|
8
|
+
|
9
|
+
class BetaBashCodeExecutionOutputBlock < Anthropic::Internal::Type::BaseModel
|
10
|
+
attr_accessor file_id: String
|
11
|
+
|
12
|
+
attr_accessor type: :bash_code_execution_output
|
13
|
+
|
14
|
+
def initialize: (
|
15
|
+
file_id: String,
|
16
|
+
?type: :bash_code_execution_output
|
17
|
+
) -> void
|
18
|
+
|
19
|
+
def to_hash: -> { file_id: String, type: :bash_code_execution_output }
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaBashCodeExecutionOutputBlockParam = Beta::BetaBashCodeExecutionOutputBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_bash_code_execution_output_block_param =
|
7
|
+
{ file_id: String, type: :bash_code_execution_output }
|
8
|
+
|
9
|
+
class BetaBashCodeExecutionOutputBlockParam < Anthropic::Internal::Type::BaseModel
|
10
|
+
attr_accessor file_id: String
|
11
|
+
|
12
|
+
attr_accessor type: :bash_code_execution_output
|
13
|
+
|
14
|
+
def initialize: (
|
15
|
+
file_id: String,
|
16
|
+
?type: :bash_code_execution_output
|
17
|
+
) -> void
|
18
|
+
|
19
|
+
def to_hash: -> { file_id: String, type: :bash_code_execution_output }
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaBashCodeExecutionResultBlock = Beta::BetaBashCodeExecutionResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_bash_code_execution_result_block =
|
7
|
+
{
|
8
|
+
content: ::Array[Anthropic::Beta::BetaBashCodeExecutionOutputBlock],
|
9
|
+
return_code: Integer,
|
10
|
+
stderr: String,
|
11
|
+
stdout: String,
|
12
|
+
type: :bash_code_execution_result
|
13
|
+
}
|
14
|
+
|
15
|
+
class BetaBashCodeExecutionResultBlock < Anthropic::Internal::Type::BaseModel
|
16
|
+
attr_accessor content: ::Array[Anthropic::Beta::BetaBashCodeExecutionOutputBlock]
|
17
|
+
|
18
|
+
attr_accessor return_code: Integer
|
19
|
+
|
20
|
+
attr_accessor stderr: String
|
21
|
+
|
22
|
+
attr_accessor stdout: String
|
23
|
+
|
24
|
+
attr_accessor type: :bash_code_execution_result
|
25
|
+
|
26
|
+
def initialize: (
|
27
|
+
content: ::Array[Anthropic::Beta::BetaBashCodeExecutionOutputBlock],
|
28
|
+
return_code: Integer,
|
29
|
+
stderr: String,
|
30
|
+
stdout: String,
|
31
|
+
?type: :bash_code_execution_result
|
32
|
+
) -> void
|
33
|
+
|
34
|
+
def to_hash: -> {
|
35
|
+
content: ::Array[Anthropic::Beta::BetaBashCodeExecutionOutputBlock],
|
36
|
+
return_code: Integer,
|
37
|
+
stderr: String,
|
38
|
+
stdout: String,
|
39
|
+
type: :bash_code_execution_result
|
40
|
+
}
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|