Skip to content

v1.3.0

Compare
Choose a tag to compare
@nianhua99 nianhua99 released this 05 Sep 15:13
· 16 commits to main since this release

现在PandoraHelper已实现内置反代oaifree和fuclaude

//  .....其他配置
"http": {
    //  .....其他配置
    "proxy-pass": {
      "oaifree": {
        "enable": true,
        "host": "https://new.oaifree.com",
        "port": 9001
      },
      "fuclaude": {
        "enable": true,
        "host": "https://demo.fuclaude.com",
        "port": 9002
      }
    },
    //  .....其他配置
  },
//  .....其他配置

添加上面的 http.proxy-pass 两个配置项后,就可以开启对应的反代,建议直接反代始皇的服务。
项目启动后会在对应的端口启动两个反代站点,默认使用9001,9002两个端口。

基于它,Helper现在可以接管登录之后的事情了,比如拦截对话之类的接口。
所以,你需要将Helper反代出的两个站点域名配置在 pandora.domain.indexpandora.domain.claude中,否则下面两个功能不会生效。

首先开发了下面两个呼声最高的Feature:

道德审查

通过在config.json中添加 moderation.apiKeymoderation.apiUrl ,就可以直接开启道德审查!你可以在 moderation.message 中配置自己的报错信息。
apiUrl 建议使用默认配置,不需要修改。
配置后,反代的oaifree和fuclaude站点都将自动开启道德审查。

对话记录保存

chatgpt和fuclaude的对话都会被保存在 conversation 表中,还没有开发前端页面,也没有记录对应的share用户标识,这个下个版本会做。

其他Bug修复

  • 修复了更换AccessToken时不会刷新对应Share用户的Bug
  • 修复了账号管理页面中,对话框有时候不会清除回显内容的Bug