Multi-provider AI chat with RAG pipeline for Z.ai portal. Includes SKILL.md, deploy and health-check scripts. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
13 lines
334 B
Bash
Executable File
13 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
VPS="uroma2@95.216.124.247"
|
|
echo "=== Service Status ==="
|
|
ssh "$VPS" "sudo systemctl status wiki-vector-chat --no-pager -l" 2>&1 | head -15
|
|
echo ""
|
|
echo "=== Health ==="
|
|
ssh "$VPS" "curl -s http://127.0.0.1:8770/health"
|
|
echo ""
|
|
echo ""
|
|
echo "=== Providers ==="
|
|
ssh "$VPS" "curl -s http://127.0.0.1:8770/providers"
|
|
echo ""
|