anthropic 1.48.0 → 1.48.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 +8 -0
- data/README.md +1 -1
- data/lib/anthropic/models/beta/beta_refusal_stop_details.rb +1 -0
- data/lib/anthropic/models/refusal_stop_details.rb +1 -0
- data/lib/anthropic/version.rb +1 -1
- data/rbi/anthropic/models/beta/beta_refusal_stop_details.rbi +5 -0
- data/rbi/anthropic/models/refusal_stop_details.rbi +5 -0
- data/sig/anthropic/models/beta/beta_refusal_stop_details.rbs +2 -1
- data/sig/anthropic/models/refusal_stop_details.rbs +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d9658d2e43fdcfc11701082172ce0b076645519a1245c12cc7aa36971d62184
|
|
4
|
+
data.tar.gz: 2c40246a6be022f5fa0527144933b5f5cd7928c02ba216f412d7f1eb90856e41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3df9ec3734487252ad82aa9ba9995f825b1232d944ea3e0cb716002709ce4d4007d36a9cb020477a237edf839c74390379d474f6e7c2cd2f0378061b411799fd
|
|
7
|
+
data.tar.gz: 933cc3016a9750c7a69e8890aafefb7bfd4c8745d60b52ac6931c4be254e16a25397e4454d7ff0c11faa24c40f0b73456d7b4e97f5f88ce61f98c59d17fd8c8e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.48.1 (2026-06-09)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.48.0...v1.48.1](https://github.com/anthropics/anthropic-sdk-ruby/compare/v1.48.0...v1.48.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **api:** add `frontier_llm` refusal category ([5fb7044](https://github.com/anthropics/anthropic-sdk-ruby/commit/5fb704475d5296d37065cec77a18867f2ccdee16))
|
|
10
|
+
|
|
3
11
|
## 1.48.0 (2026-06-09)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.47.0...v1.48.0](https://github.com/anthropics/anthropic-sdk-ruby/compare/v1.47.0...v1.48.0)
|
data/README.md
CHANGED
data/lib/anthropic/version.rb
CHANGED
|
@@ -198,6 +198,11 @@ module Anthropic
|
|
|
198
198
|
:bio,
|
|
199
199
|
Anthropic::Beta::BetaRefusalStopDetails::Category::TaggedSymbol
|
|
200
200
|
)
|
|
201
|
+
FRONTIER_LLM =
|
|
202
|
+
T.let(
|
|
203
|
+
:frontier_llm,
|
|
204
|
+
Anthropic::Beta::BetaRefusalStopDetails::Category::TaggedSymbol
|
|
205
|
+
)
|
|
201
206
|
REASONING_EXTRACTION =
|
|
202
207
|
T.let(
|
|
203
208
|
:reasoning_extraction,
|
|
@@ -79,6 +79,11 @@ module Anthropic
|
|
|
79
79
|
CYBER =
|
|
80
80
|
T.let(:cyber, Anthropic::RefusalStopDetails::Category::TaggedSymbol)
|
|
81
81
|
BIO = T.let(:bio, Anthropic::RefusalStopDetails::Category::TaggedSymbol)
|
|
82
|
+
FRONTIER_LLM =
|
|
83
|
+
T.let(
|
|
84
|
+
:frontier_llm,
|
|
85
|
+
Anthropic::RefusalStopDetails::Category::TaggedSymbol
|
|
86
|
+
)
|
|
82
87
|
REASONING_EXTRACTION =
|
|
83
88
|
T.let(
|
|
84
89
|
:reasoning_extraction,
|
|
@@ -44,13 +44,14 @@ module Anthropic
|
|
|
44
44
|
type: :refusal
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
type category = :cyber | :bio | :reasoning_extraction
|
|
47
|
+
type category = :cyber | :bio | :frontier_llm | :reasoning_extraction
|
|
48
48
|
|
|
49
49
|
module Category
|
|
50
50
|
extend Anthropic::Internal::Type::Enum
|
|
51
51
|
|
|
52
52
|
CYBER: :cyber
|
|
53
53
|
BIO: :bio
|
|
54
|
+
FRONTIER_LLM: :frontier_llm
|
|
54
55
|
REASONING_EXTRACTION: :reasoning_extraction
|
|
55
56
|
|
|
56
57
|
def self?.values: -> ::Array[Anthropic::Models::Beta::BetaRefusalStopDetails::category]
|
|
@@ -26,13 +26,14 @@ module Anthropic
|
|
|
26
26
|
type: :refusal
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
type category = :cyber | :bio | :reasoning_extraction
|
|
29
|
+
type category = :cyber | :bio | :frontier_llm | :reasoning_extraction
|
|
30
30
|
|
|
31
31
|
module Category
|
|
32
32
|
extend Anthropic::Internal::Type::Enum
|
|
33
33
|
|
|
34
34
|
CYBER: :cyber
|
|
35
35
|
BIO: :bio
|
|
36
|
+
FRONTIER_LLM: :frontier_llm
|
|
36
37
|
REASONING_EXTRACTION: :reasoning_extraction
|
|
37
38
|
|
|
38
39
|
def self?.values: -> ::Array[Anthropic::Models::RefusalStopDetails::category]
|