如何从text-davinci-003
迁移到gpt-3.5-turbo
?
我试图做的是以下几点:
改变这个。。
model: "text-davinci-003"
...这个
model: "gpt-3.5-turbo"
所以,改变这个…
const API_URL = "https://api.openai.com/v1/completions";
...这个
const API_URL = "https://api.openai.com/v1/chat/completions";
问题是它不起作用。我将给出的代码是未修改的代码,以便任何人都可以帮助我修改什么。
为什么我想要这个升级?text-davinci-003
的完成让我很恼火。就像发送“你好”给我一整封信,而不是一个问候。
Live Sample(通过Github Pages):https://thedoggybrad.github.io/chat/chatsystem
Github Repository:https://github.com/thedoggybrad/chat/tree/main/chatsystem
1条答案
按热度按时间mwg9r5ms1#
您希望使用
gpt-3.5-turbo
模型。ChatGPT API(即GPT-3.5 API)和GPT-3 API之间有三个主要区别:
https://api.openai.com/v1/completions
https://api.openai.com/v1/chat/completions
prompt
参数(GPT-3 API)被messages
参数(ChatGPT API)替换response.choices[0].text.trim()
response.choices[0].message.content.trim()
试试这个: