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