bedrock-wrapper 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -2
- package/bedrock-models.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,12 +103,19 @@ Bedrock Wrapper is an npm package that simplifies the integration of existing Op
|
|
|
103
103
|
|
|
104
104
|
| modelName | AWS Model Id | Image |
|
|
105
105
|
|----------------------------|----------------------------------------------|-------|
|
|
106
|
+
| Claude-4-Opus | us.anthropic.claude-opus-4-20250514-v1:0 | ✅ |
|
|
107
|
+
| Claude-4-Opus-Thinking | us.anthropic.claude-opus-4-20250514-v1:0 | ✅ |
|
|
108
|
+
| Claude-4-Sonnet | us.anthropic.claude-sonnet-4-20250514-v1:0 | ✅ |
|
|
109
|
+
| Claude-4-Sonnet-Thinking | us.anthropic.claude-sonnet-4-20250514-v1:0 | ✅ |
|
|
106
110
|
| Claude-3-7-Sonnet-Thinking | us.anthropic.claude-3-7-sonnet-20250219-v1:0 | ✅ |
|
|
107
111
|
| Claude-3-7-Sonnet | us.anthropic.claude-3-7-sonnet-20250219-v1:0 | ✅ |
|
|
108
112
|
| Claude-3-5-Sonnet-v2 | anthropic.claude-3-5-sonnet-20241022-v2:0 | ✅ |
|
|
109
113
|
| Claude-3-5-Sonnet | anthropic.claude-3-5-sonnet-20240620-v1:0 | ✅ |
|
|
110
114
|
| Claude-3-5-Haiku | anthropic.claude-3-5-haiku-20241022-v1:0 | ❌ |
|
|
111
|
-
| Claude-3-Haiku | anthropic.claude-3-haiku-20240307-v1:0 |
|
|
115
|
+
| Claude-3-Haiku | anthropic.claude-3-haiku-20240307-v1:0 | ✅ |
|
|
116
|
+
| Nova-Pro | us.amazon.nova-pro-v1:0 | ✅ |
|
|
117
|
+
| Nova-Lite | us.amazon.nova-lite-v1:0 | ✅ |
|
|
118
|
+
| Nova-Micro | us.amazon.nova-micro-v1:0 | ❌ |
|
|
112
119
|
| Llama-3-3-70b | us.meta.llama3-3-70b-instruct-v1:0 | ❌ |
|
|
113
120
|
| Llama-3-2-1b | us.meta.llama3-2-1b-instruct-v1:0 | ❌ |
|
|
114
121
|
| Llama-3-2-3b | us.meta.llama3-2-3b-instruct-v1:0 | ❌ |
|
|
@@ -136,7 +143,7 @@ Please modify the `bedrock_models.js` file and submit a PR 🏆 or create an Iss
|
|
|
136
143
|
|
|
137
144
|
### Image Support
|
|
138
145
|
|
|
139
|
-
For models with image support (Claude
|
|
146
|
+
For models with image support (Claude 4 series, Claude 3.7 Sonnet, Claude 3.5 Sonnet, Claude 3 Haiku, Nova Pro, and Nova Lite), you can include images in your messages using the following format:
|
|
140
147
|
|
|
141
148
|
```javascript
|
|
142
149
|
messages = [
|
package/bedrock-models.js
CHANGED
|
@@ -248,7 +248,7 @@ export const bedrock_models = [
|
|
|
248
248
|
// ====================
|
|
249
249
|
"modelName": "Claude-3-Haiku",
|
|
250
250
|
"modelId": "anthropic.claude-3-haiku-20240307-v1:0",
|
|
251
|
-
"vision":
|
|
251
|
+
"vision": true,
|
|
252
252
|
"messages_api": true,
|
|
253
253
|
"system_as_separate_field": true,
|
|
254
254
|
"display_role_names": true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bedrock-wrapper",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"description": "🪨 Bedrock Wrapper is an npm package that simplifies the integration of existing OpenAI-compatible API objects with AWS Bedrock's serverless inference LLMs.",
|
|
5
5
|
"homepage": "https://www.equilllabs.com/projects/bedrock-wrapper",
|
|
6
6
|
"repository": {
|