The ETA till (v3 for g4f) where I, @xtekky will pick this project back up and improve it is 29
days (written Tue 28 May), join t.me/g4f_channel in the meanwhile to stay updated.
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
- Added
gpt-4o
, simply usegpt-4o
inchat.completion.create
. - Installation Guide for Windows (.exe): π» #installation-guide-for-windows
- Join our Telegram Channel: π¨ telegram.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 [email protected] 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. (Wait and Retry or reuse conversation)
- π§ 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
- π Powered by gpt4free
- π€ Contribute
- π Contributors
- Β©οΈ Copyright
- β Star History
- π License
-
Install Docker: Begin by downloading and installing Docker.
-
Set Up the Container: Use the following commands to pull the latest image and start the container:
docker pull hlohaus789/g4f
docker run \
-p 8080:8080 -p 1337:1337 -p 7900:7900 \
--shm-size="2g" \
-v ${PWD}/har_and_cookies:/app/har_and_cookies \
-v ${PWD}/generated_images:/app/generated_images \
hlohaus789/g4f:latest
-
Access the Client:
- To use the included client, navigate to: https://localhost:8080/chat/
- Or set the API base for your client to: https://localhost:1337/v1
-
(Optional) Provider Login: If required, you can access the container's desktop here: https://localhost:7900/?autoconnect=1&resize=scale&password=secret for provider login purposes.
To ensure the seamless operation of our application, please follow the instructions below. These steps are designed to guide you through the installation process on Windows operating systems.
- Download the Application: Visit our releases page and download the most recent version of the application, named
g4f.exe.zip
. - File Placement: After downloading, locate the
.zip
file in your Downloads folder. Unpack it to a directory of your choice on your system, then execute theg4f.exe
file to run the app. - Open GUI: The app starts a web server with the GUI. Open your favorite browser and navigate to
https://localhost:8080/chat/
to access the application interface. - Firewall Configuration (Hotfix): Upon installation, it may be necessary to adjust your Windows Firewall settings to allow the application to operate correctly. To do this, access your Windows Firewall settings and allow the application.
By following these steps, you should be able to successfully install and run the application on your Windows system. If you encounter any issues during the installation process, please refer to our Issue Tracker or try to get contact over Discord for assistance.
Run the Webview UI on other Platfroms:
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 AsyncClient API from G4F: /docs/async_client
- 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: /docs/interference
Access with: https://localhost:1337/v1
Cookies are essential for using Meta AI and Microsoft Designer to create images. Additionally, cookies are required for the Google Gemini and WhiteRabbitNeo Provider. From Bing, ensure you have the "_U" cookie, and from Google, all cookies starting with "__Secure-1PSID" are needed.
You can pass these cookies directly to the create function or set them using the set_cookies
method before running G4F:
from g4f.cookies import set_cookies
set_cookies(".bing.com", {
"_U": "cookie value"
})
set_cookies(".google.com", {
"__Secure-1PSID": "cookie value"
})
You can place .har
and cookie files in the default ./har_and_cookies
directory. To export a cookie file, use the EditThisCookie Extension available on the Chrome Web Store.
To capture cookies, you can also create .har
files. For more details, refer to the next section.
You can change the cookies directory and load cookie files in your Python environment. To set the cookies directory relative to your Python file, use the following code:
import os.path
from g4f.cookies import set_cookies_dir, read_cookie_files
import g4f.debug
g4f.debug.logging = True
cookies_dir = os.path.join(os.path.dirname(__file__), "har_and_cookies")
set_cookies_dir(cookies_dir)
read_cookie_files(cookies_dir)
If you enable debug mode, you will see logs similar to the following:
Read .har file: ./har_and_cookies/you.com.har
Cookies added: 10 from .you.com
Read cookie file: ./har_and_cookies/google.json
Cookies added: 16 from .google.com
To utilize the OpenaiChat provider, a .har file is required from https://chatgpt.com/. Follow the steps below to create a valid .har file:
- Navigate to https://chatgpt.com/ using your preferred web browser and log in with your credentials.
- Access the Developer Tools in your browser. This can typically be done by right-clicking the page and selecting "Inspect," or by pressing F12 or Ctrl+Shift+I (Cmd+Option+I on a Mac).
- With the Developer Tools open, switch to the "Network" tab.
- Reload the website to capture the loading process within the Network tab.
- Initiate an action in the chat which can be captured in the .har file.
- Right-click any of the network activities listed and select "Save all as HAR with content" to export the .har file.
- Place the exported .har file in the
./har_and_cookies
directory if you are using Docker. Alternatively, you can store it in any preferred location within your current working directory.
Note: Ensure that your .har file is stored securely, as it may contain sensitive information.
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="https://host:port"
- On Windows:
set G4F_PROXY=https://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 |
βοΈ | βοΈ | βοΈ | β | |
chatgpt.com | g4f.Provider.OpenaiChat |
βοΈ | βοΈ | βοΈ | β+βοΈ | |
raycast.com | g4f.Provider.Raycast |
βοΈ | βοΈ | βοΈ | βοΈ | |
beta.theb.ai | g4f.Provider.Theb |
βοΈ | βοΈ | βοΈ | β | |
you.com | g4f.Provider.You |
βοΈ | βοΈ | βοΈ | β |
While we wait for gpt-5, here is a list of new models that are at least better than gpt-3.5-turbo. Some are better than gpt-4. Expect this list to grow.
Website | Provider | parameters | better than |
---|---|---|---|
claude-3-opus | g4f.Provider.You |
?B | gpt-4-0125-preview |
command-r+ | g4f.Provider.HuggingChat |
104B | gpt-4-0314 |
llama-3-70b | g4f.Provider.Llama or DeepInfra |
70B | gpt-4-0314 |
claude-3-sonnet | g4f.Provider.You |
?B | gpt-4-0314 |
reka-core | g4f.Provider.Reka |
21B | gpt-4-vision |
dbrx-instruct | g4f.Provider.DeepInfra |
132B / 36B active | gpt-3.5-turbo |
mixtral-8x22b | g4f.Provider.DeepInfra |
176B / 44b active | gpt-3.5-turbo |
Website | Provider | GPT-3.5 | GPT-4 | Stream | Status | Auth |
---|---|---|---|---|---|---|
chat3.aiyunos.top | g4f.Provider.AItianhuSpace |
βοΈ | β | βοΈ | β | |
chat10.aichatos.xyz | g4f.Provider.Aichatos |
βοΈ | β | βοΈ | β | |
chatforai.store | g4f.Provider.ChatForAi |
βοΈ | β | βοΈ | β | |
chatgpt4online.org | g4f.Provider.Chatgpt4Online |
βοΈ | β | βοΈ | β | |
chatgpt-free.cc | g4f.Provider.ChatgptNext |
βοΈ | β | βοΈ | β | |
chatgptx.de | g4f.Provider.ChatgptX |
βοΈ | β | βοΈ | β | |
f1.cnote.top | g4f.Provider.Cnote |
βοΈ | β | βοΈ | β | |
duckduckgo.com | g4f.Provider.DuckDuckGo |
βοΈ | β | βοΈ | β | |
feedough.com | g4f.Provider.Feedough |
βοΈ | β | βοΈ | β | |
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 | Stream | Status | Auth |
---|---|---|---|---|
openchat.team | g4f.Provider.Aura |
βοΈ | β | |
blackbox.ai | g4f.Provider.Blackbox |
βοΈ | β | |
cohereforai-c4ai-command-r-plus.hf.space | g4f.Provider.Cohere |
βοΈ | β | |
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 |
βοΈ | β | |
developers.sber.ru | g4f.Provider.GigaChat |
βοΈ | βοΈ | |
console.groq.com | g4f.Provider.Groq |
βοΈ | βοΈ | |
huggingface.co | g4f.Provider.HuggingChat |
βοΈ | β | |
huggingface.co | g4f.Provider.HuggingFace |
βοΈ | β | |
llama2.ai | g4f.Provider.Llama |
βοΈ | β | |
meta.ai | g4f.Provider.MetaAI |
βοΈ | β | |
openrouter.ai | g4f.Provider.OpenRouter |
βοΈ | βοΈ | |
labs.perplexity.ai | g4f.Provider.PerplexityLabs |
βοΈ | β | |
pi.ai | g4f.Provider.Pi |
βοΈ | β | |
replicate.com | g4f.Provider.Replicate |
βοΈ | β | |
theb.ai | g4f.Provider.ThebApi |
βοΈ | βοΈ | |
whiterabbitneo.com | g4f.Provider.WhiteRabbitNeo |
βοΈ | βοΈ | |
bard.google.com | g4f.Provider.Bard |
β | βοΈ |
Model | Base Provider | Provider | Website |
---|---|---|---|
gpt-3.5-turbo | OpenAI | 8+ 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 |
Meta-Llama-3-8b-instruct | Meta | 1+ Providers | llama.meta.com |
Meta-Llama-3-70b-instruct | Meta | 2+ Providers | llama.meta.com |
CodeLlama-34b-Instruct-hf | Meta | g4f.Provider.HuggingChat | 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 | 3+ Providers | huggingface.co |
Mistral-7B-Instruct-v0.2 | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
zephyr-orpo-141b-A35b-v0.1 | Huggingface | 2+ Providers | huggingface.co |
dolphin-2.6-mixtral-8x7b | Huggingface | g4f.Provider.DeepInfra | 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 |
lzlv_70b_fp16_hf | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
airoboros-70b | Huggingface | g4f.Provider.DeepInfra | huggingface.co |
openchat_3.5 | Huggingface | 2+ Providers | huggingface.co |
pi | Inflection | g4f.Provider.Pi | inflection.ai |
Label | Provider | Image Model | Vision Model | Website |
---|---|---|---|---|
Microsoft Copilot in Bing | g4f.Provider.Bing |
dall-e-3 | gpt-4-vision | bing.com |
DeepInfra | g4f.Provider.DeepInfra |
stability-ai/sdxl | llava-1.5-7b-hf | deepinfra.com |
Gemini | g4f.Provider.Gemini |
βοΈ | βοΈ | gemini.google.com |
Gemini API | g4f.Provider.GeminiPro |
β | gemini-1.5-pro | ai.google.dev |
Meta AI | g4f.Provider.MetaAI |
βοΈ | β | meta.ai |
OpenAI ChatGPT | g4f.Provider.OpenaiChat |
dall-e-3 | gpt-4-vision | chatgpt.com |
Reka | g4f.Provider.Reka |
β | βοΈ | chat.reka.ai |
Replicate | g4f.Provider.Replicate |
stability-ai/sdxl | llava-v1.6-34b | replicate.com |
You.com | g4f.Provider.You |
dall-e-3 | βοΈ | you.com |
π Projects | β Stars | π Forks | π Issues | π¬ Pull requests |
gpt4free | ||||
gpt4free-ts | ||||
Free AI API's & Potential Providers List | ||||
ChatGPT-Clone | ||||
Ai agent | ||||
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 | ||||
GPT4js |
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 - The
har_file.py
has input from xqdoo00o/ChatGPT-to-API - The
PerplexityLabs.py
has input from nathanrchn/perplexityai - The
Gemini.py
has input from dsdanielpark/Gemini-API - The
MetaAI.py
file contains code from meta-ai-api by @Strvm - The
proofofwork.py
has input from missuo/FreeGPT35
Having input implies that the AI's code generation utilized it as one of many sources.
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. |