From cebbad5288b3aa7193dc676320ecc83d36270952 Mon Sep 17 00:00:00 2001 From: Travis Fischer Date: Wed, 1 Mar 2023 20:58:06 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- legacy/readme.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/legacy/readme.md b/legacy/readme.md index f99d07d7..d294c57d 100644 --- a/legacy/readme.md +++ b/legacy/readme.md @@ -55,6 +55,8 @@ The [official OpenAI chat completions API](https://platform.openai.com/docs/guid
Feb 19, 2023 +
+ We now provide three ways of accessing the unofficial ChatGPT API, all of which have tradeoffs: | Method | Free? | Robust? | Quality? | @@ -74,6 +76,8 @@ We now provide three ways of accessing the unofficial ChatGPT API, all of which
Feb 5, 2023 +
+ OpenAI has disabled the leaked chat model we were previously using, so we're now defaulting to `text-davinci-003`, which is not free. We've found several other hidden, fine-tuned chat models, but OpenAI keeps disabling them, so we're searching for alternative workarounds. @@ -83,6 +87,8 @@ We've found several other hidden, fine-tuned chat models, but OpenAI keeps disab
Feb 1, 2023 +
+ This package no longer requires any browser hacks – **it is now using the official OpenAI completions API** with a leaked model that ChatGPT uses under the hood. 🔥 ```ts @@ -191,7 +197,7 @@ async function example() { } ``` -You can override the default `model` (`gpt-3.5-turbo-0301`) and any [OpenAI completion params](https://platform.openai.com/docs/api-reference/chat/create) using `completionParams`: +You can override the default `model` (`gpt-3.5-turbo-0301`) and any [OpenAI chat completion params](https://platform.openai.com/docs/api-reference/chat/create) using `completionParams`: ```ts const api = new ChatGPTAPI({