givanz / VvvebJs

Drag and drop page builder library written in vanilla javascript without dependencies or build tools.
https://www.vvveb.com/vvvebjs/editor.html
Apache License 2.0
6.86k stars 1.58k forks source link

The model `text-davinci-003` has been deprecated #333

Open criativocyber opened 5 months ago

criativocyber commented 5 months ago

When I try to use Chat GPT AI assistant with the key it gives to me an error called "The model text-davinci-003 has been deprecated"

givanz commented 5 months ago

Thanks for the bug report.

It seems that the model was recently deprecated https://platform.openai.com/docs/deprecations/2023-07-06-gpt-and-embeddings and the recommended model to replace it is gpt-3.5-turbo-instruct

You can edit https://github.com/givanz/VvvebJs/blob/master/editor.html#L1750 and change the line to

let chatgptOptions = {"key":"","model":"gpt-3.5-turbo-instruct","temperature":0,"max_tokens":70};