webman/ai 發(fā)布2.0版本,多角色設(shè)置,全新UI,全新體驗(yàn)。
體驗(yàn)地址 http://m.wtbis.cn/ai
更多說明參考 http://m.wtbis.cn/q/10330
webman這個非常給力哈,但是我連續(xù)問了幾個問題。好像無法繼續(xù)使用了,是有次數(shù)限制對吧?還是哪里的問題?
請教出現(xiàn)下面的問題,是我免費(fèi)的次數(shù)到了對吧?
為啥model傳的是3.5的接口響應(yīng)時的model也是3.5的 但回答的內(nèi)容確是3,是這gpt的問題還是我哪配置有問題
弱弱的問一句,我如果不集成到自己系統(tǒng),只是當(dāng)成一個工具用。也不用買海外服務(wù)器。
市面上花幾塊錢買個key,就可以在官網(wǎng)站的demo上使用自己的key發(fā)送。
老大,啥時候能夠去除掉依賴webman,單獨(dú)把源碼弄下來放到寶塔進(jìn)行部署,希望大佬快開發(fā)呀,隔壁開源的已經(jīng)很秀了啊
webman是必須的,基于php-fpm的chatgpt支持不了幾個并發(fā),一個提問php-fpm進(jìn)程得卡好幾十秒,幾個用戶進(jìn)來訪問整個服務(wù)就可能卡死了。webman是基于異步非阻塞的,一個進(jìn)程就可以支持海量訪問。
老大,可以把這些OpenAI的api返回的錯誤提示加進(jìn)來嗎,現(xiàn)在api返回的錯誤,前臺顯示不了,只能按F12去看接口返回了什么提示
他的錯誤也是用流式返回的,具體數(shù)據(jù)類型我忘了,類似:
data: {error...}
data: [DONE]
老大可以自己去觸發(fā)一下錯誤
用的是gpt-3.5-turbo-0613模型
剛剛又出現(xiàn)這個問題了老大,確實(shí)沒顯示在頁面上
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"
}