1
0
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.
chatgpt-to-api/README.md

82 lines
2.7 KiB
Markdown
Raw Normal View History

# ChatGPT-to-API
2023-07-20 03:14:47 +00:00
Create a fake API using ChatGPT's website
2023-06-04 12:48:40 +00:00
> ## IMPORTANT
> You will not get free support for this repository. This was made for my own personal use and documentation will continue to be limited as I don't really need documentation. You will find more detailed documentation in the Chinese docs by a contributor.
**API endpoint: http://127.0.0.1:8080/v1/chat/completions.**
2023-08-08 04:26:48 +00:00
[中文文档Chinese Docs](https://github.com/acheong08/ChatGPT-to-API/blob/master/README_ZH.md)
2023-04-12 10:47:50 +00:00
## Setup
2023-05-17 13:37:33 +00:00
2023-04-12 10:54:54 +00:00
### Authentication
2023-05-22 06:34:44 +00:00
Access token and PUID(only for PLUS account) retrieval has been automated by [OpenAIAuth](https://github.com/acheong08/OpenAIAuth/) with account email & password.
2023-04-12 10:54:54 +00:00
2023-05-18 03:42:54 +00:00
`accounts.txt` - A list of accounts separated by new line
2023-04-12 10:54:54 +00:00
2023-05-18 03:42:54 +00:00
Format:
```
email:password
...
2023-04-12 10:54:54 +00:00
```
All authenticated access tokens and PUID will store in `access_tokens.json`
2023-05-19 07:58:05 +00:00
Auto renew access tokens and PUID after 7 days
2023-05-18 03:42:54 +00:00
Caution! please use unblocked ip for authentication, first login to `https://chat.openai.com/` to check ip availability if you can.
2023-04-12 10:54:54 +00:00
### GPT-4 Model (Optional)
If you configured a PLUS account and use the GPT-4 model, a HAR file (`chat.openai.com.har`) is required to complete CAPTCHA verification
1. Use a chromium-based browser (Chrome, Edge) or Safari to login to `https://chat.openai.com/`, then open the browser developer tools (F12), and switch to the Network tab.
2. Create a new chat and select the GPT-4 model, ask a question at will, click the Export HAR button under the Network tab, export the file `chat.openai.com.har`
2023-05-27 07:44:23 +00:00
### 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
...
```
2023-05-17 13:37:33 +00:00
## Getting set up
2023-05-18 03:42:54 +00:00
```
2023-07-21 09:45:09 +00:00
git clone https://github.com/acheong08/ChatGPT-to-API
2023-05-18 03:42:54 +00:00
cd ChatGPT-to-API
go build
./freechatgpt
```
2023-05-17 13:37:33 +00:00
### 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
2023-07-20 03:14:47 +00:00
- `ENABLE_HISTORY` - Set to true by default
2023-05-17 13:37:33 +00:00
### Files (Optional)
2023-05-18 03:42:54 +00:00
- `proxies.txt` - A list of proxies separated by new line
2023-05-18 03:42:54 +00:00
```
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](https://github.com/acheong08/ChatGPT-to-API/blob/master/docs/admin.md))
```
[{token:"access_token1", puid:"puid1"}, {token:"access_token2", puid:"puid2"}...]
2023-05-18 03:42:54 +00:00
```
2023-04-12 11:02:26 +00:00
## 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