anthropic-sdk-beta 0.1.0.pre.beta.3 → 0.1.0.pre.beta.5
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/README.md +7 -3
- data/lib/anthropic/version.rb +1 -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: 56854f7522508d99c9bc83146166f916bc3746cf467f873c8e71f34d9955dd52
|
4
|
+
data.tar.gz: 4142064b978423e25b876af85ccbcbde826c82d59cfdcf24bf35688e976421ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7441968a8b2e8fb15c5638729dbb6ef88821121bb11e2d224068578d24b08e65ecf407f6addda09c8699fd1a562f379e207e329f58d2e7b378b72e25790f7b2e
|
7
|
+
data.tar.gz: 4e893f8441a02159c24977a34f2802b434b390d8b4e1a2fc6e98c5b9c5d32a57d4ab607eccb99c26566403fdbccf62078435df9871ab51c0410b38904c13697f
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@ Documentation for released of this gem can be found [on RubyDoc](https://gemdocs
|
|
9
9
|
The underlying REST API documentation can be found on [docs.anthropic.com](https://docs.anthropic.com/claude/reference/).
|
10
10
|
|
11
11
|
## Installation
|
12
|
-
ℹ️ The `anthropic-sdk-beta` gem name is temporary. @alexrudall will be transitioning the [anthropic gem name](https://github.com/alexrudall/anthropic) to this repository. Here's the timeline:
|
12
|
+
ℹ️ The `anthropic-sdk-beta` gem name is temporary. [@alexrudall](https://github.com/alexrudall) will be transitioning the [anthropic gem name](https://github.com/alexrudall/anthropic) to this repository. Here's the timeline:
|
13
13
|
- Early April, 2025: This library is released under the `anthropic-sdk-beta` gem name. We'll be gathering feedback from the community.
|
14
14
|
- Late April/early May: Bump the version `1.0`, and transition the `anthropic` gem name to this repository.
|
15
15
|
|
@@ -18,7 +18,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
18
18
|
<!-- x-release-please-start-version -->
|
19
19
|
|
20
20
|
```ruby
|
21
|
-
gem "anthropic-sdk-beta", "~> 0.1.0.pre.beta.
|
21
|
+
gem "anthropic-sdk-beta", "~> 0.1.0.pre.beta.5"
|
22
22
|
```
|
23
23
|
|
24
24
|
<!-- x-release-please-end -->
|
@@ -52,6 +52,10 @@ message =
|
|
52
52
|
puts(message.content)
|
53
53
|
```
|
54
54
|
|
55
|
+
### Feedback
|
56
|
+
|
57
|
+
We're looking for as much feedback as possible while the SDK is in Beta. If you have recommendations, notice bugs, find things confusing, or anything else, create a github issue. Don't be shy -- we're very open to hearing any thoughts and musings you have!
|
58
|
+
|
55
59
|
### Pagination
|
56
60
|
|
57
61
|
List methods in the Anthropic API are paginated.
|
@@ -340,4 +344,4 @@ This package considers improvements to the (non-runtime) `*.rbi` and `*.rbs` typ
|
|
340
344
|
Ruby 3.1.0 or higher.
|
341
345
|
|
342
346
|
## Acknowledgements
|
343
|
-
Thank you @alexrudall for giving feedback, donating the `anthropic` Ruby Gem name, and paving the way by building the first Anthropic Ruby SDK.
|
347
|
+
Thank you [@alexrudall](https://github.com/alexrudall) for giving feedback, donating the `anthropic` Ruby Gem name, and paving the way by building the first Anthropic Ruby SDK.
|
data/lib/anthropic/version.rb
CHANGED