Skip to content

Commit b80a5aa

Browse files
authored
Merging pull request #17999
* Moving model constants to separate file * Adding gpt-5 models to filters * Changing model list to be ordered by descending creation date * Adding Claude Opus 4.1 to anthropic app * Version bumps * OpenAI package version bump
1 parent 1d1d5a4 commit b80a5aa

File tree

52 files changed

+150
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+150
-118
lines changed

components/anthropic/actions/chat/chat.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import constants from "../common/constants.mjs";
33

44
export default {
55
name: "Chat",
6-
version: "0.1.0",
6+
version: "0.2.0",
77
key: "anthropic-chat",
88
description: "The Chat API. [See the documentation](https://docs.anthropic.com/claude/reference/messages_post)",
99
type: "action",

components/anthropic/actions/common/constants.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
export default {
22
MESSAGE_MODELS: [
3+
{
4+
label: "Claude Opus 4.1",
5+
value: "claude-opus-4-1-20250805",
6+
},
37
{
48
label: "Claude Opus 4",
59
value: "claude-opus-4-20250514",

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.1.0",
3+
"version": "0.2.0",
44
"description": "Pipedream Anthropic (Claude) Components",
55
"main": "anthropic.app.mjs",
66
"keywords": [

components/openai/actions/analyze-image-content/analyze-image-content.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "openai-analyze-image-content",
99
name: "Analyze Image Content",
1010
description: "Send a message or question about an image and receive a response. [See the documentation](https://platform.openai.com/docs/api-reference/runs/createThreadAndRun)",
11-
version: "1.0.1",
11+
version: "1.0.2",
1212
type: "action",
1313
props: {
1414
openai,

components/openai/actions/cancel-run/cancel-run.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "openai-cancel-run",
55
name: "Cancel Run (Assistants)",
66
description: "Cancels a run that is in progress. [See the documentation](https://platform.openai.com/docs/api-reference/runs/cancelRun)",
7-
version: "0.0.15",
7+
version: "0.0.16",
88
type: "action",
99
props: {
1010
openai,

components/openai/actions/chat-using-file-search/chat-using-file-search.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import constants from "../../common/constants.mjs";
55
export default {
66
...common,
77
name: "Chat using File Search",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
key: "openai-chat-using-file-search",
1010
description: "Chat with your files knowledge base (vector stores). [See the documentation](https://platform.openai.com/docs/guides/tools-file-search)",
1111
type: "action",

components/openai/actions/chat-using-functions/chat-using-functions.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import constants from "../../common/constants.mjs";
55
export default {
66
...common,
77
name: "Chat using Functions",
8-
version: "0.0.7",
8+
version: "0.0.8",
99
key: "openai-chat-using-functions",
1010
description: "Chat with your models and allow them to invoke functions. Optionally, you can build and invoke workflows as functions. [See the documentation](https://platform.openai.com/docs/guides/function-calling)",
1111
type: "action",

components/openai/actions/chat-using-web-search/chat-using-web-search.mjs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import openai from "../../openai.app.mjs";
22
import common from "../common/common.mjs";
33
import constants from "../../common/constants.mjs";
4+
import { WEB_SEARCH_CHAT_MODELS } from "../../common/models.mjs";
45

56
export default {
67
...common,
78
name: "Chat using Web Search",
8-
version: "0.0.6",
9+
version: "0.0.7",
910
key: "openai-chat-using-web-search",
1011
description: "Chat using the web search tool. [See the documentation](https://platform.openai.com/docs/guides/tools-web-search)",
1112
type: "action",
@@ -15,11 +16,8 @@ export default {
1516
type: "string",
1617
label: "Model",
1718
description: "Model used to generate the response",
18-
default: "gpt-4o",
19-
options: [
20-
"gpt-4o",
21-
"gpt-4o-mini",
22-
],
19+
default: WEB_SEARCH_CHAT_MODELS[0],
20+
options: WEB_SEARCH_CHAT_MODELS,
2321
},
2422
input: {
2523
type: "string",

components/openai/actions/chat-with-assistant/chat-with-assistant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "openai-chat-with-assistant",
77
name: "Chat with Assistant",
88
description: "Sends a message and generates a response, storing the message history for a continuous conversation. [See the documentation](https://platform.openai.com/docs/api-reference/runs/createThreadAndRun)",
9-
version: "0.0.11",
9+
version: "0.0.12",
1010
type: "action",
1111
props: {
1212
openai,

components/openai/actions/chat-with-responses-api/chat-with-responses-api.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
...common,
1111
key: "openai-chat-with-responses-api",
1212
name: "Chat With Responses API",
13-
version: "0.0.1",
13+
version: "0.0.2",
1414
description: "Send a chat via the Responses API, mixing built-in tools and MCP server tools. [See the documentation](https://platform.openai.com/docs/guides/tools?api-mode=responses).",
1515
type: "action",
1616
props: {

0 commit comments

Comments
 (0)