1
0
Fork 0
GPT4FREE/README.md

92 lines
3.5 KiB
Markdown
Raw Normal View History

2023-04-01 21:04:33 +00:00
# Free LLM APIs
2023-04-01 12:53:30 +00:00
2023-04-01 21:04:33 +00:00
This repository provides reverse-engineered language models from various sources. Some of these models are already available in the repo, while others are currently being worked on.
2023-04-01 12:55:00 +00:00
2023-04-01 21:04:33 +00:00
> **Important:** If you come across any website offering free language models, please create an issue or submit a pull request with the details. We will reverse engineer it and add it to this repository.
2023-04-01 12:55:00 +00:00
2023-04-22 12:44:02 +00:00
## Chatgpt clone
> https://chat.chatbot.sex/chat
2023-04-22 12:44:02 +00:00
> This site was developed by me and includes **gpt-4/3.5**, **internet access** and **gpt-jailbreak's** like DAN
2023-04-19 12:45:34 +00:00
> You can find an opensource version of it to run locally here: https://github.com/xtekky/chatgpt-clone
2023-04-09 22:22:16 +00:00
2023-04-01 21:04:33 +00:00
## Table of Contents
2023-04-01 12:53:30 +00:00
2023-04-01 21:04:33 +00:00
- [Current Sites (No Authentication / Easy Account Creation)](#current-sites)
- [Sites with Authentication (Will Reverse Engineer but Need Account Access)](#sites-with-authentication)
2023-04-22 12:56:34 +00:00
- [Usage Examples]
- [`quora (poe)`](./quora/README.md)
- [`phind`](./phind/README.md)
- [`t3nsor`](./t3nsor/README.md)
- [`ora`](./ora/README.md)
- [`writesonic`](./writesonic/README.md)
- [`you`](./you/README.md)
2023-04-22 13:10:12 +00:00
- [`sqlchat`](./sqlchat/README.md)
2023-04-01 12:53:30 +00:00
2023-04-01 21:04:33 +00:00
## Current Sites <a name="current-sites"></a>
2023-04-01 12:53:30 +00:00
2023-04-01 21:04:33 +00:00
| Website | Model(s) |
| -------------------------- | -------------------- |
2023-04-16 16:40:45 +00:00
| [ora.sh](https://ora.sh) | GPT-3.5 / 4 |
2023-04-01 21:04:33 +00:00
| [poe.com](https://poe.com) | GPT-4/3.5 |
| [writesonic.com](https://writesonic.com)|GPT-3.5 / Internet|
2023-04-09 23:03:55 +00:00
| [t3nsor.com](https://t3nsor.com)|GPT-3.5|
| [you.com](https://you.com)|GPT-3.5 / Internet / good search|
| [phind.com](https://phind.com)|GPT-4 / Internet / good search|
2023-04-22 13:10:12 +00:00
| [sqlchat.ai](https://sqlchat.ai)|GPT-3.5|
2023-03-29 19:00:39 +00:00
2023-04-01 21:04:33 +00:00
## Sites with Authentication <a name="sites-with-authentication"></a>
2023-03-29 20:10:42 +00:00
2023-04-01 21:04:33 +00:00
These sites will be reverse engineered but need account access:
2023-04-22 13:01:00 +00:00
| Website | Model(s) |
| --------------------------------------------------- | -------------- |
| [chat.openai.com/chat](https://chat.openai.com/chat)| GPT-3.5 |
| [bard.google.com](https://bard.google.com) | custom / search|
| [bing.com/chat](https://bing.com/chat) | gpt-4/3.5 |
2023-04-01 21:04:33 +00:00
## Usage Examples <a name="usage-examples"></a>
2023-04-22 12:54:01 +00:00
| NOTE: the instructions of each module has been moved in the folder of the module itsself|
| --- |
2023-04-09 23:03:55 +00:00
2023-04-01 21:04:33 +00:00
## Dependencies
2023-04-01 13:06:46 +00:00
2023-04-01 21:04:33 +00:00
* websocket-client
* requests
* tls-client
2023-04-22 12:54:01 +00:00
* pypasser
* names
* colorama
* curl_cffi
install with:
```sh
pip3 install -r requirements.txt
```
2023-04-16 23:14:41 +00:00
2023-04-16 23:04:20 +00:00
## Copyright:
This program is licensed under the [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.txt)
Most code, with the exception of `quora/api.py` (by [ading2210](https://github.com/ading2210)), has been written by me, [xtekky](https://github.com/xtekky).
### Copyright Notice:
```
xtekky/openai-gpt4: multiple reverse engineered language-model api's to decentralise the ai industry.
Copyright (C) 2023 xtekky
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
```