diff --git a/agents/k8s/reminder-service-deployment.yaml b/agents/k8s/reminder-service-deployment.yaml index 14c1775..2157429 100644 --- a/agents/k8s/reminder-service-deployment.yaml +++ b/agents/k8s/reminder-service-deployment.yaml @@ -60,7 +60,7 @@ spec: - name: PERSONAL_NUM value: "+14085505485" - name: GROUP_URL - value: "https://chat.whatsapp.com/0Txfg7iZBbvIuvTbTqqgAX" + value: "https://chat.whatsapp.com/FXO0SCLA8DpJwClNNWdhhx" volumeMounts: - name: app-volume mountPath: /app diff --git a/agents/k8s/trip-service-deployment.yaml b/agents/k8s/trip-service-deployment.yaml index bf9df6c..14ca595 100644 --- a/agents/k8s/trip-service-deployment.yaml +++ b/agents/k8s/trip-service-deployment.yaml @@ -61,7 +61,7 @@ spec: - name: PERSONAL_NUM value: "+14085505485" - name: GROUP_URL - value: "https://chat.whatsapp.com/0Txfg7iZBbvIuvTbTqqgAX" + value: "https://chat.whatsapp.com/FXO0SCLA8DpJwClNNWdhhx" - name: ANTHROPIC_API_KEY valueFrom: secretKeyRef: diff --git a/agents/k8s/weather-cronjob.yaml b/agents/k8s/weather-cronjob.yaml index 56f8bd2..8f4b46b 100644 --- a/agents/k8s/weather-cronjob.yaml +++ b/agents/k8s/weather-cronjob.yaml @@ -28,7 +28,7 @@ spec: const ZIP = '16046'; const GATEWAY = 'http://whatsapp-gateway.ai-agents.svc.cluster.local:5001/send-message'; - const GROUP = 'https://chat.whatsapp.com/0Txfg7iZBbvIuvTbTqqgAX'; + const GROUP = 'https://chat.whatsapp.com/FXO0SCLA8DpJwClNNWdhhx'; const PERSONAL = '+14085505485'; function weatherEmoji(desc) { diff --git a/interface/hq-dashboard/app/api/send-whatsapp/route.js b/interface/hq-dashboard/app/api/send-whatsapp/route.js index 6d73015..0f49a1d 100644 --- a/interface/hq-dashboard/app/api/send-whatsapp/route.js +++ b/interface/hq-dashboard/app/api/send-whatsapp/route.js @@ -3,7 +3,7 @@ import { NextResponse } from 'next/server'; const GATEWAY = process.env.WHATSAPP_GATEWAY_URL || 'http://whatsapp-gateway.ai-agents.svc.cluster.local:5001/send-message'; const DEFAULT_GROUP = process.env.WHATSAPP_GROUP || - 'https://chat.whatsapp.com/0Txfg7iZBbvIuvTbTqqgAX'; + 'https://chat.whatsapp.com/FXO0SCLA8DpJwClNNWdhhx'; const PERSONAL_NUMBER = process.env.WHATSAPP_PERSONAL || '+14085505485'; async function sendToRecipient(to, message) { diff --git a/reminder-service/server.js b/reminder-service/server.js index 3bbca9e..cfe9774 100644 --- a/reminder-service/server.js +++ b/reminder-service/server.js @@ -10,7 +10,7 @@ app.use(express.json()); const DATA_FILE = process.env.DATA_FILE || '/data/reminders.json'; const GATEWAY = process.env.GATEWAY_URL || 'http://whatsapp-gateway.ai-agents.svc.cluster.local:5001/send-message'; const PERSONAL = process.env.PERSONAL_NUM || '+14085505485'; -const GROUP = process.env.GROUP_URL || 'https://chat.whatsapp.com/0Txfg7iZBbvIuvTbTqqgAX'; +const GROUP = process.env.GROUP_URL || 'https://chat.whatsapp.com/FXO0SCLA8DpJwClNNWdhhx'; const PORT = parseInt(process.env.PORT) || 6001; // ── Persistence ────────────────────────────────────────────────────────────── diff --git a/trip-service/server.js b/trip-service/server.js index c6943fc..1cff2b6 100644 --- a/trip-service/server.js +++ b/trip-service/server.js @@ -12,7 +12,7 @@ const DATA_FILE = process.env.DATA_FILE || '/data/trips.json'; const GATEWAY_URL = process.env.GATEWAY_URL || 'http://whatsapp-gateway.ai-agents.svc.cluster.local:5001/send-message'; const OLLAMA_URL = process.env.OLLAMA_URL || 'http://ollama.ai-agents.svc.cluster.local:11434/api/generate'; const PERSONAL_NUM = process.env.PERSONAL_NUM || '+14085505485'; -const GROUP_URL = process.env.GROUP_URL || 'https://chat.whatsapp.com/0Txfg7iZBbvIuvTbTqqgAX'; +const GROUP_URL = process.env.GROUP_URL || 'https://chat.whatsapp.com/FXO0SCLA8DpJwClNNWdhhx'; const PORT = parseInt(process.env.PORT) || 6002; // ── Persistence ──────────────────────────────────────────────────────────────