From 3b9282d3cdaf4ca1c0edba9072666e3c30590a99 Mon Sep 17 00:00:00 2001 From: Brian Love Date: Mon, 18 May 2026 21:41:26 -0700 Subject: [PATCH] Fix shared deployment smoke assistant ids --- apps/cockpit/src/lib/verify-shared-deployment.spec.ts | 2 +- scripts/verify-shared-deployment.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/cockpit/src/lib/verify-shared-deployment.spec.ts b/apps/cockpit/src/lib/verify-shared-deployment.spec.ts index 131b458a..5e52f8cd 100644 --- a/apps/cockpit/src/lib/verify-shared-deployment.spec.ts +++ b/apps/cockpit/src/lib/verify-shared-deployment.spec.ts @@ -7,7 +7,7 @@ import { describe('verify-shared-deployment', () => { it('allows the two-pass planning graph more time than single-response smoke assistants', () => { - expect(getSmokeAssistantStreamTimeoutMs('planning')).toBe(90000); + expect(getSmokeAssistantStreamTimeoutMs('da-planning')).toBe(90000); expect(getSmokeAssistantStreamTimeoutMs('streaming')).toBe( DEFAULT_SMOKE_ASSISTANT_STREAM_TIMEOUT_MS, ); diff --git a/scripts/verify-shared-deployment.ts b/scripts/verify-shared-deployment.ts index 5ed7130e..6f8e110c 100644 --- a/scripts/verify-shared-deployment.ts +++ b/scripts/verify-shared-deployment.ts @@ -22,8 +22,8 @@ const REQUIRED_URL_KEYS = [ const SMOKE_ASSISTANT_IDS = [ 'streaming', 'deployment-runtime', - 'planning', - 'filesystem', + 'da-planning', + 'da-filesystem', 'c-generative-ui', 'c-a2ui', 'chat', @@ -37,7 +37,7 @@ export const DEFAULT_SMOKE_ASSISTANT_STREAM_TIMEOUT_MS = 30000; const SMOKE_ASSISTANT_STREAM_TIMEOUT_MS: Partial> = { // The planning graph intentionally performs two model calls: one to create // structured plan state, then one to execute the plan and answer. - planning: 90000, + 'da-planning': 90000, // UI graph assistants can include extra model/tool work before the first AI // stream event, and CI has observed them occasionally crossing 30s. 'c-generative-ui': 90000,