From 1035aa9691120b3199ff8d563608dec86edd4106 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 18:20:20 -0500 Subject: [PATCH 1/4] Update README.md to add supported functions --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e97b7078c..710880dab 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ async function main() { main(); ``` +## Supported functions + +For a full list of available functions in this SDK, please refer to the [auto-generated API.md file](https://github.com/openai/openai-node/blob/master/api.md). + ## Streaming Responses We provide support for streaming responses using Server Sent Events (SSE). From 9d7876da97d8c306cc0c569aa2c2e618461d884e Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 18:43:28 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 710880dab..7865f7b21 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ yarn add openai ## Usage -> [!IMPORTANT] -> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). +The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. ```js import OpenAI from 'openai'; @@ -40,9 +39,8 @@ async function main() { main(); ``` -## Supported functions - -For a full list of available functions in this SDK, please refer to the [auto-generated API.md file](https://github.com/openai/openai-node/blob/master/api.md). +> [!IMPORTANT] +> Previous versions of this SDK used a `Configuration` class. See the [v3 to v4 migration guide](https://github.com/openai/openai-node/discussions/217). ## Streaming Responses From 2deae0ec10938daf7daabb43ec7d103259458cdb Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 19:39:17 -0500 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7865f7b21..713461962 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ yarn add openai ## Usage -The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. +The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the Chat completions API. ```js import OpenAI from 'openai'; From 14315978e22a179719905844de1659a377324cc3 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick Date: Tue, 5 Sep 2023 19:46:35 -0500 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 713461962..7865f7b21 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ yarn add openai ## Usage -The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the Chat completions API. +The full API of this library can be found in [API.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API. ```js import OpenAI from 'openai';