WhisperGate MVP: no-reply API + plugin rule gate #1

Merged
hzhang merged 27 commits from feat/whispergate-mvp into main 2026-02-25 22:07:07 +00:00
2 changed files with 19 additions and 0 deletions
Showing only changes of commit f76d952b59 - Show all commits

6
scripts/dev-down.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
cd "$ROOT_DIR"
docker compose down

13
scripts/dev-up.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
cd "$ROOT_DIR"
echo "[whispergate] building/starting no-reply API container"
docker compose up -d --build whispergate-no-reply-api
echo "[whispergate] health check"
curl -sS http://127.0.0.1:8787/health
echo "[whispergate] done"