You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+13-4
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Documentation for pwshBedrock is available at: [https://www.pwshbedrock.dev](htt
52
52
- PowerShell 5.1 or later
53
53
- AWS account with access to Amazon Bedrock
54
54
- AWS credentials with appropriate `bedrock:InvokeModel` permission
55
-
- You must [manage and add model acesss](https://docs.aws.amazon.com/bedrock/latest/userguide/model-access.html) through one-time request model access action. *Note: this must be done for each model you plan to interact with.*
55
+
- You must [manage and add model access](https://docs.aws.amazon.com/bedrock/latest/userguide/model-access.html) through one-time request model access action. *Note: this must be done for each model you plan to interact with.*
Copy file name to clipboardexpand all lines: docs/CHANGELOG.md
+26
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.2.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.52.0] - **BREAKING CHANGES**
9
+
10
+
- Module changes:
11
+
- Added two new properties to all model documentation objects:
12
+
- `Image` - designates if the model can generate images
13
+
- `Video` - designates if the model can generate video
14
+
- `Vision` - re-purposed to now designate if the model can see and describe uploaded content
15
+
- This required some logic re-work in several functions that were previously using `Vision` to designate image capability
16
+
- Added inference profile ID support to all models IAW [Supported cross-region inference profiles](https://docs.aws.amazon.com/bedrock/latest/userguide/inference-profiles-support.html)
17
+
- pwshBedrock will now properly format the inference profile ID for all models that support which enables the ability to make Bedrock calls to other regions
18
+
-`Reset-ModelContext` - fixed issue where certain models were missing from validation.
19
+
- Amazon
20
+
-`Invoke-AmazonNovaTextModel` - added support for new Nova Text models: `amazon.nova-pro-v1:0`, `amazon.nova-lite-v1:0`, `amazon.nova-micro-v1:0`
21
+
-`Invoke-AmazonImageModel`
22
+
- added support for new Nova image model: `amazon.nova-canvas-v1:0`
23
+
- fixed bug where files would not always save to drive
24
+
-`CfgScale` parameter maximum adjusted from 10 to 9.9
25
+
- Meta
26
+
- Removed `meta.llama2-13b-chat-v1` and `meta.llama2-70b-chat-v1` from all functions as Bedrock has EOL these two models. - ***Breaking Change***
27
+
- Updated `Invoke-MetaModel` to support new model: `meta.llama3-3-70b-instruct-v1:0`
28
+
- stability.ai
29
+
- Updated `Invoke-StabilityAIImageModel` to support new model: `stability.sd3-5-large-v1:0`
30
+
- Updated pricing for all models
31
+
- Build changes:
32
+
- Updated bootstrap file to latest versions of modules
0 commit comments