Skip to content

Commit 6ffe5da

Browse files
victor-upmeetVictor Thuillier
and
Victor Thuillier
authored
Create BedrockRuntime client with InvokeModel operation (#1849)
* Create BedrockRuntime client with InvokeModel operation * Fix documentation URL * Fix BedrockRuntime InvokeModel documentation example * Regenrate BedrockRuntime InvokeModel * Input and Result unit tests for BedrockRuntime InvokeModel operation * Fix BedrockRuntime tests * Fix BedrockRuntime tests * Fix SymfonyBundle Changelog * Upgraded Symfony/Bundle branch-alias dev-master from 1.13-dev to 1.14-dev * Removed .idea files * Remove BedrockRuntime service endpoint- and smoke properties --------- Co-authored-by: Victor Thuillier <victor@Users-MacBook-Pro.local>
1 parent f98676a commit 6ffe5da

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- Support for BedrockRuntime
8+
59
## 1.13.0
610

711
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"extra": {
4141
"branch-alias": {
42-
"dev-master": "1.13-dev"
42+
"dev-master": "1.14-dev"
4343
}
4444
}
4545
}

src/DependencyInjection/AwsPackagesProvider.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ public static function getAllServices(): array
2222
'class' => \AsyncAws\Athena\AthenaClient::class,
2323
'package' => 'async-aws/athena',
2424
],
25+
'bedrock_runtime' => [
26+
'class' => \AsyncAws\BedrockRuntime\BedrockRuntimeClient::class,
27+
'package' => 'async-aws/bedrock-runtime',
28+
],
2529
'cloud_formation' => [
2630
'class' => \AsyncAws\CloudFormation\CloudFormationClient::class,
2731
'package' => 'async-aws/cloud-formation',

0 commit comments

Comments
 (0)