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
4 changed files with 24 additions and 0 deletions
Showing only changes of commit f4fb495ab2 - Show all commits

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
node_modules/
.env
.DS_Store
*.log

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
whispergate-no-reply-api:
build:
context: ./no-reply-api
container_name: whispergate-no-reply-api
ports:
- "8787:8787"
environment:
- PORT=8787
- NO_REPLY_MODEL=whispergate-no-reply-v1
restart: unless-stopped

View File

@@ -0,0 +1,2 @@
node_modules
npm-debug.log

7
no-reply-api/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
COPY server.mjs ./
EXPOSE 8787
ENV PORT=8787
CMD ["node", "server.mjs"]