Skip to content

Commit 006c9ee

Browse files
fix input description
1 parent aa50dfe commit 006c9ee

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

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

Lines changed: 2 additions & 2 deletions
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.1",
8+
version: "0.0.2",
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",
@@ -32,7 +32,7 @@ export default {
3232
input: {
3333
type: "string",
3434
label: "Chat Input",
35-
description: "Text, image, or file inputs to the model, used to generate a response",
35+
description: "Text inputs to the model used to generate a response",
3636
},
3737
instructions: {
3838
type: "string",

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

Lines changed: 2 additions & 2 deletions
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.1",
8+
version: "0.0.2",
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",
@@ -25,7 +25,7 @@ export default {
2525
input: {
2626
type: "string",
2727
label: "Chat Input",
28-
description: "Text, image, or file inputs to the model, used to generate a response",
28+
description: "Text inputs to the model used to generate a response",
2929
},
3030
functions: {
3131
type: "string",

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

Lines changed: 2 additions & 2 deletions
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.1",
8+
version: "0.0.2",
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",
@@ -24,7 +24,7 @@ export default {
2424
input: {
2525
type: "string",
2626
label: "Chat Input",
27-
description: "Text, image, or file inputs to the model, used to generate a response",
27+
description: "Text inputs to the model used to generate a response",
2828
},
2929
instructions: {
3030
type: "string",

components/openai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/openai",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Pipedream OpenAI Components",
55
"main": "openai.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)