feat: AI对话系统 v1.0.0 - 网页端和Matrix端实时同步

This commit is contained in:
2026-04-11 11:51:54 +08:00
commit 46216205fe
26 changed files with 2110 additions and 0 deletions

11
stop.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# AI对话系统停止脚本
pkill -f "python3.*ai-chat/main.py" 2>/dev/null
sleep 1
if pgrep -f "python3.*ai-chat/main.py" > /dev/null; then
echo "❌ 进程仍在运行"
else
echo "✅ AI对话系统已停止"
fi