Files
simstudioai--sim/apps/sim/lib/copilot/persistence/tool-confirm/index.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

179 lines
5.7 KiB
TypeScript

import { createLogger } from '@sim/logger'
import { toError } from '@sim/utils/errors'
import {
ASYNC_TOOL_STATUS,
type AsyncCompletionEnvelope,
type AsyncConfirmationState,
isAsyncEphemeralConfirmationStatus,
} from '@/lib/copilot/async-runs/lifecycle'
import { getAsyncToolCalls } from '@/lib/copilot/async-runs/repository'
import { MothershipStreamV1ToolOutcome } from '@/lib/copilot/generated/mothership-stream-v1'
import { getRedisClient } from '@/lib/core/config/redis'
import { createPubSubChannel, type PubSubChannel } from '@/lib/events/pubsub'
const logger = createLogger('CopilotOrchestratorPersistence')
const TOOL_CONFIRMATION_TTL_SECONDS = 60 * 10
const toolConfirmationKey = (toolCallId: string) => `copilot:tool-confirmation:${toolCallId}`
type ToolConfirmGlobal = typeof globalThis & {
_toolConfirmationChannel?: PubSubChannel<AsyncCompletionEnvelope>
}
const _g = globalThis as ToolConfirmGlobal
if (!_g._toolConfirmationChannel) {
_g._toolConfirmationChannel = createPubSubChannel<AsyncCompletionEnvelope>({
channel: 'copilot:tool-confirmation',
label: 'CopilotToolConfirmation',
})
}
const toolConfirmationChannel = _g._toolConfirmationChannel
/**
* Get a tool call confirmation state from the durable async tool row.
*
* The durable row reconstructs only the live execution lifecycle plus the
* `background` detach signal.
*/
export async function getToolConfirmation(
toolCallId: string
): Promise<AsyncConfirmationState | null> {
const [row] = await getAsyncToolCalls([toolCallId]).catch((err) => {
logger.warn('Failed to fetch async tool calls', {
toolCallId,
error: toError(err).message,
})
return []
})
if (!row) return null
if (row.status === ASYNC_TOOL_STATUS.delivered) {
logger.warn('Delivered async tool rows are outside request confirmation flow', {
toolCallId,
})
return null
}
return {
status:
row.status === ASYNC_TOOL_STATUS.completed
? MothershipStreamV1ToolOutcome.success
: row.status === ASYNC_TOOL_STATUS.failed
? MothershipStreamV1ToolOutcome.error
: row.status === ASYNC_TOOL_STATUS.cancelled
? MothershipStreamV1ToolOutcome.cancelled
: row.status,
message: row.error || undefined,
...(row.result !== undefined ? { data: row.result } : {}),
timestamp: row.updatedAt?.toISOString?.(),
}
}
export function publishToolConfirmation(event: AsyncCompletionEnvelope): void {
logger.info('Publishing tool confirmation event', {
toolCallId: event.toolCallId,
status: event.status,
})
const redis = getRedisClient()
if (redis) {
void redis
.set(
toolConfirmationKey(event.toolCallId),
JSON.stringify(event),
'EX',
TOOL_CONFIRMATION_TTL_SECONDS
)
.then(() => {
logger.info('Persisted tool confirmation in Redis', {
toolCallId: event.toolCallId,
status: event.status,
redisKey: toolConfirmationKey(event.toolCallId),
})
})
.catch((error) => {
logger.warn('Failed to persist tool confirmation in Redis', {
toolCallId: event.toolCallId,
error: toError(error).message,
})
})
} else {
logger.warn('Redis unavailable while publishing tool confirmation', {
toolCallId: event.toolCallId,
status: event.status,
})
}
toolConfirmationChannel.publish(event)
}
/**
* Wait for an async tool confirmation update.
*
* `background` still arrives as a request-local detach signal, so it is checked
* from pubsub before falling back to the durable async tool row.
*/
export async function waitForToolConfirmation(
toolCallId: string,
timeoutMs: number,
abortSignal?: AbortSignal,
options: {
acceptStatus?: (status: AsyncConfirmationState['status']) => boolean
} = {}
): Promise<AsyncConfirmationState | null> {
const acceptStatus = options.acceptStatus ?? (() => true)
return new Promise((resolve) => {
let settled = false
let timeoutId: ReturnType<typeof setTimeout> | null = null
let unsubscribe: (() => void) | null = null
const cleanup = () => {
if (timeoutId) clearTimeout(timeoutId)
if (unsubscribe) unsubscribe()
abortSignal?.removeEventListener('abort', onAbort)
}
const settle = (value: AsyncConfirmationState | null) => {
if (settled) return
settled = true
cleanup()
resolve(value)
}
const onAbort = () => settle(null)
unsubscribe = toolConfirmationChannel.subscribe((event) => {
if (event.toolCallId !== toolCallId) return
if (isAsyncEphemeralConfirmationStatus(event.status) && acceptStatus(event.status)) {
settle({
status: event.status,
...(event.message !== undefined ? { message: event.message } : {}),
...(event.data !== undefined ? { data: event.data } : {}),
...(event.timestamp !== undefined ? { timestamp: event.timestamp } : {}),
})
return
}
void getToolConfirmation(toolCallId).then((latest) => {
if (!latest || !acceptStatus(latest.status)) return
logger.info('Resolved tool confirmation from pubsub', {
toolCallId,
status: latest.status,
})
settle(latest)
})
})
timeoutId = setTimeout(() => settle(null), timeoutMs)
if (abortSignal?.aborted) {
settle(null)
return
}
abortSignal?.addEventListener('abort', onAbort, { once: true })
void getToolConfirmation(toolCallId).then((latest) => {
if (latest && acceptStatus(latest.status)) {
logger.info('Resolved tool confirmation after subscribe', {
toolCallId,
status: latest.status,
})
settle(latest)
}
})
})
}