Skip to content

ShowMeBaby/chatgpt-web-api-proxy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

OpenAI/ChatGPT 免翻墙代理

据很多网友反应,OpenAI 检测到中国的 API 访问时,会直接封号。所以我在国外的服务器上搭建了一个代理,用于访问 OpenAI/ChatGPT 的 API。

使用

使用 OpenAI/ChatGPT 官方 npm 包:

import { Configuration } from "openai";

const configuration = new Configuration({
  apiKey: OPENAI_API_KEY,
+ basePath: "https://closeai.deno.dev/v1",
});

使用 OpenAI/ChatGPT 官方 Python 包:

  import openai

  openai.api_key = os.getenv("OPENAI_API_KEY")
+ openai.api_base = "https://closeai.deno.dev/v1"

相关仓库

本地开发

deno run --allow-net --allow-read --allow-env --watch main.ts

自己部署

点击这个链接,可以快速一键部署到 Deno Deploy 上。

然后在 Settings 选项卡里可以设置自定义二级域名,或者绑定自己的域名。

About

OpenAI/ChatGPT 免翻墙代理

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%