1
0
Create a fake API using ChatGPT's website https://github.com/acheong08/ChatGPT-to-API
This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2023-05-27 15:44:23 +08:00
.github/workflows build.yml 2023-05-26 02:34:03 +08:00
docs Update admin.md 2023-05-17 21:36:09 +08:00
internal Merge remote-tracking branch 'upgrade/master' 2023-05-27 15:17:02 +08:00
tools authenticator 2023-05-25 15:27:27 +08:00
.gitignore fix my idiocy 2023-05-15 19:29:09 +08:00
auth.go friendly print for update token 2023-05-23 15:15:58 +08:00
docker-compose.yml Docker (#2) 2023-04-12 10:31:44 +08:00
Dockerfile Update Dockerfile 2023-04-12 11:29:45 +08:00
go.mod fix proxies 2023-05-27 15:27:40 +08:00
go.sum fix proxies 2023-05-27 15:27:40 +08:00
handlers.go Merge remote-tracking branch 'upgrade/master' 2023-05-27 15:17:02 +08:00
main.go fix proxies 2023-05-27 15:27:40 +08:00
middleware.go feat auth like openai 2023-05-26 16:33:55 +08:00
README_ZH.md complete readme 2023-05-27 15:44:23 +08:00
README.md complete readme 2023-05-27 15:44:23 +08:00

ChatGPT-to-API

Create a fake API using ChatGPT's website 中文说明

API endpoint: http://127.0.0.1:8080/v1/chat/completions.

Setup

Authentication

Access token retrieval has been automated by OpenAIAuth with account email & password.

accounts.txt - A list of accounts separated by new line

Format:

email:password
...

All authenticated access tokens will store in access_tokens.json

Auto renew access tokens after 20 days

Caution! please use unblocked ip for authentication, first login to https://chat.openai.com/ to check ip availability if you can.

API Authentication (Optional)

Custom API keys for this fake API, just like OpenAI api

api_keys.txt - A list of API keys separated by new line

Format:

sk-123456
88888888
...

Getting set up

git clone https://github.com/xqdoo00o/ChatGPT-to-API
cd ChatGPT-to-API
go build
./freechatgpt

Environment variables

  • PUID - A cookie found on chat.openai.com for Plus users. This gets around Cloudflare rate limits
  • SERVER_HOST - Set to 127.0.0.1 by default
  • SERVER_PORT - Set to 8080 by default

Files (Optional)

  • proxies.txt - A list of proxies separated by new line

    http://127.0.0.1:8888
    ...
    
  • access_tokens.json - A JSON array of access tokens for cycling (Alternatively, send a PATCH request to the correct endpoint)

    ["access_token1", "access_token2"...]
    

Admin API docs

https://github.com/acheong08/ChatGPT-to-API/blob/master/docs/admin.md

API usage docs

https://platform.openai.com/docs/api-reference/chat