NodeJS openai API给我这个错误的基本例子:“该型号不存在”

9jyewag0  于 2023-02-03  发布在  Node.js
关注(0)|答案(1)|浏览(385)

从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;
uyto3xhc

uyto3xhc1#

您必须将model参数设置为text-davinci-003text-curie-001text-babbage-001text-ada-001。它是required parameter
此外,所有Engines endpoints都已弃用。

相关问题