We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 006fda5 commit ca69831Copy full SHA for ca69831
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## NOT RELEASED
4
5
+### Added
6
+
7
+- Support for BedrockAgent
8
9
### Dependency bumped
10
11
- Drop support for PHP versions lower than 8.2
src/DependencyInjection/AwsPackagesProvider.php
@@ -22,6 +22,10 @@ public static function getAllServices(): array
22
'class' => \AsyncAws\Athena\AthenaClient::class,
23
'package' => 'async-aws/athena',
24
],
25
+ 'bedrock_agent' => [
26
+ 'class' => \AsyncAws\BedrockAgent\BedrockAgentClient::class,
27
+ 'package' => 'async-aws/bedrock-agent',
28
+ ],
29
'bedrock_runtime' => [
30
'class' => \AsyncAws\BedrockRuntime\BedrockRuntimeClient::class,
31
'package' => 'async-aws/bedrock-runtime',
0 commit comments