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

9
status.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# 检查AI对话系统状态
if curl -s http://localhost:19020/api/admin/stats > /dev/null 2>&1; then
echo "✅ AI对话系统运行中 (端口: 19020)"
curl -s http://localhost:19020/api/admin/stats | python3 -m json.tool
else
echo "❌ AI对话系统未运行"
fi