Home

Awesome

KISS-PROXY

基于 cloudflare workers 的简单接口代理,可用于 KISS Translator 翻译服务。

1、准备

2、部署

git clone https://github.com/fishjar/kiss-proxy.git
cd kiss-proxy
yarn install
yarn deploy

3、设置自定义域名

4、最终接口地址

5、添加更多代理

找到源代码,修改这一段:

const sites = {
  "/gt": {
    method: "GET",
    url: "https://translate.googleapis.com/translate_a/single",
  },
  "/openai": {
    method: "POST",
    url: "https://api.openai.com/v1/chat/completions",
  },
};

然后重新部署:

yarn deploy