diff --git a/package.json b/package.json index 5f9d1f17..ef9b5dfd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tzzack/chatgpt", - "version": "1.0.0", + "version": "1.0.1", "description": "Node.js client for the official ChatGPT API.", "author": "Travis Fischer ", "repository": "transitive-bullshit/chatgpt-api", diff --git a/src/chatgpt-api.ts b/src/chatgpt-api.ts index 7aaa276c..3d62fa0e 100644 --- a/src/chatgpt-api.ts +++ b/src/chatgpt-api.ts @@ -200,7 +200,10 @@ export class ChatGPTAPI { 'gpt-4-32k', 'gpt-4-32k-0314', 'gpt-3.5-turbo', - 'gpt-3.5-turbo-0301' + 'gpt-3.5-turbo-0301', + 'gpt-3.5-turbo-0613', + 'gpt-3.5-turbo-16k', + 'gpt-3.5-turbo-16k-0613' ].includes(model) if (!isGpt) { url = `${this._apiBaseUrl}/completions`