From 3647d21c6518eeb4c731a3b7cd64422c3d347f08 Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Sun, 23 Mar 2025 13:56:34 -0700 Subject: [PATCH 1/5] Update pnpm-lock.yaml --- pnpm-lock.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f732f3bdf4a7f..3a364c6ee5545 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34312,6 +34312,8 @@ snapshots: '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)) '@putout/operator-json': 2.2.0 putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3) + transitivePeerDependencies: + - supports-color '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))': dependencies: From e20b329db4b7bd6e0d8648526ccd06f3b8266bb0 Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Sun, 23 Mar 2025 13:56:52 -0700 Subject: [PATCH 2/5] Merge branch 'master' of github.com:PipedreamHQ/pipedream From 405aabced276a9dabdf3ff59091ef37f09dec465 Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Sun, 23 Mar 2025 13:56:54 -0700 Subject: [PATCH 3/5] Update pnpm-lock.yaml --- pnpm-lock.yaml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 33acf27e93b19..eb29df73dccb8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -922,8 +922,7 @@ importers: specifier: ^3.0.0 version: 3.0.3 - components/appsflyer: - specifiers: {} + components/appsflyer: {} components/appveyor: dependencies: @@ -6892,8 +6891,7 @@ importers: components/koyeb: {} - components/kraken_io: - specifiers: {} + components/kraken_io: {} components/krispcall: dependencies: @@ -8988,8 +8986,7 @@ importers: specifier: ^1.2.0 version: 1.6.6 - components/outline: - specifiers: {} + components/outline: {} components/outreach: dependencies: @@ -13207,8 +13204,7 @@ importers: components/tutor_lms: {} - components/tuya: - specifiers: {} + components/tuya: {} components/twelve_data: {} @@ -14084,8 +14080,7 @@ importers: specifier: ^7.1.1 version: 7.1.3 - components/woodelivery: - specifiers: {} + components/woodelivery: {} components/woodpecker_co: dependencies: From e8b4675fea6f223fafb87e43b671913e72957cf2 Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Sun, 23 Mar 2025 14:01:33 -0700 Subject: [PATCH 4/5] 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 --- components/anthropic/actions/chat/chat.mjs | 4 ++-- components/anthropic/actions/common/constants.mjs | 1 + components/anthropic/package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/components/anthropic/actions/chat/chat.mjs b/components/anthropic/actions/chat/chat.mjs index bce1c267a3108..62a8aef8f6dd1 100644 --- a/components/anthropic/actions/chat/chat.mjs +++ b/components/anthropic/actions/chat/chat.mjs @@ -3,7 +3,7 @@ import constants from "../common/constants.mjs"; export default { name: "Chat", - version: "0.0.9", + version: "0.0.10", key: "anthropic-chat", description: "The Chat API. [See the documentation](https://docs.anthropic.com/claude/reference/messages_post)", type: "action", @@ -11,7 +11,7 @@ export default { anthropic, model: { label: "Model", - 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\".", + 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.", type: "string", options: constants.MESSAGE_MODELS, default: constants.MESSAGE_MODELS[0], diff --git a/components/anthropic/actions/common/constants.mjs b/components/anthropic/actions/common/constants.mjs index 8d5bf78792d1c..8134c17bd76c8 100644 --- a/components/anthropic/actions/common/constants.mjs +++ b/components/anthropic/actions/common/constants.mjs @@ -1,5 +1,6 @@ export default { MESSAGE_MODELS: [ + "claude-3-7-sonnet-20250219", "claude-3-5-sonnet-20241022", "claude-3-5-sonnet-20240620", "claude-3-opus-20240229", diff --git a/components/anthropic/package.json b/components/anthropic/package.json index 9dbbf034b806b..6a08871b78888 100644 --- a/components/anthropic/package.json +++ b/components/anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/anthropic", - "version": "0.0.11", + "version": "0.0.12", "description": "Pipedream Anthropic (Claude) Components", "main": "anthropic.app.mjs", "keywords": [ From 0cd9e44991579da4822e70a43b4a93d53cadae66 Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Sun, 23 Mar 2025 14:05:46 -0700 Subject: [PATCH 5/5] Update constants.mjs --- components/anthropic/actions/common/constants.mjs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/anthropic/actions/common/constants.mjs b/components/anthropic/actions/common/constants.mjs index 8134c17bd76c8..6ad91a8431eb2 100644 --- a/components/anthropic/actions/common/constants.mjs +++ b/components/anthropic/actions/common/constants.mjs @@ -2,12 +2,10 @@ export default { MESSAGE_MODELS: [ "claude-3-7-sonnet-20250219", "claude-3-5-sonnet-20241022", + "claude-3-5-haiku-20241022", "claude-3-5-sonnet-20240620", "claude-3-opus-20240229", "claude-3-sonnet-20240229", "claude-3-haiku-20240307", - "claude-2.1", - "claude-2.0", - "claude-instant-1.2", ], };