Skip to content

Commit e8b4675

Browse files
Update Anthropic models to include claude-3-7-sonnet-20250219
- Add the latest claude-3-7-sonnet-20250219 model - Update model description to reference new default model - Bump action version from 0.0.9 to 0.0.10 - Bump package version from 0.0.11 to 0.0.12
1 parent 405aabc commit e8b4675

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

components/anthropic/actions/chat/chat.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import constants from "../common/constants.mjs";
33

44
export default {
55
name: "Chat",
6-
version: "0.0.9",
6+
version: "0.0.10",
77
key: "anthropic-chat",
88
description: "The Chat API. [See the documentation](https://docs.anthropic.com/claude/reference/messages_post)",
99
type: "action",
1010
props: {
1111
anthropic,
1212
model: {
1313
label: "Model",
14-
description: "Select the model to use for your query. Defaults to the `claude-3-opus-20240229` model, which Anthropic describes as the \"Most powerful model for highly complex tasks\".",
14+
description: "Select the model to use for your query. Defaults to the `claude-3-7-sonnet-20250219` model, which is Anthropic's latest Claude model.",
1515
type: "string",
1616
options: constants.MESSAGE_MODELS,
1717
default: constants.MESSAGE_MODELS[0],

components/anthropic/actions/common/constants.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export default {
22
MESSAGE_MODELS: [
3+
"claude-3-7-sonnet-20250219",
34
"claude-3-5-sonnet-20241022",
45
"claude-3-5-sonnet-20240620",
56
"claude-3-opus-20240229",

components/anthropic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/anthropic",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "Pipedream Anthropic (Claude) Components",
55
"main": "anthropic.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)