From 0d8dea1cbdf3546bacce753e8264047c0f890eaf Mon Sep 17 00:00:00 2001 From: Isite Yves <61538146+IsiteYves@users.noreply.github.com> Date: Sat, 25 Feb 2023 15:35:20 +0200 Subject: [PATCH 1/2] Fix typo in README.md --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index e304db4..0acde9a 100644 --- a/readme.md +++ b/readme.md @@ -39,7 +39,7 @@ We now provide three ways of accessing the unofficial ChatGPT API, all of which | --------------------------- | ------ | -------- | ----------------- | | `ChatGPTAPI` | ❌ No | ✅ Yes | ☑️ Mimics ChatGPT | | `ChatGPTUnofficialProxyAPI` | ✅ Yes | ☑️ Maybe | ✅ Real ChatGPT | -| `ChatGPAPIBrowser` (v3) | ✅ Yes | ❌ No | ✅ Real ChatGPT | +| `ChatGPTAPIBrowser` (v3) | ✅ Yes | ❌ No | ✅ Real ChatGPT | **Note**: I recommend that you use either `ChatGPTAPI` or `ChatGPTUnofficialProxyAPI`. @@ -184,7 +184,7 @@ const api = new ChatGPTAPI({ }) ``` -If you want to track the conversation, you'll need to pass the `parentMessageid` and `conversationid`: +If you want to track the conversation, you'll need to pass the `parentMessageid` and `conversationid` like this: ```ts const api = new ChatGPTAPI({ apiKey: process.env.OPENAI_API_KEY }) From 5be8159daa90ed4084e2d7f3e10877347af90d0f Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Sun, 26 Feb 2023 01:38:57 -0600 Subject: [PATCH 2/2] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0acde9a..059a553 100644 --- a/readme.md +++ b/readme.md @@ -184,7 +184,7 @@ const api = new ChatGPTAPI({ }) ``` -If you want to track the conversation, you'll need to pass the `parentMessageid` and `conversationid` like this: +If you want to track the conversation, you'll need to pass the `parentMessageId` and `conversationId` like this: ```ts const api = new ChatGPTAPI({ apiKey: process.env.OPENAI_API_KEY })