Skip to content
forked from xtekky/gpt4free

The official gpt4free repository | various collection of powerful language models

License

Notifications You must be signed in to change notification settings

MissChina/gpt4free

 
 

Repository files navigation

xtekky%2Fgpt4free | Trendshift


作者 @xtekky

[!重要提示] 使用本存储库或任何相关代码,即表示您同意法律声明。本仓库的作者不对使用承担责任,也不认可该仓库,也不对任何副本、分支、其他用户重新上传或任何其他与GPT4Free相关的内容负责。这是作者的唯一账号和存储库。为防止冒充或不负责任的行为,请遵守本存储库使用的GNU GPL许可证。

[!警告] "gpt4free" 是一个概念验证(PoC),展示了具有多提供商请求功能的API包的开发,包括超时、负载均衡和流量控制等功能。

[!注意] 最新版本:
PyPI version Docker version
统计数据:
Downloads Downloads

pip install -U g4f[all]
docker pull hlohaus789/g4f

🆕 最新动态

1000032415

🔻 网站下线

如果您的站点在本仓库中且您想将其下线,请发送电子邮件至[email protected]并提供证明其属于您的证据,我们将尽快移除。为防止重新出现,请保护您的API。😉

🚀 GPT4Free on HuggingFace

HuggingSpace Is a proof-of-concept API package for multi-provider AI requests. It showcases features such as:

  • Load balancing and request flow control.
  • Seamless integration with multiple AI providers.
  • Comprehensive text and image generation support.

Explore the Visit GPT4Free on HuggingFace Space for a hosted version or Duplicate GPT4Free Space it for personal use.


📚 目录


⚡️ 开始使用

🛠 安装

🐳 使用Docker

  1. 安装Docker: 下载并安装Docker
  2. 设置目录: 在运行容器之前,请确保必要的数据目录存在或可以创建。例如,您可以通过运行以下命令创建并设置这些目录的所有权:
mkdir -p ${PWD}/har_and_cookies ${PWD}/generated_images
sudo chown -R 1200:1201 ${PWD}/har_and_cookies ${PWD}/generated_images
  1. 运行Docker容器: 使用以下命令拉取最新镜像并启动容器(仅x64):
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
  1. 运行Slim Docker镜像: 使用以下命令运行Slim Docker镜像。此命令还会在启动时更新g4f包并安装任何其他依赖项:(x64和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
  1. 访问客户端界面:

  2. (可选)提供商登录: 如果需要,您可以在此处访问容器的桌面:http://localhost:7900/?autoconnect=1&resize=scale&password=secret 以进行提供商登录。


🪟 Windows指南(.exe)

为了确保我们的应用程序能够顺利运行,请按照以下说明进行操作。这些步骤旨在指导您在Windows操作系统上完成安装过程。

安装步骤:

  1. 下载应用程序: 访问我们的发布页面并下载最新版本的应用程序,名为g4f.exe.zip
  2. 文件放置: 下载后,在您的下载文件夹中找到.zip文件。将其解压缩到您系统上选择的目录,然后执行g4f.exe文件以运行应用程序。
  3. 打开GUI: 该应用程序启动一个带有GUI的Web服务器。打开您喜欢的浏览器并导航到http://localhost:8080/chat/以访问应用程序界面。
  4. 防火墙配置(热修复): 安装后,可能需要调整Windows防火墙设置以允许应用程序正常运行。为此,请访问Windows防火墙设置并允许应用程序。

通过遵循这些步骤,您应该能够成功在Windows系统上安装和运行应用程序。如果在安装过程中遇到任何问题,请参阅我们的问题跟踪器或尝试通过Discord获取帮助。


🐍 Python安装

先决条件:

  1. python.org安装Python 3.10+。
  2. 为某些提供商安装Google Chrome。

使用PyPI安装:

pip install -U g4f[all]

如何仅安装部分或禁用部分?使用部分需求: /docs/requirements

从源代码安装:

git clone https://github.com/xtekky/gpt4free.git
cd gpt4free
pip install -r requirements.txt

如何使用git加载项目并安装项目需求?阅读本教程并按步骤操作: /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}")

Image with cat

🌐 Web界面

使用Python运行GUI:

from g4f.gui import run_gui

run_gui()

通过CLI运行(启动Flask服务器):

python -m g4f.cli gui --port 8080 --debug

或者,启动FastAPI服务器:

python -m g4f --port 8080 --debug

了解更多关于GUI的信息: 有关如何设置、配置和使用GPT4Free GUI的详细说明,请参阅GUI文档。本指南包括提供商选择、管理对话、使用高级功能(如语音识别)等的详细步骤。


🤖 接口API

接口API通过G4F实现与OpenAI服务的无缝集成,使您能够部署高效的AI解决方案。

此API设计为简便实施,并增强与其他OpenAI集成的兼容性。


📱 在智能手机上运行

在智能手机上运行Web UI,方便随时随地访问。查看专门的指南,了解如何设置和使用手机上的GUI:在智能手机上运行指南


📘 Python API完整文档


🔗 Powered by gpt4free

🎁 Projects ⭐ Stars 📚 Forks 🛎 Issues 📬 Pull requests
gpt4free Stars Forks Issues Pull Requests
gpt4free-ts Stars Forks Issues Pull Requests
Free AI API's & Potential Providers List Stars Forks Issues Pull Requests
ChatGPT-Clone Stars Forks Issues Pull Requests
Ai agent Stars Forks Issues Pull Requests
ChatGpt Discord Bot Stars Forks Issues Pull Requests
chatGPT-discord-bot Stars Forks Issues Pull Requests
Nyx-Bot (Discord) Stars Forks Issues Pull Requests
LangChain gpt4free Stars Forks Issues Pull Requests
ChatGpt Telegram Bot Stars Forks Issues Pull Requests
ChatGpt Line Bot Stars Forks Issues Pull Requests
Action Translate Readme Stars Forks Issues Pull Requests
Langchain Document GPT Stars Forks Issues Pull Requests
python-tgpt Stars Forks Issues Pull Requests
GPT4js Stars Forks Issues Pull Requests
VividNode (pyqt-openai) Stars Forks Issues Pull Requests

🤝 Contribute

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.

Guide: 如何创建新的提供商?
Guide: AI如何帮助我编写代码?

Contributors

A list of all contributors is available here

Having input implies that the AI's code generation utilized it as one of many sources.

©️ Copyright

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/>.

⭐ Star History

Star History Chart

📄 License


This project is licensed under GNU_GPL_v3.0.

(🔼 Back to top)

About

The official gpt4free repository | various collection of powerful language models

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 84.0%
  • JavaScript 9.8%
  • HTML 3.8%
  • CSS 2.2%
  • Other 0.2%