UPdate:新搭建了一个本站的,欢迎适用。搭建教程稍后发布。网站地址:https://chatgpt.lcc8.com/
update2:通过宝塔面板部署ChatGPT代理,链接:点我直达本站
update3:添加几个仓库,仓库里面搜集了一些可用的ChatGPT 20230616
仓库1:https://github.com/LiLittleCat/awesome-free-chatgpt
仓库2:https://github.com/lzwme/chatgpt-sites
仓库3:https://github.com/xxxily/hello-ai/blob/main/home/FreeChatGPTSiteList.md
update4:
update:20230709
推荐使用 chat.zhile.io 免翻墙使用ChatGPT,可使用自己的账号,或者使用作者分享的账号。
共享的ChatGPT账号
https://chat-shared2.zhile.io/shared.html
搭建的话,可以参考作者的GitHub
https://github.com/pengzhile/pandora
组合搭建 参考
https://github.com/pengzhile/pandora/blob/master/doc/wiki.md
🗨️ ChatGPT 替代方案 PS:目前个人在用的是POE,推荐
👍 Poe - Fast, Helpful AI Chat - Poe lets you ask questions, get instant answers, and have back-and-forth conversations with AI. Gives access to GPT-4, gpt-3.5-turbo, Claude from Anthropic, and a variety of other bots.
HuggingChat - The first open source alternative to ChatGPT. 💪
Chat with Open Large Language Models from https://github.com/lm-sys/FastChat - An open platform for training, serving, and evaluating large language models. Release repo for Vicuna and FastChat-T5.
Bing Chat
Google Bard
Anthropic Claude - A next-generation AI assistant for your tasks, no matter the scale.
百度 文心一言
Open Assistant - 面向所有人的对话式 AI, 这是一个由 LAION 和全球贡献者共同开发的 GPT LLM 项目.
阿里 通义千问
讯飞星火认知大模型 - 讯飞星火认知大模型,是由科大讯飞推出的大语言模型,能够通过自然语言理解,完成智能对答。
Pi, your personal AI - Hi, I'm Pi. I'm your personal AI, designed to be supportive, smart, and there for you anytime. Ask me for advice, for answers, or let's talk about whatever's on your mind.
TruthGPT Chat - Hey, I’m TruthGPT! The beacon of truth in a world of unknown. We can either have a conversation or you may ask me complex questions!
目前可用的ChatGPT网站
https://6.00chatgpt.com/ update20230507
https://chunpiao.xin/
https://www.chunpiao.xin
hostloc hidgboz 搭建的 额度2k update 20230407
https://www.chat2ai.cn/ 新增 20230307
https://ai.exacg.cc/ 新增20230213
https://chatgpt.lcc8.com/
https://chatgpt.sbaliyun.com/
https://gpt.chatapi.art/
反向代理ChatGPT的代码
server
{
server_name youdomain.com;
location ^~ /
{
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
proxy_pass https://chat.openai.com;
proxy_set_header Host chat.openai.com;
proxy_set_header Accept-Encoding '';
sub_filter 'chat.openai.com' 'youdomain.com';
sub_filter 'YourEmail' '';
sub_filter 'YourUesrId' '';
sub_filter 'https://33f79e998f93410882ecec1e57143840@o33249.ingest.sentry.io/4504238875803648' '';
#sub_filter 'Free Research Preview: ChatGPT is optimized for dialogue. Our goal is to make AI systems more natural to interact with, and your feedback will help us improve our systems and make them safer.' 'Nginx yyds';
sub_filter_once off;
sub_filter_types *;
proxy_set_header Cookie "YourCookie";
proxy_hide_header set-cookie;
}
}