Skip to content

Commit 3c5e62f

Browse files
Update Anthropic models to include claude-3-7-sonnet-20250219 (#16010)
* Update pnpm-lock.yaml * Merge branch 'master' of github.com:PipedreamHQ/pipedream * Update pnpm-lock.yaml * 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 * Update constants.mjs
1 parent a84a0e6 commit 3c5e62f

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
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],
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
export default {
22
MESSAGE_MODELS: [
3+
"claude-3-7-sonnet-20250219",
34
"claude-3-5-sonnet-20241022",
5+
"claude-3-5-haiku-20241022",
46
"claude-3-5-sonnet-20240620",
57
"claude-3-opus-20240229",
68
"claude-3-sonnet-20240229",
79
"claude-3-haiku-20240307",
8-
"claude-2.1",
9-
"claude-2.0",
10-
"claude-instant-1.2",
1110
],
1211
};

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": [

pnpm-lock.yaml

Lines changed: 5 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)