webman這個非常給力哈,但是我連續(xù)問了幾個問題。好像無法繼續(xù)使用了,是有次數(shù)限制對吧?還是哪里的問題?
請教出現(xiàn)下面的問題,是我免費的次數(shù)到了對吧?
為啥model傳的是3.5的接口響應時的model也是3.5的 但回答的內(nèi)容確是3,是這gpt的問題還是我哪配置有問題
老大,可以把這些OpenAI的api返回的錯誤提示加進來嗎,現(xiàn)在api返回的錯誤,前臺顯示不了,只能按F12去看接口返回了什么提示
他的錯誤也是用流式返回的,具體數(shù)據(jù)類型我忘了,類似:
data: {error...}
data: [DONE]
老大可以自己去觸發(fā)一下錯誤
用的是gpt-3.5-turbo-0613模型
剛剛又出現(xiàn)這個問題了老大,確實沒顯示在頁面上
data: {"error":{"message":"That model is currently overloaded with other requests. You can retry your request, or contact us through our help center at help.openai.com if the error persists. (Please include the request ID 644d651905282c97f1aab66d7ed28eea in your message.)","type":"server_error","param":null,"code":null}}
data: [DONE]
修改下app.js
if (message.error) {
message.choices[0].delta.content += message.error.message || '';
} else {
message.choices[0].delta.content += data.choices[0].delta.content || '';
}
老大,贈送的賬號被禁了。。。
返回
{
"message": "This key is associated with a deactivated account. If you feel this is an error, contact us through our help center at help.openai.com.",
"type": "invalid_request_error",
"param": null,
"code": "account_deactivated"
}