利用 ChatGPT 3.5 网页免登, 实现 Chat2Api 逆向项目合集

介绍

之前体验了在文章 FreeGPT35部署及使用 中体验了 FreeGPT35,并且应用到了一些项目中。这次来总结一下 实现 Chat2Api 项目合集

什么是 “利用 ChatGPT 3.5 网页免登, 实现 Chat2Api 逆向”?

总结来说就是,因为前不久清明之前 ChatGPT 宣布不登录也能使用,于是网上网出现了一些,”利用免登录 ChatGPT Web 提供的无限制免费 GPT-3.5-Turbo API 服务.” 这样我们就能在 LangChain,划词翻译,沉浸式翻译等服务中畅快的使用了~

缺陷

目前只支持 gpt-3.5-turbo 模型,且只有 completions 接口。需要部署在能访问 chatgpt 网页版可以访问的对方。可以参考之前的文章 FreeGPT35部署及使用 里面有 Render 和 阿里云抢占式实例的部署示例。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
import openai

openai.api_key = 'anything'
openai.base_url = "http://localhost:3040/v1/"

completion = openai.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role": "user", "content": "How do I list all files in a directory using Python?"},
],
)

print(completion.choices[0].message.content)

附录

  1. https://github.com/aurora-develop/aurora
  2. https://github.com/aurora-develop/free-gpt3.5-2api
  3. https://github.com/LanQian528/chat2api
  4. https://github.com/aurorax-neo/free-gpt3.5-2api
  5. https://github.com/k0baya/FreeGPT35-Glitch
  6. https://github.com/PawanOsman/ChatGPT
  7. https://github.com/PawanOsman/ChatGPT
  8. https://github.com/xsigoking/chatgpt-free-api
  9. https://github.com/missuo/FreeGPT35
  10. https://github.com/cliouo/FreeGPT35-Vercel