H Lohaus 40316d73c2 Update README.md | 9 hours ago | |
---|---|---|
.github | 1 day ago | |
docker | 1 day ago | |
docs | 10 hours ago | |
etc | 1 day ago | |
g4f | 9 hours ago | |
generated_images | 8 months ago | |
har_and_cookies | 9 months ago | |
models | 9 months ago | |
projects | 8 months ago | |
.gitattributes | 1 year ago | |
.gitignore | 1 month ago | |
.gitpod.yml | 1 year ago | |
CODE_OF_CONDUCT.md | 1 year ago | |
CONTRIBUTING.md | 1 month ago | |
LEGAL_NOTICE.md | 3 months ago | |
LICENSE | 1 year ago | |
MANIFEST.in | 9 months ago | |
README.md | 9 hours ago | |
SECURITY.md | 1 year ago | |
docker-compose-slim.yml | 11 hours ago | |
docker-compose.yml | 11 hours ago | |
requirements-min.txt | 2 months ago | |
requirements-slim.txt | 2 months ago | |
requirements.txt | 2 days ago | |
setup.py | 2 days ago |
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
Explore the latest features and updates
Find comprehensive details on our Releases Page.
Stay updated with our Telegram Channel 📨
Join us at telegram.me/g4f_channel.
Get support in our Discord Community 🤝💻
Reach out for help in our Support Group: discord.gg/qXA4Wf4Fsm.
Subscribe to our Discord News Channel 💬🆕️
Stay informed about updates via our News Channel: discord.gg/5E39JUWUFa.
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. 😉
Is a proof-of-concept API package for multi-provider AI requests. It showcases features such as:
Explore the Visit GPT4Free on HuggingFace Space for a hosted version or Duplicate GPT4Free Space it for personal use.
bash
mkdir -p ${PWD}/har_and_cookies ${PWD}/generated_images
sudo chown -R 1200:1201 ${PWD}/har_and_cookies ${PWD}/generated_images
Run the Docker Container: Use the following commands to pull the latest image and start the container:
docker pull hlohaus789/g4f
docker run -p 8080:8080 -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
Running the Slim Docker Image: And use the following commands to run the Slim Docker image. This command also updates the g4f
package at startup and installs any additional dependencies: (x64 and arm64)
mkdir -p ${PWD}/har_and_cookies ${PWD}/generated_images
chown -R 1000:1000 ${PWD}/har_and_cookies ${PWD}/generated_images
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
Access the Client Interface:
(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.
Installation Steps:
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.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.
pip install -U g4f[all]
How do I install only parts or do disable parts? Use partial requirements: /docs/requirements
git clone https://github.com/xtekky/gpt4free.git
cd gpt4free
pip install -r requirements.txt
How do I load the project using git and installing the project requirements? Read this tutorial and follow it step by step: /docs/git
from g4f.client import Client
client = Client()
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello"}],
web_search=False
)
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"
)
print(f"Generated image URL: {response.data[0].url}")
Run the GUI using Python:
from g4f.gui import run_gui
run_gui()
Or, run via CLI:
python -m g4f.cli gui -port 8080 -debug
Learn More About the GUI: 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.
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.
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: Run on Smartphone Guide
🎁 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. |