From ad0e59f78c28e959fa98239937a8c0a88fd7517f Mon Sep 17 00:00:00 2001 From: dimavrem22 Date: Thu, 13 Aug 2026 07:21:58 +0000 Subject: [PATCH] ci: run live suites with gpt-5.6-sol --- .github/workflows/live-voice.yml | 1 + scripts/live-aut.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/live-voice.yml b/.github/workflows/live-voice.yml index 09a0a41..9beb5ac 100644 --- a/.github/workflows/live-voice.yml +++ b/.github/workflows/live-voice.yml @@ -88,6 +88,7 @@ jobs: INKBOX_VOICEMAIL_DETECTION: "disabled" INKBOX_REALTIME_ENABLED: ${{ matrix.scenario == 'outbound_realtime' && 'true' || 'false' }} INKBOX_REALTIME_API_KEY: ${{ secrets.OPENAI_API_KEY }} + INKBOX_REALTIME_MODEL: gpt-realtime-2 run: bash scripts/live-aut.sh - name: Start the voice driver and wait for its tunnel diff --git a/scripts/live-aut.sh b/scripts/live-aut.sh index ac17e24..65da160 100755 --- a/scripts/live-aut.sh +++ b/scripts/live-aut.sh @@ -88,7 +88,7 @@ else cat > opencode.json <<'EOF' { "$schema": "https://opencode.ai/config.json" } EOF - GATEWAY_MODEL="openai/gpt-5.4-mini" + GATEWAY_MODEL="openai/gpt-5.6-sol" fi SERVE_LOG="$WORKDIR/serve.log" @@ -140,6 +140,7 @@ echo "==> starting the gateway sidecar ($MODE model: $GATEWAY_MODEL)" INKBOX_VOICEMAIL_DETECTION="${INKBOX_VOICEMAIL_DETECTION:-disabled}" \ INKBOX_REALTIME_ENABLED="${INKBOX_REALTIME_ENABLED:-}" \ INKBOX_REALTIME_API_KEY="${INKBOX_REALTIME_API_KEY:-}" \ + INKBOX_REALTIME_MODEL="${INKBOX_REALTIME_MODEL:-}" \ OPENCODE_SERVER_URL="http://127.0.0.1:$SERVE_PORT" \ nohup node "$ROOT/bin/inkbox-opencode.js" run > "$GATEWAY_LOG" 2>&1 & echo $! > "$WORKDIR/gateway.pid")