terrywang
terrywang
大佬,https://job.haojima.net 找工作的智联,BOSS , 拉勾的爬虫接口失效了
> 在配置设置里面,自己设置一个新的user-agent就可以了 最新的user-agent是啥
我也这样了
我刚刚添加代理参数就好了, API_REVERSE_PROXY=https://gpt.pawan.krd/backend-api/conversation 这里有说明:https://github.com/transitive-bullshit/chatgpt-api#reverse-proxy 比如docker启动 docker run --name chatgpt-web -d -p 3002:3002 --env API_REVERSE_PROXY=https://gpt.pawan.krd/backend-api/conversation --env OPENAI_ACCESS_TOKEN=xxx chatgpt-web
> > 我刚刚添加代理参数就好了, API_REVERSE_PROXY=https://gpt.pawan.krd/backend-api/conversation 这里有说明:https://github.com/transitive-bullshit/chatgpt-api#reverse-proxy 比如docker启动 docker run --name chatgpt-web -d -p 3002:3002 --env API_REVERSE_PROXY=https://gpt.pawan.krd/backend-api/conversation --env OPENAI_ACCESS_TOKEN=xxx chatgpt-web > > 你是用的国内服务器吗? 不是,是国外的服务器。
是本地包没拉吧。 本地执行 pip install -r requirements.txt 然后启动 python manage.py runserver 0.0.0.0:8000
```js //1.reduce Array.prototype.myReduce = function (fn, prev) { for (let i = 0; i < this.length; i++) { if (typeof prev === 'undefined') { prev = fn(this[i], this[i + 1],...
> 我看了一下源码, 这个问题是因为在依赖的ntchat的库里面有一个wc文件夹, 然后里面有一个dat文件, 如果你开着windows defender的话有可能会被删除, 找不到这个dat就会报这个错误, 修复的话删除ntchat再重新pip install就行了或者是从别的地方扔一个dat文件过来  刚刚我也遇到这个错,确实是这个问题。感谢,已解决。