-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84f9bd5
commit 62dc07a
Showing
64 changed files
with
8,288 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"type": "api-change", | ||
"category": "BedrockRuntime", | ||
"description": "Added support for Intelligent Prompt Router in Invoke, InvokeStream, Converse and ConverseStream. Add support for Bedrock Guardrails image content filter. New Bedrock Marketplace feature enabling a wider range of bedrock compatible models with self-hosted capability." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "BedrockDataAutomationRuntime", | ||
"description": "Release Bedrock Data Automation Runtime SDK" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "BedrockDataAutomation", | ||
"description": "Release Bedrock Data Automation SDK" | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "BedrockAgent", | ||
"description": "This release introduces the ability to generate SQL using natural language, through a new GenerateQuery API (with native integration into Knowledge Bases); ability to ingest and retrieve images through Bedrock Data Automation; and ability to create a Knowledge Base backed by Kendra GenAI Index." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "BedrockAgentRuntime", | ||
"description": "This release introduces the ability to generate SQL using natural language, through a new GenerateQuery API (with native integration into Knowledge Bases); ability to ingest and retrieve images through Bedrock Data Automation; and ability to create a Knowledge Base backed by Kendra GenAI Index." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "Bedrock", | ||
"description": "Introduced two APIs ListPromptRouters and GetPromptRouter for Intelligent Prompt Router feature. Add support for Bedrock Guardrails image content filter. New Bedrock Marketplace feature enabling a wider range of bedrock compatible models with self-hosted capability." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "SageMaker", | ||
"description": "Amazon SageMaker HyperPod launched task governance to help customers maximize accelerator utilization for model development and flexible training plans to meet training timelines and budget while reducing weeks of training time. AI apps from AWS partner is now available in SageMaker." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "kendra", | ||
"description": "This release adds GenAI Index in Amazon Kendra for Retrieval Augmented Generation (RAG) and intelligent search. With the Kendra GenAI Index, customers get high retrieval accuracy powered by the latest information retrieval technologies and semantic models." | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
namespace Aws\BedrockDataAutomation; | ||
|
||
use Aws\AwsClient; | ||
|
||
/** | ||
* This client is used to interact with the **Data Automation for Amazon Bedrock** service. | ||
* @method \Aws\Result createBlueprint(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise createBlueprintAsync(array $args = []) | ||
* @method \Aws\Result createBlueprintVersion(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise createBlueprintVersionAsync(array $args = []) | ||
* @method \Aws\Result createDataAutomationProject(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise createDataAutomationProjectAsync(array $args = []) | ||
* @method \Aws\Result deleteBlueprint(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise deleteBlueprintAsync(array $args = []) | ||
* @method \Aws\Result deleteDataAutomationProject(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise deleteDataAutomationProjectAsync(array $args = []) | ||
* @method \Aws\Result getBlueprint(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getBlueprintAsync(array $args = []) | ||
* @method \Aws\Result getDataAutomationProject(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getDataAutomationProjectAsync(array $args = []) | ||
* @method \Aws\Result listBlueprints(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listBlueprintsAsync(array $args = []) | ||
* @method \Aws\Result listDataAutomationProjects(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listDataAutomationProjectsAsync(array $args = []) | ||
* @method \Aws\Result updateBlueprint(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateBlueprintAsync(array $args = []) | ||
* @method \Aws\Result updateDataAutomationProject(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateDataAutomationProjectAsync(array $args = []) | ||
*/ | ||
class BedrockDataAutomationClient extends AwsClient {} |
9 changes: 9 additions & 0 deletions
9
src/BedrockDataAutomation/Exception/BedrockDataAutomationException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
namespace Aws\BedrockDataAutomation\Exception; | ||
|
||
use Aws\Exception\AwsException; | ||
|
||
/** | ||
* Represents an error interacting with the **Data Automation for Amazon Bedrock** service. | ||
*/ | ||
class BedrockDataAutomationException extends AwsException {} |
13 changes: 13 additions & 0 deletions
13
src/BedrockDataAutomationRuntime/BedrockDataAutomationRuntimeClient.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
namespace Aws\BedrockDataAutomationRuntime; | ||
|
||
use Aws\AwsClient; | ||
|
||
/** | ||
* This client is used to interact with the **Runtime for Amazon Bedrock Data Automation** service. | ||
* @method \Aws\Result getDataAutomationStatus(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getDataAutomationStatusAsync(array $args = []) | ||
* @method \Aws\Result invokeDataAutomationAsync(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise invokeDataAutomationAsyncAsync(array $args = []) | ||
*/ | ||
class BedrockDataAutomationRuntimeClient extends AwsClient {} |
9 changes: 9 additions & 0 deletions
9
src/BedrockDataAutomationRuntime/Exception/BedrockDataAutomationRuntimeException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
namespace Aws\BedrockDataAutomationRuntime\Exception; | ||
|
||
use Aws\Exception\AwsException; | ||
|
||
/** | ||
* Represents an error interacting with the **Runtime for Amazon Bedrock Data Automation** service. | ||
*/ | ||
class BedrockDataAutomationRuntimeException extends AwsException {} |
Oops, something went wrong.