type
status
date
slug
summary
tags
category
icon
password
🎉介绍一款AI助手——ChatGPT-Wechat-Bot!
📱 多端部署:随时随地畅享ChatGPT-Wechat-Bot的服务!🌟🗣️ 基础对话:让ChatGPT-Wechat-Bot成为你的聪明小助手!💬🎙️ 语音识别:ChatGPT-Wechat-Bot听得懂你的声音!🎤🌄 图片生成:ChatGPT-Wechat-Bot也是一位出色的艺术家!🎨💡 丰富插件:ChatGPT-Wechat-Bot随心而变,满足你的个性需求!🔌🔧 Tool工具:ChatGPT-Wechat-Bot帮你搞定一切!🛠️1.CGPT-Wechat-Bot Result2. VPS安装运行2.1 clone and install2.2 reset configuration2.3 Run如何杀死并重置
📱 多端部署:随时随地畅享ChatGPT-Wechat-Bot的服务!🌟
ChatGPT-Wechat-Bot的多端部署简直让我瞠目结舌!不管是在个人微信、微信公众号还是企业微信应用,只要有他的存在,你就能尽情享受他带来的智慧!和朋友们聊天时,突然ChatGPT-Wechat-Bot插入进来,给出超乎想象的回应,简直是与AI大咖亲密互动的奇妙时刻!🤖
🗣️ 基础对话:让ChatGPT-Wechat-Bot成为你的聪明小助手!💬
ChatGPT-Wechat-Bot在私聊和群聊中的消息智能回复,真是神奇又好玩!他还支持多轮会话上下文记忆,意思是他会牢牢记得之前的话题,这可不是普通的聊天机器人能做到的!而且他支持多种顶尖模型,包括GPT-3、GPT-3.5和GPT-4,无论是写代码、改论文还是讲故事,样样在行!🤯
🎙️ 语音识别:ChatGPT-Wechat-Bot听得懂你的声音!🎤
没错,现在ChatGPT-Wechat-Bot可以识别语音消息,而且他可以通过文字或语音进行回复!支持的语音模型更是多种多样,包括azure、baidu、google、openai等等,你可以根据自己的喜好来定制!和ChatGPT-Wechat-Bot用声音交流,真是带来全新的聊天体验!🗣️
🌄 图片生成:ChatGPT-Wechat-Bot也是一位出色的艺术家!🎨
这个功能真是让我惊喜不已!ChatGPT-Wechat-Bot不仅能生成图片,还能实现图生图,比如照片修复!是不是觉得有点像魔法?和ChatGPT-Wechat-Bot一起创作,让我们变成了AI艺术家的掌中宝!这样的体验,绝对让你爱不释手!🖌️
💡 丰富插件:ChatGPT-Wechat-Bot随心而变,满足你的个性需求!🔌
这可是我最喜欢的一点!ChatGPT-Wechat-Bot支持个性化插件扩展,你可以根据自己的需求,自定义插件,实现多角色切换、文字冒险、敏感词过滤、聊天记录总结等等功能!让ChatGPT-Wechat-Bot成为你专属的智能小助手,简直是太酷了!😎
🔧 Tool工具:ChatGPT-Wechat-Bot帮你搞定一切!🛠️
ChatGPT-Wechat-Bot还可以与操作系统和互联网交互,支持最新信息搜索、数学计算、天气和资讯查询、网页总结等等,他简直就是我们在数字世界的全能好帮手!用ChatGPT-Wechat-Bot的Tool工具,解决问题简直so easy!💪
1.CGPT-Wechat-Bot Result
- 查询所在地天气状况

- 查询最新资讯

- 使用Bing_Search

GPT3.5-wechat-bot 功能:实时联网 + wechat
2. VPS安装运行
2.1 clone and install
It's generally better to use a virtual environment (
venv
or conda
) to isolate your python environment and avoid conflicts with system packages.To create and use a virtual environment, you can do something like:
if some error happened, install the error.
Once you're done, you can deactivate the virtual environment using
deactivate
.If you need to use this environment again, just activate it using the
source
command.2.2 reset configuration
cp config-template.json config.json
nano config.json
显示app后台运行程序
ps -ef | grep app.py | grep -v grep
#how to kill all
pkill -f app.py
#how to check version and apps
python -m pip -V
python -m pip show openai
2.3 Run
Gary #installp https://github.com/goldfishh/chatgpt-tool-hub.git
[INFO]
安装插件成功,请使用 #scanp 命令扫描插件或重启程序,开启前请检查插件是否需要配置
LLM-OS use gpt-too-hub
如何杀死并重置
here is script
Explanation for this script
The script you provided is a Bash script that is designed to find and kill the running
chatgpt-on-wechat
process (which is your app.py
). It's using ps ax
, grep
, and awk
to find the process ID (PID) of your running app.Here's what the script does, step by step:
- It navigates to the parent directory of the script file.
- It sets a variable
BASE_DIR
to the current directory (pwd
prints the current directory).
- It runs
ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'
to find the PID of your running application.
- It checks if the PID is empty. If it is, it prints "No chatgpt-on-wechat running." and exits with status
1
.
- If it's not empty (meaning the process is running), it prints the PID of the running application.
- Then, it sends a
kill
command to the PID of the running application.
- Finally, it prints that it sent a shutdown request to your app.
To use this script:
- Save it in a file. Let's call it
stop_chatgpt.sh
.
- Give it execute permissions:
- Run the script:
This script should stop your
chatgpt-on-wechat
application. After that, you can restart the application as described before.Input directly
- 作者:Mr.Gary
- 链接:[http://www.garyhou.vercel.app/](http://www.garyhou.vercel.app)/article/tools-1
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。