anthropic 1.7.0 → 1.9.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 +34 -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 +2 -2
- 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_citation_config.rb +19 -0
- data/lib/anthropic/models/beta/beta_code_execution_tool_20250825.rb +40 -0
- data/lib/anthropic/models/beta/beta_content_block.rb +8 -1
- data/lib/anthropic/models/beta/beta_content_block_param.rb +9 -1
- data/lib/anthropic/models/beta/beta_document_block.rb +56 -0
- 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 +10 -3
- data/lib/anthropic/models/beta/beta_request_document_block.rb +2 -2
- data/lib/anthropic/models/beta/beta_server_tool_usage.rb +9 -1
- data/lib/anthropic/models/beta/beta_server_tool_use_block.rb +3 -0
- data/lib/anthropic/models/beta/beta_server_tool_use_block_param.rb +3 -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_result_block_param.rb +6 -4
- data/lib/anthropic/models/beta/beta_tool_union.rb +5 -1
- data/lib/anthropic/models/beta/beta_web_fetch_block.rb +42 -0
- data/lib/anthropic/models/beta/beta_web_fetch_block_param.rb +42 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_20250910.rb +82 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_block.rb +43 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_block_param.rb +53 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_error_block.rb +25 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_error_block_param.rb +25 -0
- data/lib/anthropic/models/beta/beta_web_fetch_tool_result_error_code.rb +25 -0
- data/lib/anthropic/models/beta/message_count_tokens_params.rb +9 -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/document_block_param.rb +2 -2
- 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_result_block_param.rb +6 -4
- 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 +39 -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_citation_config.rbi +30 -0
- data/rbi/anthropic/models/beta/beta_code_execution_tool_20250825.rbi +72 -0
- data/rbi/anthropic/models/beta/beta_content_block.rbi +3 -0
- data/rbi/anthropic/models/beta/beta_content_block_param.rbi +3 -0
- data/rbi/anthropic/models/beta/beta_document_block.rbi +95 -0
- data/rbi/anthropic/models/beta/beta_message.rbi +3 -0
- data/rbi/anthropic/models/beta/beta_raw_content_block_start_event.rbi +6 -0
- data/rbi/anthropic/models/beta/beta_request_document_block.rbi +5 -3
- data/rbi/anthropic/models/beta/beta_server_tool_usage.rbi +17 -2
- data/rbi/anthropic/models/beta/beta_server_tool_use_block.rbi +15 -0
- data/rbi/anthropic/models/beta/beta_server_tool_use_block_param.rbi +15 -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_result_block_param.rbi +2 -1
- data/rbi/anthropic/models/beta/beta_tool_union.rbi +3 -1
- data/rbi/anthropic/models/beta/beta_web_fetch_block.rbi +67 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_block_param.rbi +71 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_20250910.rbi +125 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_block.rbi +81 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_block_param.rbi +109 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_error_block.rbi +51 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_error_block_param.rbi +50 -0
- data/rbi/anthropic/models/beta/beta_web_fetch_tool_result_error_code.rbi +70 -0
- data/rbi/anthropic/models/beta/message_count_tokens_params.rbi +17 -53
- data/rbi/anthropic/models/beta/message_create_params.rbi +14 -52
- data/rbi/anthropic/models/beta/messages/batch_create_params.rbi +14 -52
- data/rbi/anthropic/models/beta_error_response.rbi +10 -2
- data/rbi/anthropic/models/document_block_param.rbi +7 -3
- 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/tool_result_block_param.rbi +2 -1
- data/rbi/anthropic/resources/beta/messages.rbi +12 -75
- 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_citation_config.rbs +17 -0
- data/sig/anthropic/models/beta/beta_code_execution_tool_20250825.rbs +34 -0
- data/sig/anthropic/models/beta/beta_content_block.rbs +3 -0
- data/sig/anthropic/models/beta/beta_content_block_param.rbs +3 -0
- data/sig/anthropic/models/beta/beta_document_block.rbs +49 -0
- data/sig/anthropic/models/beta/beta_raw_content_block_start_event.rbs +3 -0
- data/sig/anthropic/models/beta/beta_request_document_block.rbs +4 -8
- data/sig/anthropic/models/beta/beta_server_tool_usage.rbs +12 -3
- data/sig/anthropic/models/beta/beta_server_tool_use_block.rbs +9 -1
- data/sig/anthropic/models/beta/beta_server_tool_use_block_param.rbs +9 -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_result_block_param.rbs +1 -0
- data/sig/anthropic/models/beta/beta_tool_union.rbs +2 -0
- data/sig/anthropic/models/beta/beta_web_fetch_block.rbs +39 -0
- data/sig/anthropic/models/beta/beta_web_fetch_block_param.rbs +39 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_20250910.rbs +59 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_block.rbs +44 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_block_param.rbs +49 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_error_block.rbs +29 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_error_block_param.rbs +29 -0
- data/sig/anthropic/models/beta/beta_web_fetch_tool_result_error_code.rbs +32 -0
- data/sig/anthropic/models/beta/message_count_tokens_params.rbs +2 -0
- data/sig/anthropic/models/beta_error_response.rbs +13 -2
- data/sig/anthropic/models/document_block_param.rbs +4 -8
- data/sig/anthropic/models/error_response.rbs +13 -2
- data/sig/anthropic/models/tool_result_block_param.rbs +1 -0
- metadata +107 -2
@@ -0,0 +1,34 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaCodeExecutionTool20250825 = Beta::BetaCodeExecutionTool20250825
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_code_execution_tool20250825 =
|
7
|
+
{
|
8
|
+
name: :code_execution,
|
9
|
+
type: :code_execution_20250825,
|
10
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaCodeExecutionTool20250825 < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor name: :code_execution
|
15
|
+
|
16
|
+
attr_accessor type: :code_execution_20250825
|
17
|
+
|
18
|
+
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
22
|
+
?name: :code_execution,
|
23
|
+
?type: :code_execution_20250825
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
name: :code_execution,
|
28
|
+
type: :code_execution_20250825,
|
29
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
30
|
+
}
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -10,7 +10,10 @@ module Anthropic
|
|
10
10
|
| Anthropic::Beta::BetaToolUseBlock
|
11
11
|
| Anthropic::Beta::BetaServerToolUseBlock
|
12
12
|
| Anthropic::Beta::BetaWebSearchToolResultBlock
|
13
|
+
| Anthropic::Beta::BetaWebFetchToolResultBlock
|
13
14
|
| Anthropic::Beta::BetaCodeExecutionToolResultBlock
|
15
|
+
| Anthropic::Beta::BetaBashCodeExecutionToolResultBlock
|
16
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionToolResultBlock
|
14
17
|
| Anthropic::Beta::BetaMCPToolUseBlock
|
15
18
|
| Anthropic::Beta::BetaMCPToolResultBlock
|
16
19
|
| Anthropic::Beta::BetaContainerUploadBlock
|
@@ -14,7 +14,10 @@ module Anthropic
|
|
14
14
|
| Anthropic::Beta::BetaToolResultBlockParam
|
15
15
|
| Anthropic::Beta::BetaServerToolUseBlockParam
|
16
16
|
| Anthropic::Beta::BetaWebSearchToolResultBlockParam
|
17
|
+
| Anthropic::Beta::BetaWebFetchToolResultBlockParam
|
17
18
|
| Anthropic::Beta::BetaCodeExecutionToolResultBlockParam
|
19
|
+
| Anthropic::Beta::BetaBashCodeExecutionToolResultBlockParam
|
20
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionToolResultBlockParam
|
18
21
|
| Anthropic::Beta::BetaMCPToolUseBlockParam
|
19
22
|
| Anthropic::Beta::BetaRequestMCPToolResultBlockParam
|
20
23
|
| Anthropic::Beta::BetaContainerUploadBlockParam
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaDocumentBlock = Beta::BetaDocumentBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_document_block =
|
7
|
+
{
|
8
|
+
citations: Anthropic::Beta::BetaCitationConfig?,
|
9
|
+
source: Anthropic::Models::Beta::BetaDocumentBlock::source,
|
10
|
+
title: String?,
|
11
|
+
type: :document
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaDocumentBlock < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor citations: Anthropic::Beta::BetaCitationConfig?
|
16
|
+
|
17
|
+
attr_accessor source: Anthropic::Models::Beta::BetaDocumentBlock::source
|
18
|
+
|
19
|
+
attr_accessor title: String?
|
20
|
+
|
21
|
+
attr_accessor type: :document
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
citations: Anthropic::Beta::BetaCitationConfig?,
|
25
|
+
source: Anthropic::Models::Beta::BetaDocumentBlock::source,
|
26
|
+
title: String?,
|
27
|
+
?type: :document
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
citations: Anthropic::Beta::BetaCitationConfig?,
|
32
|
+
source: Anthropic::Models::Beta::BetaDocumentBlock::source,
|
33
|
+
title: String?,
|
34
|
+
type: :document
|
35
|
+
}
|
36
|
+
|
37
|
+
type source =
|
38
|
+
Anthropic::Beta::BetaBase64PDFSource
|
39
|
+
| Anthropic::Beta::BetaPlainTextSource
|
40
|
+
|
41
|
+
module Source
|
42
|
+
extend Anthropic::Internal::Type::Union
|
43
|
+
|
44
|
+
def self?.variants: -> ::Array[Anthropic::Models::Beta::BetaDocumentBlock::source]
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -36,7 +36,10 @@ module Anthropic
|
|
36
36
|
| Anthropic::Beta::BetaToolUseBlock
|
37
37
|
| Anthropic::Beta::BetaServerToolUseBlock
|
38
38
|
| Anthropic::Beta::BetaWebSearchToolResultBlock
|
39
|
+
| Anthropic::Beta::BetaWebFetchToolResultBlock
|
39
40
|
| Anthropic::Beta::BetaCodeExecutionToolResultBlock
|
41
|
+
| Anthropic::Beta::BetaBashCodeExecutionToolResultBlock
|
42
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionToolResultBlock
|
40
43
|
| Anthropic::Beta::BetaMCPToolUseBlock
|
41
44
|
| Anthropic::Beta::BetaMCPToolResultBlock
|
42
45
|
| Anthropic::Beta::BetaContainerUploadBlock
|
@@ -8,7 +8,7 @@ module Anthropic
|
|
8
8
|
source: Anthropic::Models::Beta::BetaRequestDocumentBlock::source,
|
9
9
|
type: :document,
|
10
10
|
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
11
|
-
citations: Anthropic::Beta::BetaCitationsConfigParam
|
11
|
+
citations: Anthropic::Beta::BetaCitationsConfigParam?,
|
12
12
|
context: String?,
|
13
13
|
title: String?
|
14
14
|
}
|
@@ -20,11 +20,7 @@ module Anthropic
|
|
20
20
|
|
21
21
|
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
def citations=: (
|
26
|
-
Anthropic::Beta::BetaCitationsConfigParam
|
27
|
-
) -> Anthropic::Beta::BetaCitationsConfigParam
|
23
|
+
attr_accessor citations: Anthropic::Beta::BetaCitationsConfigParam?
|
28
24
|
|
29
25
|
attr_accessor context: String?
|
30
26
|
|
@@ -33,7 +29,7 @@ module Anthropic
|
|
33
29
|
def initialize: (
|
34
30
|
source: Anthropic::Models::Beta::BetaRequestDocumentBlock::source,
|
35
31
|
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
36
|
-
?citations: Anthropic::Beta::BetaCitationsConfigParam
|
32
|
+
?citations: Anthropic::Beta::BetaCitationsConfigParam?,
|
37
33
|
?context: String?,
|
38
34
|
?title: String?,
|
39
35
|
?type: :document
|
@@ -43,7 +39,7 @@ module Anthropic
|
|
43
39
|
source: Anthropic::Models::Beta::BetaRequestDocumentBlock::source,
|
44
40
|
type: :document,
|
45
41
|
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
46
|
-
citations: Anthropic::Beta::BetaCitationsConfigParam
|
42
|
+
citations: Anthropic::Beta::BetaCitationsConfigParam?,
|
47
43
|
context: String?,
|
48
44
|
title: String?
|
49
45
|
}
|
@@ -3,14 +3,23 @@ module Anthropic
|
|
3
3
|
class BetaServerToolUsage = Beta::BetaServerToolUsage
|
4
4
|
|
5
5
|
module Beta
|
6
|
-
type beta_server_tool_usage =
|
6
|
+
type beta_server_tool_usage =
|
7
|
+
{ web_fetch_requests: Integer, web_search_requests: Integer }
|
7
8
|
|
8
9
|
class BetaServerToolUsage < Anthropic::Internal::Type::BaseModel
|
10
|
+
attr_accessor web_fetch_requests: Integer
|
11
|
+
|
9
12
|
attr_accessor web_search_requests: Integer
|
10
13
|
|
11
|
-
def initialize: (
|
14
|
+
def initialize: (
|
15
|
+
web_fetch_requests: Integer,
|
16
|
+
web_search_requests: Integer
|
17
|
+
) -> void
|
12
18
|
|
13
|
-
def to_hash: -> {
|
19
|
+
def to_hash: -> {
|
20
|
+
web_fetch_requests: Integer,
|
21
|
+
web_search_requests: Integer
|
22
|
+
}
|
14
23
|
end
|
15
24
|
end
|
16
25
|
end
|
@@ -34,13 +34,21 @@ module Anthropic
|
|
34
34
|
type: :server_tool_use
|
35
35
|
}
|
36
36
|
|
37
|
-
type name_ =
|
37
|
+
type name_ =
|
38
|
+
:web_search
|
39
|
+
| :web_fetch
|
40
|
+
| :code_execution
|
41
|
+
| :bash_code_execution
|
42
|
+
| :text_editor_code_execution
|
38
43
|
|
39
44
|
module Name
|
40
45
|
extend Anthropic::Internal::Type::Enum
|
41
46
|
|
42
47
|
WEB_SEARCH: :web_search
|
48
|
+
WEB_FETCH: :web_fetch
|
43
49
|
CODE_EXECUTION: :code_execution
|
50
|
+
BASH_CODE_EXECUTION: :bash_code_execution
|
51
|
+
TEXT_EDITOR_CODE_EXECUTION: :text_editor_code_execution
|
44
52
|
|
45
53
|
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaServerToolUseBlock::name_]
|
46
54
|
end
|
@@ -39,13 +39,21 @@ module Anthropic
|
|
39
39
|
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
40
40
|
}
|
41
41
|
|
42
|
-
type name_ =
|
42
|
+
type name_ =
|
43
|
+
:web_search
|
44
|
+
| :web_fetch
|
45
|
+
| :code_execution
|
46
|
+
| :bash_code_execution
|
47
|
+
| :text_editor_code_execution
|
43
48
|
|
44
49
|
module Name
|
45
50
|
extend Anthropic::Internal::Type::Enum
|
46
51
|
|
47
52
|
WEB_SEARCH: :web_search
|
53
|
+
WEB_FETCH: :web_fetch
|
48
54
|
CODE_EXECUTION: :code_execution
|
55
|
+
BASH_CODE_EXECUTION: :bash_code_execution
|
56
|
+
TEXT_EDITOR_CODE_EXECUTION: :text_editor_code_execution
|
49
57
|
|
50
58
|
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaServerToolUseBlockParam::name_]
|
51
59
|
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionCreateResultBlock = Beta::BetaTextEditorCodeExecutionCreateResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_create_result_block =
|
7
|
+
{
|
8
|
+
is_file_update: bool,
|
9
|
+
type: :text_editor_code_execution_create_result
|
10
|
+
}
|
11
|
+
|
12
|
+
class BetaTextEditorCodeExecutionCreateResultBlock < Anthropic::Internal::Type::BaseModel
|
13
|
+
attr_accessor is_file_update: bool
|
14
|
+
|
15
|
+
attr_accessor type: :text_editor_code_execution_create_result
|
16
|
+
|
17
|
+
def initialize: (
|
18
|
+
is_file_update: bool,
|
19
|
+
?type: :text_editor_code_execution_create_result
|
20
|
+
) -> void
|
21
|
+
|
22
|
+
def to_hash: -> {
|
23
|
+
is_file_update: bool,
|
24
|
+
type: :text_editor_code_execution_create_result
|
25
|
+
}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionCreateResultBlockParam = Beta::BetaTextEditorCodeExecutionCreateResultBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_create_result_block_param =
|
7
|
+
{
|
8
|
+
is_file_update: bool,
|
9
|
+
type: :text_editor_code_execution_create_result
|
10
|
+
}
|
11
|
+
|
12
|
+
class BetaTextEditorCodeExecutionCreateResultBlockParam < Anthropic::Internal::Type::BaseModel
|
13
|
+
attr_accessor is_file_update: bool
|
14
|
+
|
15
|
+
attr_accessor type: :text_editor_code_execution_create_result
|
16
|
+
|
17
|
+
def initialize: (
|
18
|
+
is_file_update: bool,
|
19
|
+
?type: :text_editor_code_execution_create_result
|
20
|
+
) -> void
|
21
|
+
|
22
|
+
def to_hash: -> {
|
23
|
+
is_file_update: bool,
|
24
|
+
type: :text_editor_code_execution_create_result
|
25
|
+
}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionStrReplaceResultBlock = Beta::BetaTextEditorCodeExecutionStrReplaceResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_str_replace_result_block =
|
7
|
+
{
|
8
|
+
lines: ::Array[String]?,
|
9
|
+
new_lines: Integer?,
|
10
|
+
new_start: Integer?,
|
11
|
+
old_lines: Integer?,
|
12
|
+
old_start: Integer?,
|
13
|
+
type: :text_editor_code_execution_str_replace_result
|
14
|
+
}
|
15
|
+
|
16
|
+
class BetaTextEditorCodeExecutionStrReplaceResultBlock < Anthropic::Internal::Type::BaseModel
|
17
|
+
attr_accessor lines: ::Array[String]?
|
18
|
+
|
19
|
+
attr_accessor new_lines: Integer?
|
20
|
+
|
21
|
+
attr_accessor new_start: Integer?
|
22
|
+
|
23
|
+
attr_accessor old_lines: Integer?
|
24
|
+
|
25
|
+
attr_accessor old_start: Integer?
|
26
|
+
|
27
|
+
attr_accessor type: :text_editor_code_execution_str_replace_result
|
28
|
+
|
29
|
+
def initialize: (
|
30
|
+
lines: ::Array[String]?,
|
31
|
+
new_lines: Integer?,
|
32
|
+
new_start: Integer?,
|
33
|
+
old_lines: Integer?,
|
34
|
+
old_start: Integer?,
|
35
|
+
?type: :text_editor_code_execution_str_replace_result
|
36
|
+
) -> void
|
37
|
+
|
38
|
+
def to_hash: -> {
|
39
|
+
lines: ::Array[String]?,
|
40
|
+
new_lines: Integer?,
|
41
|
+
new_start: Integer?,
|
42
|
+
old_lines: Integer?,
|
43
|
+
old_start: Integer?,
|
44
|
+
type: :text_editor_code_execution_str_replace_result
|
45
|
+
}
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/sig/anthropic/models/beta/beta_text_editor_code_execution_str_replace_result_block_param.rbs
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionStrReplaceResultBlockParam = Beta::BetaTextEditorCodeExecutionStrReplaceResultBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_str_replace_result_block_param =
|
7
|
+
{
|
8
|
+
type: :text_editor_code_execution_str_replace_result,
|
9
|
+
lines: ::Array[String]?,
|
10
|
+
new_lines: Integer?,
|
11
|
+
new_start: Integer?,
|
12
|
+
old_lines: Integer?,
|
13
|
+
old_start: Integer?
|
14
|
+
}
|
15
|
+
|
16
|
+
class BetaTextEditorCodeExecutionStrReplaceResultBlockParam < Anthropic::Internal::Type::BaseModel
|
17
|
+
attr_accessor type: :text_editor_code_execution_str_replace_result
|
18
|
+
|
19
|
+
attr_accessor lines: ::Array[String]?
|
20
|
+
|
21
|
+
attr_accessor new_lines: Integer?
|
22
|
+
|
23
|
+
attr_accessor new_start: Integer?
|
24
|
+
|
25
|
+
attr_accessor old_lines: Integer?
|
26
|
+
|
27
|
+
attr_accessor old_start: Integer?
|
28
|
+
|
29
|
+
def initialize: (
|
30
|
+
?lines: ::Array[String]?,
|
31
|
+
?new_lines: Integer?,
|
32
|
+
?new_start: Integer?,
|
33
|
+
?old_lines: Integer?,
|
34
|
+
?old_start: Integer?,
|
35
|
+
?type: :text_editor_code_execution_str_replace_result
|
36
|
+
) -> void
|
37
|
+
|
38
|
+
def to_hash: -> {
|
39
|
+
type: :text_editor_code_execution_str_replace_result,
|
40
|
+
lines: ::Array[String]?,
|
41
|
+
new_lines: Integer?,
|
42
|
+
new_start: Integer?,
|
43
|
+
old_lines: Integer?,
|
44
|
+
old_start: Integer?
|
45
|
+
}
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultBlock = Beta::BetaTextEditorCodeExecutionToolResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_block =
|
7
|
+
{
|
8
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlock::content,
|
9
|
+
tool_use_id: String,
|
10
|
+
type: :text_editor_code_execution_tool_result
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaTextEditorCodeExecutionToolResultBlock < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlock::content
|
15
|
+
|
16
|
+
attr_accessor tool_use_id: String
|
17
|
+
|
18
|
+
attr_accessor type: :text_editor_code_execution_tool_result
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlock::content,
|
22
|
+
tool_use_id: String,
|
23
|
+
?type: :text_editor_code_execution_tool_result
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlock::content,
|
28
|
+
tool_use_id: String,
|
29
|
+
type: :text_editor_code_execution_tool_result
|
30
|
+
}
|
31
|
+
|
32
|
+
type content =
|
33
|
+
Anthropic::Beta::BetaTextEditorCodeExecutionToolResultError
|
34
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionViewResultBlock
|
35
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionCreateResultBlock
|
36
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionStrReplaceResultBlock
|
37
|
+
|
38
|
+
module Content
|
39
|
+
extend Anthropic::Internal::Type::Union
|
40
|
+
|
41
|
+
def self?.variants: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlock::content]
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultBlockParam = Beta::BetaTextEditorCodeExecutionToolResultBlockParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_block_param =
|
7
|
+
{
|
8
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content,
|
9
|
+
tool_use_id: String,
|
10
|
+
type: :text_editor_code_execution_tool_result,
|
11
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
12
|
+
}
|
13
|
+
|
14
|
+
class BetaTextEditorCodeExecutionToolResultBlockParam < Anthropic::Internal::Type::BaseModel
|
15
|
+
attr_accessor content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content
|
16
|
+
|
17
|
+
attr_accessor tool_use_id: String
|
18
|
+
|
19
|
+
attr_accessor type: :text_editor_code_execution_tool_result
|
20
|
+
|
21
|
+
attr_accessor cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
22
|
+
|
23
|
+
def initialize: (
|
24
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content,
|
25
|
+
tool_use_id: String,
|
26
|
+
?cache_control: Anthropic::Beta::BetaCacheControlEphemeral?,
|
27
|
+
?type: :text_editor_code_execution_tool_result
|
28
|
+
) -> void
|
29
|
+
|
30
|
+
def to_hash: -> {
|
31
|
+
content: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content,
|
32
|
+
tool_use_id: String,
|
33
|
+
type: :text_editor_code_execution_tool_result,
|
34
|
+
cache_control: Anthropic::Beta::BetaCacheControlEphemeral?
|
35
|
+
}
|
36
|
+
|
37
|
+
type content =
|
38
|
+
Anthropic::Beta::BetaTextEditorCodeExecutionToolResultErrorParam
|
39
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionViewResultBlockParam
|
40
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionCreateResultBlockParam
|
41
|
+
| Anthropic::Beta::BetaTextEditorCodeExecutionStrReplaceResultBlockParam
|
42
|
+
|
43
|
+
module Content
|
44
|
+
extend Anthropic::Internal::Type::Union
|
45
|
+
|
46
|
+
def self?.variants: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultBlockParam::content]
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultError = Beta::BetaTextEditorCodeExecutionToolResultError
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_error =
|
7
|
+
{
|
8
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code,
|
9
|
+
error_message: String?,
|
10
|
+
type: :text_editor_code_execution_tool_result_error
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaTextEditorCodeExecutionToolResultError < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code
|
15
|
+
|
16
|
+
attr_accessor error_message: String?
|
17
|
+
|
18
|
+
attr_accessor type: :text_editor_code_execution_tool_result_error
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code,
|
22
|
+
error_message: String?,
|
23
|
+
?type: :text_editor_code_execution_tool_result_error
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code,
|
28
|
+
error_message: String?,
|
29
|
+
type: :text_editor_code_execution_tool_result_error
|
30
|
+
}
|
31
|
+
|
32
|
+
type error_code =
|
33
|
+
:invalid_tool_input
|
34
|
+
| :unavailable
|
35
|
+
| :too_many_requests
|
36
|
+
| :execution_time_exceeded
|
37
|
+
| :file_not_found
|
38
|
+
|
39
|
+
module ErrorCode
|
40
|
+
extend Anthropic::Internal::Type::Enum
|
41
|
+
|
42
|
+
INVALID_TOOL_INPUT: :invalid_tool_input
|
43
|
+
UNAVAILABLE: :unavailable
|
44
|
+
TOO_MANY_REQUESTS: :too_many_requests
|
45
|
+
EXECUTION_TIME_EXCEEDED: :execution_time_exceeded
|
46
|
+
FILE_NOT_FOUND: :file_not_found
|
47
|
+
|
48
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultError::error_code]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionToolResultErrorParam = Beta::BetaTextEditorCodeExecutionToolResultErrorParam
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_tool_result_error_param =
|
7
|
+
{
|
8
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code,
|
9
|
+
type: :text_editor_code_execution_tool_result_error,
|
10
|
+
error_message: String?
|
11
|
+
}
|
12
|
+
|
13
|
+
class BetaTextEditorCodeExecutionToolResultErrorParam < Anthropic::Internal::Type::BaseModel
|
14
|
+
attr_accessor error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code
|
15
|
+
|
16
|
+
attr_accessor type: :text_editor_code_execution_tool_result_error
|
17
|
+
|
18
|
+
attr_accessor error_message: String?
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code,
|
22
|
+
?error_message: String?,
|
23
|
+
?type: :text_editor_code_execution_tool_result_error
|
24
|
+
) -> void
|
25
|
+
|
26
|
+
def to_hash: -> {
|
27
|
+
error_code: Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code,
|
28
|
+
type: :text_editor_code_execution_tool_result_error,
|
29
|
+
error_message: String?
|
30
|
+
}
|
31
|
+
|
32
|
+
type error_code =
|
33
|
+
:invalid_tool_input
|
34
|
+
| :unavailable
|
35
|
+
| :too_many_requests
|
36
|
+
| :execution_time_exceeded
|
37
|
+
| :file_not_found
|
38
|
+
|
39
|
+
module ErrorCode
|
40
|
+
extend Anthropic::Internal::Type::Enum
|
41
|
+
|
42
|
+
INVALID_TOOL_INPUT: :invalid_tool_input
|
43
|
+
UNAVAILABLE: :unavailable
|
44
|
+
TOO_MANY_REQUESTS: :too_many_requests
|
45
|
+
EXECUTION_TIME_EXCEEDED: :execution_time_exceeded
|
46
|
+
FILE_NOT_FOUND: :file_not_found
|
47
|
+
|
48
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionToolResultErrorParam::error_code]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
module Anthropic
|
2
|
+
module Models
|
3
|
+
class BetaTextEditorCodeExecutionViewResultBlock = Beta::BetaTextEditorCodeExecutionViewResultBlock
|
4
|
+
|
5
|
+
module Beta
|
6
|
+
type beta_text_editor_code_execution_view_result_block =
|
7
|
+
{
|
8
|
+
content: String,
|
9
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type,
|
10
|
+
num_lines: Integer?,
|
11
|
+
start_line: Integer?,
|
12
|
+
total_lines: Integer?,
|
13
|
+
type: :text_editor_code_execution_view_result
|
14
|
+
}
|
15
|
+
|
16
|
+
class BetaTextEditorCodeExecutionViewResultBlock < Anthropic::Internal::Type::BaseModel
|
17
|
+
attr_accessor content: String
|
18
|
+
|
19
|
+
attr_accessor file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type
|
20
|
+
|
21
|
+
attr_accessor num_lines: Integer?
|
22
|
+
|
23
|
+
attr_accessor start_line: Integer?
|
24
|
+
|
25
|
+
attr_accessor total_lines: Integer?
|
26
|
+
|
27
|
+
attr_accessor type: :text_editor_code_execution_view_result
|
28
|
+
|
29
|
+
def initialize: (
|
30
|
+
content: String,
|
31
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type,
|
32
|
+
num_lines: Integer?,
|
33
|
+
start_line: Integer?,
|
34
|
+
total_lines: Integer?,
|
35
|
+
?type: :text_editor_code_execution_view_result
|
36
|
+
) -> void
|
37
|
+
|
38
|
+
def to_hash: -> {
|
39
|
+
content: String,
|
40
|
+
file_type: Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type,
|
41
|
+
num_lines: Integer?,
|
42
|
+
start_line: Integer?,
|
43
|
+
total_lines: Integer?,
|
44
|
+
type: :text_editor_code_execution_view_result
|
45
|
+
}
|
46
|
+
|
47
|
+
type file_type = :text | :image | :pdf
|
48
|
+
|
49
|
+
module FileType
|
50
|
+
extend Anthropic::Internal::Type::Enum
|
51
|
+
|
52
|
+
TEXT: :text
|
53
|
+
IMAGE: :image
|
54
|
+
PDF: :pdf
|
55
|
+
|
56
|
+
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaTextEditorCodeExecutionViewResultBlock::file_type]
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|