kqlio67 bb9132bcb4 Updating provider documentation and small fixes in providers (#2469) | 2 дней назад | |
---|---|---|
.github | недель назад: 2 | |
docker | 1 неделя назад | |
docs | 2 дней назад | |
etc | 3 дней назад | |
g4f | 2 дней назад | |
generated_images | 6 месяцев назад | |
har_and_cookies | 7 месяцев назад | |
models | 8 месяцев назад | |
projects | 6 месяцев назад | |
.gitattributes | 1 год назад | |
.gitignore | 2 дней назад | |
.gitpod.yml | 1 год назад | |
CODE_OF_CONDUCT.md | 1 год назад | |
CONTRIBUTING.md | 1 неделя назад | |
LEGAL_NOTICE.md | 1 месяц назад | |
LICENSE | 1 год назад | |
MANIFEST.in | 7 месяцев назад | |
README.md | 4 дней назад | |
SECURITY.md | 1 год назад | |
docker-compose-slim.yml | 1 неделя назад | |
docker-compose.yml | 2 месяцев назад | |
requirements-min.txt | недель назад: 3 | |
requirements-slim.txt | недель назад: 2 | |
requirements.txt | недель назад: 2 | |
setup.py | 4 дней назад |
Written by @xtekky
[!IMPORTANT] 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[all]
docker pull hlohaus789/g4f
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. 😉
Take a look at our GUI on the mobile device. We connect to ChatGPT and generate an image.
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
To run the slim docker image. Use this command:
docker run \
-p 1337:1337 \
-v ${PWD}/har_and_cookies:/app/har_and_cookies \
-v ${PWD}/generated_images:/app/generated_images \
hlohaus789/g4f:latest-slim \
rm -r -f /app/g4f/ \
&& pip install -U g4f[slim] \
&& python -m g4f --debug
It also updates the g4f
package at startup and installs any new required dependencies.
Access the Client:
(Optional) Provider Login: If required, you can access the container's desktop here: http://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.
g4f.exe.zip
..zip
file in your Downloads folder. Unpack it to a directory of your choice on your system, then execute the g4f.exe
file to run the app.http://localhost:8080/chat/
to access the application interface.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.
For detailed instructions on how to set up, configure, and use the GPT4Free GUI, refer to the GUI Documentation:
This guide includes step-by-step details on provider selection, managing conversations, using advanced features like speech recognition, and more.
Run the Web UI on your smartphone for easy access on the go. Check out the dedicated guide to learn how to set up and use the GUI on your mobile device:
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-4o-mini",
messages=[{"role": "user", "content": "Hello"}],
# Add any other necessary parameters
)
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="flux",
prompt="a white siamese cat",
response_format="url"
# Add any other necessary parameters
)
image_url = response.data[0].url
print(f"Generated image URL: {image_url}")
New:
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
The Interference API enables seamless integration with OpenAI's services through G4F, allowing you to deploy efficient AI solutions.
http://localhost:1337/v1
http://localhost:1337/docs
This API is designed for straightforward implementation and enhanced compatibility with other OpenAI integrations.
Refer to the G4F Authentication Setup Guide for detailed instructions on setting up authentication.
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 .json
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:
./har_and_cookies
directory if you are using Docker. Alternatively, if you are using Python from a terminal, you can store it in a ./har_and_cookies
directory 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="http://host:port"
- On Windows:
set G4F_PROXY=http://host:port
🎁 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 | ||||
VividNode (pyqt-openai) |
This project is licensed under GNU_GPL_v3.0. |