-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.ts
More file actions
300 lines (266 loc) · 9.25 KB
/
Copy pathreview.ts
File metadata and controls
300 lines (266 loc) · 9.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
import {
buildGuardianPromptParts,
buildGuardianUserContent,
buildQuestionPromptParts,
buildQuestionUserContent,
type GuardianAction,
type GuardianAssessment,
type GuardianTranscriptEntry,
parseGuardianAssessment,
parseQuestionDecision,
} from "./prompt";
import type { ContentPart, MessageInfo, ModelRef, QuestionAskedRequest, SessionId } from "./types";
import { textFromParts } from "./utils";
interface PromptTextPart {
type: "text";
text: string;
}
type AssistantPart = ContentPart;
type AssistantInfo = MessageInfo;
export interface GuardianReviewOptions {
guardianModel?: ModelRef;
timeoutMs: number;
maxAttempts: number;
baseBackoffMs: number;
}
export interface GuardianReviewerDeps {
createSession?: (parentID: string) => Promise<SessionId>;
prompt: (sessionID: string, body: PromptBody) => Promise<AssistantMessageWithParts>;
abortSession?: (sessionID: string) => Promise<void>;
}
export interface GuardianReviewRunOptions {
sessionID?: string;
}
export interface PromptBody {
system?: string;
parts: PromptTextPart[];
model?: ModelRef;
noReply?: boolean;
}
export interface AssistantMessageWithParts {
info: AssistantInfo;
parts: AssistantPart[];
}
export type GuardianDecision = GuardianAssessment;
export type GuardianReviewErrorKind =
| "session_create_failed"
| "prompt_failed"
| "no_response"
| "parse_failed"
| "timeout"
| "cancelled";
export class GuardianReviewError extends Error {
kind: GuardianReviewErrorKind;
constructor(kind: GuardianReviewErrorKind, message: string) {
super(message);
this.kind = kind;
this.name = "GuardianReviewError";
}
}
const sleep = (ms: number) => new Promise<void>((resolve) => setTimeout(resolve, ms));
function backoff(attempt: number, base: number): number {
return base * 2 ** Math.max(0, attempt - 1);
}
function isRetryableErrorKind(kind: GuardianReviewErrorKind): boolean {
return kind === "prompt_failed" || kind === "parse_failed" || kind === "no_response";
}
export async function runGuardianReview(
action: GuardianAction,
transcript: GuardianTranscriptEntry[],
options: GuardianReviewOptions,
deps: GuardianReviewerDeps,
signal?: AbortSignal,
runOptions?: GuardianReviewRunOptions,
): Promise<GuardianDecision> {
const userContent = buildGuardianUserContent(action, transcript);
const parts = buildGuardianPromptParts(action, transcript);
const systemPrompt = parts.system;
const deadline = Date.now() + options.timeoutMs;
let sessionID: string | undefined = runOptions?.sessionID;
let lastError: GuardianReviewError | undefined;
for (let attempt = 1; attempt <= options.maxAttempts; attempt++) {
if (signal?.aborted) {
throw new GuardianReviewError("cancelled", "guardian review cancelled");
}
const remaining = deadline - Date.now();
if (remaining <= 0) {
throw new GuardianReviewError(
"timeout",
lastError
? `guardian review timed out after retries: ${lastError.message}`
: `guardian review timed out after ${options.timeoutMs}ms`,
);
}
try {
if (!sessionID) {
if (!deps.createSession) {
throw new GuardianReviewError(
"session_create_failed",
"createSession dep is required when no sessionID is provided",
);
}
try {
const created = await deps.createSession(action.sessionID);
sessionID = created.id;
} catch (err) {
throw new GuardianReviewError(
"session_create_failed",
`failed to create guardian session: ${(err as Error).message}`,
);
}
}
const timeoutPromise = new Promise<never>((_, reject) => {
const t = setTimeout(() => {
reject(
new GuardianReviewError("timeout", `guardian review exceeded ${remaining}ms budget on attempt ${attempt}`),
);
}, remaining);
if (signal) {
signal.addEventListener("abort", () => {
clearTimeout(t);
reject(new GuardianReviewError("cancelled", "guardian review cancelled by signal"));
});
}
});
const result = await Promise.race([
deps.prompt(sessionID, {
system: systemPrompt,
parts: [{ type: "text", text: userContent }],
model: options.guardianModel,
noReply: false,
}),
timeoutPromise,
]);
const text = textFromParts(result.parts);
if (!text) {
throw new GuardianReviewError("no_response", "guardian returned no text parts");
}
const assessment = parseGuardianAssessment(text);
return assessment;
} catch (err) {
if (err instanceof GuardianReviewError) {
lastError = err;
if (err.kind === "timeout" || err.kind === "cancelled" || err.kind === "session_create_failed") {
throw err;
}
if (!isRetryableErrorKind(err.kind) || attempt === options.maxAttempts) {
throw err;
}
} else {
lastError = new GuardianReviewError("prompt_failed", `guardian prompt failed: ${(err as Error).message}`);
if (attempt === options.maxAttempts) {
throw lastError;
}
}
const wait = backoff(attempt, options.baseBackoffMs);
const sleepUntilDeadline = Math.min(wait, deadline - Date.now());
if (sleepUntilDeadline > 0) {
await sleep(sleepUntilDeadline);
}
}
}
throw lastError ?? new GuardianReviewError("prompt_failed", "guardian review failed without explicit error");
}
export type GuardianQuestionDecision = { action: "answer"; answers: string[][] } | { action: "reject" };
export async function runGuardianQuestionReview(
request: QuestionAskedRequest,
transcript: GuardianTranscriptEntry[],
options: GuardianReviewOptions,
deps: GuardianReviewerDeps,
signal?: AbortSignal,
runOptions?: GuardianReviewRunOptions,
): Promise<GuardianQuestionDecision> {
const userContent = buildQuestionUserContent(request, transcript);
const parts = buildQuestionPromptParts(request, transcript);
const systemPrompt = parts.system;
const deadline = Date.now() + options.timeoutMs;
let sessionID: string | undefined = runOptions?.sessionID;
let lastError: GuardianReviewError | undefined;
for (let attempt = 1; attempt <= options.maxAttempts; attempt++) {
if (signal?.aborted) {
throw new GuardianReviewError("cancelled", "guardian question review cancelled");
}
const remaining = deadline - Date.now();
if (remaining <= 0) {
throw new GuardianReviewError(
"timeout",
lastError
? `guardian question review timed out after retries: ${lastError.message}`
: `guardian question review timed out after ${options.timeoutMs}ms`,
);
}
try {
if (!sessionID) {
if (!deps.createSession) {
throw new GuardianReviewError(
"session_create_failed",
"createSession dep is required when no sessionID is provided",
);
}
try {
const created = await deps.createSession(request.sessionID);
sessionID = created.id;
} catch (err) {
throw new GuardianReviewError(
"session_create_failed",
`failed to create guardian session: ${(err as Error).message}`,
);
}
}
const timeoutPromise = new Promise<never>((_, reject) => {
const t = setTimeout(() => {
reject(
new GuardianReviewError(
"timeout",
`guardian question review exceeded ${remaining}ms budget on attempt ${attempt}`,
),
);
}, remaining);
if (signal) {
signal.addEventListener("abort", () => {
clearTimeout(t);
reject(new GuardianReviewError("cancelled", "guardian question review cancelled by signal"));
});
}
});
const result = await Promise.race([
deps.prompt(sessionID, {
system: systemPrompt,
parts: [{ type: "text", text: userContent }],
model: options.guardianModel,
noReply: false,
}),
timeoutPromise,
]);
const text = textFromParts(result.parts);
if (!text) {
throw new GuardianReviewError("no_response", "guardian question review returned no text parts");
}
return parseQuestionDecision(text, request);
} catch (err) {
if (err instanceof GuardianReviewError) {
lastError = err;
if (err.kind === "timeout" || err.kind === "cancelled" || err.kind === "session_create_failed") {
throw err;
}
if (!isRetryableErrorKind(err.kind) || attempt === options.maxAttempts) {
throw err;
}
} else {
lastError = new GuardianReviewError(
"prompt_failed",
`guardian question prompt failed: ${(err as Error).message}`,
);
if (attempt === options.maxAttempts) {
throw lastError;
}
}
const wait = backoff(attempt, options.baseBackoffMs);
const sleepUntilDeadline = Math.min(wait, deadline - Date.now());
if (sleepUntilDeadline > 0) {
await sleep(sleepUntilDeadline);
}
}
}
throw lastError ?? new GuardianReviewError("prompt_failed", "guardian question review failed without explicit error");
}