Skip to content

Commit f7e7e64

Browse files
release: 1.33.0 (#312)
* feat(api): add support for Claude Managed Agents * release: 1.33.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent c5032f8 commit f7e7e64

37 files changed

Lines changed: 13219 additions & 24 deletions

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.32.0"
2+
".": "1.33.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 34
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic%2Fanthropic-04225437444990f383d0581df2f07022baab6ad510de0f3a8bd6b07c38d83cc9.yml
3-
openapi_spec_hash: cae9199aabfd7b87f0ff2dcc10760c92
4-
config_hash: fcc34074db6eaf64bc99b578c6c82c61
1+
configured_endpoints: 72
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic%2Fanthropic-69486316563eb49043ec1ef0b8e1d4164b6fadb58c7ae27477f9971448ede066.yml
3+
openapi_spec_hash: 24c3be07d605d11323afa51c7808fa00
4+
config_hash: 60af716d2229a28075dace69c52e5aa1

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.33.0 (2026-04-08)
4+
5+
Full Changelog: [v1.32.0...v1.33.0](https://github.com/anthropics/anthropic-sdk-go/compare/v1.32.0...v1.33.0)
6+
7+
### Features
8+
9+
* **api:** add support for Claude Managed Agents ([722b2ac](https://github.com/anthropics/anthropic-sdk-go/commit/722b2accb2ad73715639dd03339e14345304d5fc))
10+
311
## 1.32.0 (2026-04-07)
412

513
Full Changelog: [v1.31.0...v1.32.0](https://github.com/anthropics/anthropic-sdk-go/compare/v1.31.0...v1.32.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Or explicitly add the dependency:
2929
<!-- x-release-please-start-version -->
3030

3131
```sh
32-
go get -u 'github.com/anthropics/anthropic-sdk-go@v1.32.0'
32+
go get -u 'github.com/anthropics/anthropic-sdk-go@v1.33.0'
3333
```
3434

3535
<!-- x-release-please-end -->

api.md

Lines changed: 259 additions & 0 deletions
Large diffs are not rendered by default.

beta.go

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ import (
1818
// automatically. You should not instantiate this service directly, and instead use
1919
// the [NewBetaService] method instead.
2020
type BetaService struct {
21-
Options []option.RequestOption
22-
Models BetaModelService
23-
Messages BetaMessageService
24-
Files BetaFileService
25-
Skills BetaSkillService
21+
Options []option.RequestOption
22+
Models BetaModelService
23+
Messages BetaMessageService
24+
Agents BetaAgentService
25+
Environments BetaEnvironmentService
26+
Sessions BetaSessionService
27+
Vaults BetaVaultService
28+
Files BetaFileService
29+
Skills BetaSkillService
2630
}
2731

2832
// NewBetaService generates a new service that applies the given options to each
@@ -33,6 +37,10 @@ func NewBetaService(opts ...option.RequestOption) (r BetaService) {
3337
r.Options = opts
3438
r.Models = NewBetaModelService(opts...)
3539
r.Messages = NewBetaMessageService(opts...)
40+
r.Agents = NewBetaAgentService(opts...)
41+
r.Environments = NewBetaEnvironmentService(opts...)
42+
r.Sessions = NewBetaSessionService(opts...)
43+
r.Vaults = NewBetaVaultService(opts...)
3644
r.Files = NewBetaFileService(opts...)
3745
r.Skills = NewBetaSkillService(opts...)
3846
return

0 commit comments

Comments
 (0)