Files
openclaw/extensions/openai/realtime-quicksilver-delegation-controller.ts
Peter Steinberger fa03d9b913 refactor: consolidate coercion helpers (#121366)
* refactor: consolidate coercion helpers

* fix: remove duplicate coercion imports

* fix: preserve serialized coercion guard

* chore: ratchet coercion helper carve-outs

* fix(test): keep gauntlet subprocess startup lean

* fix: preserve imported session timestamp semantics

* fix: preserve catalog timestamp string semantics

* chore: align plugin SDK surface ratchet

* fix: preserve trajectory and SDK string contracts

* fix(test): preserve QA record assertion semantics

* fix: complete standalone record guard rename

* refactor(cron): use canonical string coercion

* fix(acpx): preserve Pi timestamp parsing

* test(channels): adapt custody test harnesses

* test(telegram): classify media harness as test support

* test(acpx): split timestamp contract coverage

* test(channels): support generated custody contracts

* chore: ban the full coercion helper name set

Extends the declaration guard to all eleven consolidated helper names and
renames the cron schedule-identity readNumber wrapper to readScheduleInteger
so the banned generic name cannot regrow.

* fix(scripts): repair release-validation guard drift and lint cause

Restores the renamed isJsonRecord guard in assertTrustedWorkflowHarness after
main added isRecord call sites in parallel, and attaches the caught YAML error
as the thrown error cause (preserve-caught-error was red on main).

* fix: preserve Claude timestamp string semantics

* fix: preserve persisted timestamp string semantics

* fix: preserve date-first timestamp contracts

* fix(openai): harden delegation failure formatting

* chore: close coercion helper guard gaps

* test(openai): model non-error delegation rejection

* chore: refresh plugin SDK API contract

* fix(tasks): use canonical string field reader

* fix(ai): use canonical provider error field coercion

* fix(browser): migrate native bootstrap coercion

* docs(plugin-sdk): clarify text record export compatibility

* fix(gateway): normalize approval execution identity

* test(outbound): isolate message action poll harness
2026-08-11 00:02:18 -07:00

253 lines
8.5 KiB
TypeScript

import { formatErrorMessage, toErrorObject } from "openclaw/plugin-sdk/error-runtime";
import type { PluginLogger } from "openclaw/plugin-sdk/plugin-entry";
import type { RealtimeVoiceAgentConsultRunner } from "openclaw/plugin-sdk/realtime-voice";
import { rawDataToString } from "openclaw/plugin-sdk/webhook-ingress";
import type { RawData } from "ws";
import {
buildOpenAIQuicksilverDelegationPrompt,
type OpenAIQuicksilverTranscriptEntry,
} from "./realtime-quicksilver-instructions.js";
import type { OpenAIQuicksilverSocket } from "./realtime-quicksilver-sideband.js";
import {
boundOpenAIQuicksilverContextItems,
boundOpenAIQuicksilverDelegationResult,
chunkOpenAIQuicksilverAppendText,
parseOpenAIQuicksilverEvent,
type OpenAIQuicksilverInboundEvent,
} from "./realtime-quicksilver-wire.js";
const WEBSOCKET_OPEN = 1;
const CONSULT_FAILURE_TEXT =
"The agent task failed. Tell the user it did not complete and offer to try again.";
type PendingDelegation = {
id: string;
prompt: string;
};
type OpenAIQuicksilverDelegationControllerOptions = {
getSocket: () => OpenAIQuicksilverSocket | undefined;
isCanceledError?: (error: unknown) => boolean;
logger: Pick<PluginLogger, "debug" | "warn">;
onFatalError: (error: Error) => void;
onSessionStarted?: (expiresAt: number | undefined) => void;
onTranscript?: (role: "user" | "assistant", text: string, done: boolean) => void;
onWireEventType?: (eventType: string) => void;
runAgentConsult: RealtimeVoiceAgentConsultRunner;
signal: AbortSignal;
};
function shortFailureReason(error: unknown): string {
return formatErrorMessage(error).replaceAll(/\s+/g, " ").trim().slice(0, 180) || "unknown error";
}
function readWireEventType(payload: string): string | undefined {
try {
const decoded = JSON.parse(payload) as Record<string, unknown>;
return typeof decoded.type === "string" ? decoded.type : undefined;
} catch {
return undefined;
}
}
/** Owns the provider's single active delegation and its once-consumed transcript context. */
export class OpenAIQuicksilverDelegationController {
private activeDelegationId: string | undefined;
private consultController: AbortController | undefined;
private partialTranscriptRole: "user" | "assistant" | undefined;
private pendingDelegation: PendingDelegation | undefined;
private stopped = false;
private transcript: OpenAIQuicksilverTranscriptEntry[] = [];
constructor(private readonly options: OpenAIQuicksilverDelegationControllerOptions) {}
handleFrame(data: RawData, isBinary: boolean): void {
if (isBinary) {
this.fail(new Error("OpenAI GPT-Live sideband returned an unexpected binary frame"));
return;
}
const payload = rawDataToString(data);
if (this.options.onWireEventType) {
const eventType = readWireEventType(payload);
if (eventType) {
this.options.onWireEventType(eventType);
}
}
const event = parseOpenAIQuicksilverEvent(payload);
if (event) {
this.handleEvent(event);
}
}
handleEvent(event: OpenAIQuicksilverInboundEvent): void {
if (this.stopped || event.kind === "ignored") {
return;
}
if (event.kind === "unknown") {
this.options.logger.debug?.(`OpenAI GPT-Live ignored sideband event: ${event.eventType}`);
return;
}
if (event.kind === "session-started") {
this.options.onSessionStarted?.(event.expiresAt);
return;
}
if (event.kind === "transcript-delta" || event.kind === "transcript-done") {
this.appendTranscript(event);
this.options.onTranscript?.(event.role, event.text, event.kind === "transcript-done");
return;
}
if (event.kind === "error") {
const error = new Error(`OpenAI GPT-Live sideband error: ${event.message}`);
this.options.logger.warn(error.message);
if (event.fatalAuth) {
this.options.onFatalError(error);
}
return;
}
// Both consumers negotiate audio over WebRTC; sideband audio would duplicate it.
if (event.kind === "audio") {
return;
}
this.startDelegation(event.id, event.prompt);
}
sendToActiveDelegation(text: string, channel: "speakable" | "commentary"): void {
const content = text.trim();
if (this.activeDelegationId && content) {
this.sendAppend(this.activeDelegationId, content, channel);
}
}
stop(reason: Error): void {
if (this.stopped) {
return;
}
this.stopped = true;
this.pendingDelegation = undefined;
this.activeDelegationId = undefined;
this.consultController?.abort(reason);
this.consultController = undefined;
}
private appendTranscript(
event: Extract<OpenAIQuicksilverInboundEvent, { kind: "transcript-delta" | "transcript-done" }>,
): void {
const last = this.transcript.at(-1);
if (event.kind === "transcript-delta") {
if (last?.role === event.role && this.partialTranscriptRole === event.role) {
last.text += event.text;
} else {
this.transcript.push({ role: event.role, text: event.text });
}
this.partialTranscriptRole = event.role;
} else {
if (last?.role === event.role && this.partialTranscriptRole === event.role) {
last.text = event.text;
} else {
this.transcript.push({ role: event.role, text: event.text });
}
this.partialTranscriptRole = undefined;
}
this.transcript = boundOpenAIQuicksilverContextItems(this.transcript);
}
private startDelegation(id: string, input: string): void {
if (this.stopped || this.options.signal.aborted || !input.trim()) {
return;
}
// Transcript is a once-delivered delta. Empty delegations must not consume it.
const transcript = this.transcript;
this.transcript = [];
this.partialTranscriptRole = undefined;
const delegation = {
id,
prompt: buildOpenAIQuicksilverDelegationPrompt({ input, transcript }),
};
this.activeDelegationId = id;
if (this.consultController) {
// Frameless bidi has one active handoff: retain only the newest queued request.
this.pendingDelegation = delegation;
this.consultController.abort(new Error("GPT-Live delegation superseded"));
return;
}
this.launchDelegation(delegation);
}
private launchDelegation(delegation: PendingDelegation): void {
if (this.stopped || this.options.signal.aborted) {
return;
}
const controller = new AbortController();
this.consultController = controller;
this.activeDelegationId = delegation.id;
const signal = AbortSignal.any([this.options.signal, controller.signal]);
void this.runDelegation(delegation, signal)
.catch((error: unknown) =>
this.fail(toErrorObject(error, "OpenAI GPT-Live delegation failed")),
)
.finally(() => {
if (this.consultController !== controller) {
return;
}
this.consultController = undefined;
const pending = this.pendingDelegation;
this.pendingDelegation = undefined;
if (pending) {
this.launchDelegation(pending);
} else {
this.activeDelegationId = undefined;
}
});
}
private async runDelegation(delegation: PendingDelegation, signal: AbortSignal): Promise<void> {
let text: string;
try {
const result = await this.options.runAgentConsult({ prompt: delegation.prompt, signal });
if (signal.aborted) {
return;
}
text = boundOpenAIQuicksilverDelegationResult(result.text);
} catch (error) {
// Host steering can reject with an abort marker outside this controller's own signal.
if (signal.aborted || this.options.isCanceledError?.(error)) {
return;
}
this.options.logger.warn(
`OpenAI GPT-Live delegation consult failed: ${shortFailureReason(error)}`,
);
text = CONSULT_FAILURE_TEXT;
}
this.sendAppend(delegation.id, text, "speakable");
}
private sendAppend(
delegationId: string,
text: string,
channel: "speakable" | "commentary",
): void {
const socket = this.options.getSocket();
if (this.stopped || !socket || socket.readyState !== WEBSOCKET_OPEN) {
return;
}
for (const chunk of chunkOpenAIQuicksilverAppendText(text)) {
socket.send(
JSON.stringify({
type: "delegation.context.append",
delegation_item_id: delegationId,
channel,
content: [{ type: "input_text", text: chunk }],
}),
);
}
}
private fail(error: Error): void {
if (this.stopped) {
return;
}
this.options.logger.warn(error.message);
this.options.onFatalError(error);
}
}