@pipedream/openai 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/chat/chat.mjs +2 -2
- package/package.json +1 -1
package/actions/chat/chat.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import common from "../common/common.mjs";
|
|
|
4
4
|
export default {
|
|
5
5
|
...common,
|
|
6
6
|
name: "Chat",
|
|
7
|
-
version: "0.1.
|
|
7
|
+
version: "0.1.5",
|
|
8
8
|
key: "openai-chat",
|
|
9
9
|
description: "The Chat API, using the `gpt-3.5-turbo` or `gpt-4` model. [See docs here](https://platform.openai.com/docs/api-reference/chat)",
|
|
10
10
|
type: "action",
|
|
@@ -43,7 +43,7 @@ export default {
|
|
|
43
43
|
type: "string",
|
|
44
44
|
label: "Response Format",
|
|
45
45
|
description: "Specify the format that the model must output. [Setting to `json_object` guarantees the message the model generates is valid JSON](https://platform.openai.com/docs/api-reference/chat/create#chat-create-response_format). Defaults to `text`",
|
|
46
|
-
|
|
46
|
+
options: [
|
|
47
47
|
"text",
|
|
48
48
|
"json_object",
|
|
49
49
|
],
|