Written by @xtekky & maintained by @hlohaus
By using this repository or any code related to it, you agree to the legal notice. The author is not responsible for the usage of this repository nor endorses it, nor is the author responsible for any copies, forks, re-uploads made by other users, or anything else related to GPT4Free. This is the author's only account and repository. To prevent impersonation or irresponsible actions, please comply with the GNU GPL license this Repository uses.
Warning
"gpt4free" serves as a PoC (proof of concept), demonstrating the development of an API package with multi-provider requests, with features like timeouts, load balance and flow control.
pip install -U g4f
docker pull hlohaus789/g4f
- Check out a more in depth local inference @ https://github.com/gpt4free/gpt4local
- Join our Telegram Channel: t.me/g4f_channel
- Join our Discord Group: discord.gg/XfybzPXPH5
g4f
now supports 100% local inference: local-docs
Is your site on this repository and you want to take it down? Send an email to takedown@g4f.ai with proof it is yours and it will be removed as fast as possible. To prevent reproduction please secure your API ;)
You can always leave some feedback here: https://forms.gle/FeWV9RLEedfdkmFN6
As per the survey, here is a list of improvements to come
- Update the repository to include the new openai library syntax (ex:
Openai()
class) | completed, useg4f.client.Client
- Golang implementation
- π§ Improve Documentation (in /docs & Guides, Howtos, & Do video tutorials)
- Improve the provider status list & updates
- Tutorials on how to reverse sites to write your own wrapper (PoC only ofc)
- Improve the Bing wrapper. (might write a new wrapper in golang as it is very fast)
- Write a standard provider performance test to improve the stability
- Potential support and development of local models
- π§ Improve compatibility and error handling
- π What's New
- π Table of Contents
- π οΈ Getting Started
- π‘ Usage
- π Providers and Models
- π Related GPT4Free Projects
- π€ Contribute
- π Contributors
- Β©οΈ Copyright
- β Star History
- π License
- Download and install Docker
- Pull latest image and run the container:
docker pull hlohaus789/g4f
docker run -p 8080:8080 -p 1337:1337 -p 7900:7900 --shm-size="2g" hlohaus789/g4f:latest
- Open the included client on: http://localhost:8080/chat/ or set the API base in your client to: http://localhost:1337/v1
- (Optional) If you need to log in to a provider, you can view the desktop from the container here: http://localhost:7900/?autoconnect=1&resize=scale&password=secret.
Run the Web UI on Your Smartphone:
- Download and install Python (Version 3.10+ is recommended).
- Install Google Chrome for providers with webdriver
pip install -U g4f[all]
How do I install only parts or do disable parts? Use partial requirements: /docs/requirements
How do I load the project using git and installing the project requirements? Read this tutorial and follow it step by step: /docs/git
How do I build and run composer image from source? Use docker-compose: /docs/docker
from g4f.client import Client
client = Client()
response = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": "Hello"}],
...
)
print(response.choices[0].message.content)
Hello! How can I assist you today?
from g4f.client import Client
client = Client()
response = client.images.generate(
model="gemini",
prompt="a white siamese cat",
...
)
image_url = response.data[0].url
Full Documentation for Python API
- New Client API like the OpenAI Python library: /docs/client
- Legacy API with python modules: /docs/legacy
To start the web interface, type the following codes in python:
from g4f.gui import run_gui
run_gui()
or execute the following command:
python -m g4f.cli gui -port 8080 -debug
You can use the Interference API to serve other OpenAI integrations with G4F.
See: /docs/interference
For generating images with Bing and for the OpenAI Chat you need cookies or a token from your browser session. From Bing you need the "_U" cookie and from OpenAI you need the "access_token". You can pass the cookies / the access token in the create function or you use the set_cookies
setter before you run G4F:
from g4f.cookies import set_cookies
set_cookies(".bing.com", {
"_U": "cookie value"
})
set_cookies("chat.openai.com", {
"access_token": "token value"
})
set_cookies(".google.com", {
"__Secure-1PSID": "cookie value"
})
...
Alternatively, G4F reads the cookies with browser_cookie3
from your browser
or it starts a browser instance with selenium webdriver
for logging in.
If you want to hide or change your IP address for the providers, you can set a proxy globally via an environment variable:
- On macOS and Linux:
export G4F_PROXY="http://host:port"
- On Windows:
set G4F_PROXY=http://host:port
Website | Provider | GPT-3.5 | GPT-4 | Stream | Status | Auth |
---|---|---|---|---|---|---|
bing.com | g4f.Provider.Bing |
β | βοΈ | βοΈ | β | |
chatgpt.ai | g4f.Provider.ChatgptAi |
β | βοΈ | βοΈ | β | |
liaobots.site | g4f.Provider.Liaobots |
βοΈ | βοΈ | βοΈ | β | |
chat.openai.com | g4f.Provider.OpenaiChat |
βοΈ | βοΈ | βοΈ | βοΈ | |
raycast.com | g4f.Provider.Raycast |
βοΈ | βοΈ | βοΈ | βοΈ | |
beta.theb.ai | g4f.Provider.Theb |
βοΈ | βοΈ | βοΈ | β | |
you.com | g4f.Provider.You |
βοΈ | βοΈ | βοΈ | β |
Website | Provider | GPT-3.5 | GPT-4 | Stream | Status | Auth |
---|---|---|---|---|---|---|
chat3.aiyunos.top | g4f.Provider.AItianhuSpace |
βοΈ | β | βοΈ | β | |
chatforai.store | g4f.Provider.ChatForAi |
βοΈ | β | βοΈ | β | |
chatgpt4online.org | g4f.Provider.Chatgpt4Online |
βοΈ | β | βοΈ | β | |
chatgpt-free.cc | g4f.Provider.ChatgptNext |
βοΈ | β | βοΈ | β | |
chatgptx.de | g4f.Provider.ChatgptX |
βοΈ | β | βοΈ | β | |
flowgpt.com | g4f.Provider.FlowGpt |
βοΈ | β | βοΈ | β | |
freegptsnav.aifree.site | g4f.Provider.FreeGpt |
βοΈ | β | βοΈ | β | |
gpttalk.ru | g4f.Provider.GptTalkRu |
βοΈ | β | βοΈ | β | |
koala.sh | g4f.Provider.Koala |
βοΈ | β | βοΈ | β | |
app.myshell.ai | g4f.Provider.MyShell |
βοΈ | β | βοΈ | β | |
perplexity.ai | g4f.Provider.PerplexityAi |
βοΈ | β | βοΈ | β | |
poe.com | g4f.Provider.Poe |
βοΈ | β | βοΈ | βοΈ | |
talkai.info | g4f.Provider.TalkAi |
βοΈ | β | βοΈ | β | |
chat.vercel.ai | g4f.Provider.Vercel |
βοΈ | β | βοΈ | β | |
aitianhu.com | g4f.Provider.AItianhu |
βοΈ | β | βοΈ | β | |
chatgpt.bestim.org | g4f.Provider.Bestim |
βοΈ | β | βοΈ | β | |
chatbase.co | g4f.Provider.ChatBase |
βοΈ | β | βοΈ | β | |
chatgptdemo.info | g4f.Provider.ChatgptDemo |
βοΈ | β | βοΈ | β | |
chat.chatgptdemo.ai | g4f.Provider.ChatgptDemoAi |
βοΈ | β | βοΈ | β | |
chatgptfree.ai | g4f.Provider.ChatgptFree |
βοΈ | β | β | β | |
chatgptlogin.ai | g4f.Provider.ChatgptLogin |
βοΈ | β | βοΈ | β | |
chat.3211000.xyz | g4f.Provider.Chatxyz |
βοΈ | β | βοΈ | β | |
gpt6.ai | g4f.Provider.Gpt6 |
βοΈ | β | βοΈ | β | |
gptchatly.com | g4f.Provider.GptChatly |
βοΈ | β | β | β | |
ai18.gptforlove.com | g4f.Provider.GptForLove |
βοΈ | β | βοΈ | β | |
gptgo.ai | g4f.Provider.GptGo |
βοΈ | β | βοΈ | β | |
gptgod.site | g4f.Provider.GptGod |
βοΈ | β | βοΈ | β | |
onlinegpt.org | g4f.Provider.OnlineGpt |
βοΈ | β | βοΈ | β |
Website | Provider | GPT-3.5 | GPT-4 | Stream | Status | Auth |
---|---|---|---|---|---|---|
openchat.team | g4f.Provider.Aura |
β | β | βοΈ | β | |
bard.google.com | g4f.Provider.Bard |
β | β | β | βοΈ | |
deepinfra.com | g4f.Provider.DeepInfra |
β | β | βοΈ | β | |
free.chatgpt.org.uk | g4f.Provider.FreeChatgpt |
β | β | βοΈ | β | |
gemini.google.com | g4f.Provider.Gemini |
β | β | βοΈ | βοΈ | |
ai.google.dev | g4f.Provider.GeminiPro |
β | β | βοΈ | βοΈ | |
gemini-chatbot-sigma.vercel.app | g4f.Provider.GeminiProChat |
β | β | βοΈ | β | |
huggingface.co | g4f.Provider.HuggingChat |
β | β | βοΈ | β | |
huggingface.co | g4f.Provider.HuggingFace |
β | β | βοΈ | β | |
llama2.ai | g4f.Provider.Llama2 |
β | β | βοΈ | β | |
labs.perplexity.ai | g4f.Provider.PerplexityLabs |
β | β | βοΈ | β | |
pi.ai | g4f.Provider.Pi |
β | β | βοΈ | β | |
theb.ai | g4f.Provider.ThebApi |
β | β | β | βοΈ | |
open-assistant.io | g4f.Provider.OpenAssistant |
β | β | βοΈ | βοΈ |
Model | Base Provider | Provider | Website |
---|---|---|---|
gpt-3.5-turbo | OpenAI | 5+ Providers | openai.com |
gpt-4 | OpenAI | 2+ Providers | openai.com |
gpt-4-turbo | OpenAI | g4f.Provider.Bing | openai.com |
Llama-2-7b-chat-hf | Meta | 2+ Providers | llama.meta.com |
Llama-2-13b-chat-hf | Meta | 2+ Providers | llama.meta.com |
Llama-2-70b-chat-hf | Meta | 3+ Providers | llama.meta.com |
CodeLlama-34b-Instruct-hf | Meta | 2+ Providers | llama.meta.com |
CodeLlama-70b-Instruct-hf | Meta | 2+ Providers | llama.meta.com |
Mixtral-8x7B-Instruct-v0.1 | Huggingface | 4+ Providers | huggingface.co |
Mistral-7B-Instruct-v0.1 | Huggingface | 4+ Providers | huggingface.co |
dolphin-2.6-mixtral-8x7b | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
lzlv_70b_fp16_hf | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
airoboros-70b | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
airoboros-l2-70b-gpt4-1.4.1 | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
openchat_3.5 | Huggingface | 2+ Providers | huggingface.co |
gemini | g4f.Provider.Gemini | gemini.google.com | |
gemini-pro | 2+ Providers | gemini.google.com | |
claude-v2 | Anthropic | 1+ Providers | anthropic.com |
claude-3-opus | Anthropic | g4f.Provider.You | anthropic.com |
claude-3-sonnet | Anthropic | g4f.Provider.You | anthropic.com |
pi | Inflection | g4f.Provider.Pi | inflection.ai |
π Projects | β Stars | π Forks | π Issues | π¬ Pull requests |
gpt4free | ||||
gpt4free-ts | ||||
Free AI API's & Potential Providers List | ||||
ChatGPT-Clone | ||||
ChatGpt Discord Bot | ||||
chatGPT-discord-bot | ||||
Nyx-Bot (Discord) | ||||
LangChain gpt4free | ||||
ChatGpt Telegram Bot | ||||
ChatGpt Line Bot | ||||
Action Translate Readme | ||||
Langchain Document GPT | ||||
python-tgpt |
We welcome contributions from the community. Whether you're adding new providers or features, or simply fixing typos and making small improvements, your input is valued. Creating a pull request is all it takes β our co-pilot will handle the code review process. Once all changes have been addressed, we'll merge the pull request into the main branch and release the updates at a later time.
- Read: /docs/guides/help_me
A list of all contributors is available here
The Vercel.py
file contains code from vercel-llm-api by @ading2210, which is licensed under the GNU GPL v3
Top 1 Contributor: @hlohaus
This program is licensed under the GNU GPL v3
xtekky/gpt4free: 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/>.
This project is licensed under GNU_GPL_v3.0. |