9 lines
290 B
Bash
Executable File
9 lines
290 B
Bash
Executable File
#!/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 |