Skip to content

Commit 5f36ccd

Browse files
authored
OpenAI - Support 4.1 Models (#16353)
* add support for 4.1 models * versions
1 parent cfe0d2d commit 5f36ccd

File tree

46 files changed

+60
-46
lines changed

Some content is hidden

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

46 files changed

+60
-46
lines changed

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: "0.1.5",
11+
version: "0.1.6",
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.14",
7+
version: "0.0.15",
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.3",
8+
version: "0.0.4",
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.4",
8+
version: "0.0.5",
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: 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 Web Search",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
key: "openai-chat-using-web-search",
1010
description: "Chat using the web search tool. [See the documentation](https://platform.openai.com/docs/guides/tools-web-search)",
1111
type: "action",

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.10",
9+
version: "0.0.11",
1010
type: "action",
1111
props: {
1212
openai,

components/openai/actions/chat/chat.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ConfigurationError } from "@pipedream/platform";
66
export default {
77
...common,
88
name: "Chat",
9-
version: "0.2.7",
9+
version: "0.2.8",
1010
key: "openai-chat",
1111
description: "The Chat API, using the `gpt-3.5-turbo` or `gpt-4` model. [See the documentation](https://platform.openai.com/docs/api-reference/chat)",
1212
type: "action",

components/openai/actions/classify-items-into-categories/classify-items-into-categories.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import common from "../common/common-helper.mjs";
33
export default {
44
...common,
55
name: "Classify Items into Categories",
6-
version: "0.1.5",
6+
version: "0.1.6",
77
key: "openai-classify-items-into-categories",
88
description: "Classify items into specific categories using the Chat API. [See the documentation](https://platform.openai.com/docs/api-reference/chat)",
99
type: "action",

components/openai/actions/convert-text-to-speech/convert-text-to-speech.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "openai-convert-text-to-speech",
66
name: "Convert Text to Speech (TTS)",
77
description: "Generates audio from the input text. [See the documentation](https://platform.openai.com/docs/api-reference/audio/createSpeech)",
8-
version: "0.0.13",
8+
version: "0.0.14",
99
type: "action",
1010
props: {
1111
openai,

components/openai/actions/create-assistant/create-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-create-assistant",
77
name: "Create Assistant",
88
description: "Creates an assistant with a model and instructions. [See the documentation](https://platform.openai.com/docs/api-reference/assistants/createAssistant)",
9-
version: "0.1.12",
9+
version: "0.1.13",
1010
type: "action",
1111
props: {
1212
openai,

0 commit comments

Comments
 (0)