- 🚀申请领取内测免费API Key
- 转发Host1:
https://api.chatanywhere.com.cn
(国内中转,延时更低,推荐) - 转发Host2:
https://api.chatanywhere.cn
(国外使用,国内需要全局代理)
我们会定期根据使用量进行相应的扩容,只要不被官方制裁我们会一直提供免费API
该API Key用于转发API,需要将Host改为api.chatanywhere.com.cn
(国内首选)或者api.chatanywhere.cn
(国外使用,国内需要全局代理)。
如何使用
- 需要你使用你的Github账号绑定来领取你自己的免费Key。
- 🚀申请领取内测免费API Key
- 转发Host1:
https://api.chatanywhere.com.cn
(国内中转,延时更低,推荐) - 转发Host2:
https://api.chatanywhere.cn
(国外使用,国内需要全局代理) - 余额和使用记录查询(通知公告也会发在这里): 余额查询及公告
- 转发API无法直接向官方接口api.openai.com发起请求,需要将请求地址改为api.chatanywhere.com.cn才可以使用,大部分插件和软件都可以修改。
常见软件/插件使用方法
python openai官方库(使用AutoGPT,langchain等)
示例代码请参考demo.py
方法一
import openai
openai.api_base = "https://api.chatanywhere.com.cn/v1"
# openai.api_base = "https://api.chatanywhere.cn/v1"
方法二(方法一不起作用用这个)
修改环境变量OPENAI\_API\_BASE,各个系统怎么改环境变量请自行搜索,修改环境变量后不起作用请重启系统。
OPENAI_API_BASE=https://api.chatanywhere.com.cn/v1
或 OPENAI_API_BASE=https://api.chatanywhere.cn/v1
开源gpt\_academic
找到config.py
文件中的API_URL_REDIRECT
配置并修改为以下内容:
API_URL_REDIRECT = {"https://api.openai.com/v1/chat/completions": "https://api.chatanywhere.com.cn/v1/chat/completions"}
# API_URL_REDIRECT = {"https://api.openai.com/v1/chat/completions": "https://api.chatanywhere.cn/v1/chat/completions"}
ChatBox(推荐使用)
ChatGPT开源桌面应用,支持全部桌面平台。
下载链接:https://github.com/Bin-Huang/chatbox/releases
使用方法:如图在设置中填入购买的密钥,并将代理设置为https://api.chatanywhere.com.cn
即可
浏览器插件ChatGPT Sidebar
官网链接:https://chatgpt-sidebar.com/
安装好插件后进入设置页面,如图所示修改设置,将url修改为 https://api.chatanywhere.com.cn
。
Jetbrains插件ChatGPT - Easycode
安装好插件后在Settings > Tools > OpenAI > GPT 3.5 Turbo中如图所示配置好插件,重点要将Server Settings 修改为 https://api.chatanywhere.com.cn/v1/chat/completions
。并勾选Customize Server。
VSCode插件Code GPT
这个插件修改Host相对麻烦一些,需要修改源码才可以使用。
- 安装插件。安装好后按Ctrl+Shift+P,弹出框中输入Open Extensions Floder
- 点击Extensions: Open Extensions Floder,这将打开插件目录,找到Code GPT的文件夹。
- 打开后进入打开文件./src/clients/openai\_client.js,搜索文件中的api.openai.com,并替换为
api.chatanywhere.com.cn
。保存文件。 - 再次回到vscode,按Ctrl+Shift+P,弹出框中输入CodeGPT: Set API KEY,点击CodeGPT: Set API KEY。然后将购买的Key输入进去即可。
- 以上步骤完成后,重启VSCode
- 其他VSCode插件类似。