不定期更新:可用的Reverse engineered ChatGPT proxy

前言

收集目前可用的反代搭建工具

2024-05-01-aurorax-neo/free-gpt3.5-2api

aurorax-neo/free-gpt3.5-2api

2024-04-21-aurorax-neo/free-gpt3.5-2api

  • 创建文件夹

    1
    mkdir -p $PWD/free-gpt3.5-2api
  • 2.拉取镜像启动

1
docker run -itd  --name=free-gpt3.5-2api -p 9846:3040 ghcr.io/aurorax-neo/free-gpt3.5-2api
  • 3.更新容器

    1
    docker run --rm -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower -cR free-gpt3.5-2api --debug

终端配置

1
http://<ip>:<port>/v1/chat/completions

aurorax-neo/free-gpt3.5-2api

  • Docker

    1
    docker run -itd  --name=free-gpt3.5-2api -p 9846:3040 -v $PWD/free-gpt3.5-2api/logs:/app/logs ghcr.io/aurorax-neo/free-gpt3.5-2api
  • 终端配置

    1
    http://<ip>:<port>/v1/chat/completions

2024-04-21-aurora-develop/aurora

aurora-develop/aurora

  • Docker compose

    1
    2
    3
    4
    mkdir aurora && cd aurora
    wget -O compose.yaml
    https://raw.githubusercontent.com/aurora-develop/aurora/main/docker-compose.yml
    docker compose up -d
  • 终端配置

    1
    http://你的服务器ip:8080/v1/chat/completions'

2024-04-21-missuo/FreeGPT35

missuo/FreeGPT35/

  • Docker compose

    1
    2
    3
    mkdir freegpt35 && cd freegpt35
    wget -O compose.yaml https://raw.githubusercontent.com/missuo/FreeGPT35/main/compose.yaml
    docker compose up -d
  • 终端配置

    After deployment, you can directly access

    1
    http://[IP]:3040/v1/chat/completions

    to use the API. You can use it in any app, such as OpenCat, Next-Chat, Lobe-Chat, Bob, etc. Feel free to fill in an API Key with any string, for example, gptyyds.

    Or use

    1
    http://[IP]:3210

    to directly use lobe-chat.

2024-04-08-xqdoo00oChatGPT-to-API

xqdoo00oChatGPT-to-API

  • Docker compose:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: '3'

services:
app:
image: acheong08/chatgpt-to-api # 总是使用latest,更新时重新pull该tag镜像即可
container_name: chatgpttoapi
restart: unless-stopped
ports:
- '8080:8080'
environment:
SERVER_HOST: 0.0.0.0
SERVER_PORT: 8080
ADMIN_PASSWORD: TotallySecurePassword
# If the parameter API_REVERSE_PROXY is empty, the default request URL is https://chat.openai.com/backend-api/conversation, and the PUID is <NOT> equired.
PUID: xxx
  • API endpoint:
1
http://127.0.0.1:8080/v1/chat/completions.

2024-04-07-PawanOsman/ ChatGPT

PawanOsman/ ChatGPT

  • Docker

    1
    docker run -dp 3040:3040 pawanosman/chatgpt:latest
  • server’s API at:

    1
    http://localhost:3040/v1/chat/completions

2024-02-24-maxduke/go-chatgpt-ap

maxduke/go-chatgpt-ap

1
2
3
4
5
6
7
8
9
10
11
12
services:
go-chatgpt-api:
image: maxduke/go-chatgpt-api:latest
container_name: go-chatgpt-api
network_mode: host ### 用于vps已经搭建warp通道
ports:
- "8080:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- TZ=Asia/Shanghai
restart: unless-stopped

Token获取

链接

Example

easydict的接口地址:

1
http://*.*.*.*:8080/imitate/v1/chat/completions

截屏2024-02-24 13.17.56


不定期更新:可用的Reverse engineered ChatGPT proxy
http://example.com/2024/02/24/Irregular-updates-Reverse-engineered-ChatGPT-proxy/
作者
Justin
发布于
2024年2月24日
许可协议