gpt4 book ai didi

python - OpenAI ChatGPT (GPT-3.5) API 错误 : "Invalid URL (POST/v1/engines/gpt-3.5-turbo/chat/completions)"

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

我正在使用 OpenAI 来了解有关 API 集成的更多信息,但在运行 Python 程序时我不断运行此代码。我向 ChatGPT 询问了无效 URL (POST/v1/engines/gpt-3.5-turbo/chat/completions) 错误,但它似乎没有给我正确的解决方案。

注意:我确实安装了最新的 OpenAI 软件包(即 0.27.4)。

代码:

import os
import openai
openai.api_key = "sk-xxxxxxxxxxxxxxxxxxxx"

messages = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me a joke."}
]

response = openai.ChatCompletion.create(
engine="gpt-3.5-turbo",
messages=messages,
max_tokens=50,
n=1,
stop=None,
temperature=0.7,
)

joke = response.choices[0].text.strip()
print(joke)

最佳答案

问题

ChatGPT API(即 GPT-3.5 API)有一个 model 参数(必需)。 engine 参数不是 /v1/chat/completions API 端点的有效参数。请参阅官方 OpenAI documentation .

解决方案

改变这个...

engine = "gpt-3.5-turbo"

...对此。

model = "gpt-3.5-turbo"

另外,更改此...

joke = response.choices[0].text.strip()

...对此。

joke = response['choices'][0]['message']['content']

关于python - OpenAI ChatGPT (GPT-3.5) API 错误 : "Invalid URL (POST/v1/engines/gpt-3.5-turbo/chat/completions)",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76084296/

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