gpt4 book ai didi

node.js - OpenAI GPT-3 API 错误 : "That model does not exist"

转载 作者:行者123 更新时间:2023-12-02 05:47:57 24 4
gpt4 key购买 nike

从 node.js 中的 api 调用获取“该模型不存在”

const chatGptUrl = "https://api.openai.com/v1/engines/chat-gpt/jobs";

...

const response = await axios.post(
chatGptUrl,
{
prompt,
max_tokens: 100,
n: 1,
stop: "",
},
{
headers: {
"Content-Type": "application/json",
"Authorization": `Bearer ${chatGptApiKey}`,
},
}
);

const responseText = response.data.choices[0].text;

最佳答案

您必须将 model 参数设置为 text-davinci-003text-curie-001text-babbage -001text-ada-001。这是一个required parameter .

此外,所有 Engines endpoints已弃用。

Deprecated

关于node.js - OpenAI GPT-3 API 错误 : "That model does not exist",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75322813/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com