fix: plus user use the new model, too.

This commit is contained in:
ikechan8370 2023-02-14 13:49:16 +08:00
parent d247ddbf42
commit d58c5e061e

View file

@ -442,7 +442,7 @@ export class ChatGPTPuppeteer extends Puppeteer {
) { ) {
const { const {
conversationId, conversationId,
parentMessageId = uuidv4(), parentMessageId,
messageId = uuidv4(), messageId = uuidv4(),
action = 'next', action = 'next',
// TODO // TODO
@ -497,7 +497,7 @@ export class ChatGPTPuppeteer extends Puppeteer {
} }
} }
], ],
model: Config.plus ? 'text-davinci-002-render-paid' : 'text-davinci-002-render-sha', model: Config.plus ? 'text-davinci-002-render-sha' : 'text-davinci-002-render-sha',
parent_message_id: parentMessageId parent_message_id: parentMessageId
} }