Skip to content

Commit 3e71945

Browse files
committed
added missing model ids to Reset-ModelContext
1 parent 874639c commit 3e71945

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

docs/CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.2.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.42.0]
8+
## [0.43.0]
99

1010
- Module changes:
1111
- Added two new properties to all model documentation objects:
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- This required some logic re-work in several functions that were previously using `Vision` to designate image capability
1616
- 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)
1717
- 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.
1819
- Amazon
1920
- `Invoke-AmazonNovaTextModel` - added support for new Nova Text models: `amazon.nova-pro-v1:0`, `amazon.nova-lite-v1:0`, `amazon.nova-micro-v1:0`
2021

docs/pwshBedrock.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Module Name: pwshBedrock
33
Module Guid: b4f9e4dc-0229-44ef-99a1-08be4c5e81f2
44
Download Help Link: NA
5-
Help Version: 0.42.0
5+
Help Version: 0.43.0
66
Locale: en-US
77
---
88

src/pwshBedrock/Public/Reset-ModelTally.ps1

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,10 @@ function Reset-ModelTally {
6161
'amazon.titan-tg1-large',
6262
'anthropic.claude-v2:1',
6363
'anthropic.claude-3-haiku-20240307-v1:0',
64-
'anthropic.claude-3-opus-20240229-v1:0',
64+
'anthropic.claude-3-5-haiku-20241022-v1:0',
6565
'anthropic.claude-3-sonnet-20240229-v1:0',
66+
'anthropic.claude-3-opus-20240229-v1:0',
67+
'anthropic.claude-3-5-sonnet-20241022-v2:0',
6668
'anthropic.claude-3-5-sonnet-20240620-v1:0',
6769
'cohere.command-text-v14',
6870
'cohere.command-light-text-v14',

src/pwshBedrock/pwshBedrock.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'pwshBedrock.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.42.0'
15+
ModuleVersion = '0.43.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

0 commit comments

Comments
 (0)