mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Replace the surface-ordered fold with a log-ordered human transcript: append-origin surface events at their own log positions plus one marker per landed compaction checkpoint. Command folding, the tool-call index, and the rev-keyed memo carry over unchanged. Removes foldDegraded, the padding sentinels, baseSeq, and degradedSeqs() -- they existed only to satisfy the core fold's seq === index assertion. That also closes the pagination hole A1 exposed: a page can carry a checkpoint whose shadowed range fell outside the window, and nothing resolves surfaceOp.start anymore.
111 lines
5.3 KiB
TypeScript
111 lines
5.3 KiB
TypeScript
import { createUserMessage, createMessage, createToolResultMessage, CallId } from '@deepseek-ai/dsh-llm'
|
|
// Minimal SessionEvent builders for orchestration tests (shape mirrors what the
|
|
// host emits; only the fields the object layer reads).
|
|
import type { ContentBlock } from '@deepseek-ai/dsh-llm/types'
|
|
import type { SessionEvent } from '@deepseek-ai/dsh-session/types'
|
|
|
|
/** One text content block (local helper). */
|
|
const text = (t: string): ContentBlock[] => [{ type: 'text', text: t }]
|
|
|
|
const at = (seq: number, e: Record<string, unknown>): SessionEvent =>
|
|
({ seq, time: 1_700_000_000_000 + seq, ...e }) as unknown as SessionEvent
|
|
|
|
export const ev = {
|
|
turnStart: (seq: number, turn: number): SessionEvent =>
|
|
at(seq, { type: 'turn/start', data: { turn, trigger: { kind: 'message', source: { kind: 'user' } } } }),
|
|
user: (seq: number, body: string): SessionEvent =>
|
|
at(seq, { type: 'user/message', surfaceOp: 'append', data: createUserMessage({
|
|
content: text(body), source: { kind: 'user' },
|
|
}) }),
|
|
stepStart: (seq: number, turn: number, step = 0): SessionEvent =>
|
|
at(seq, { type: 'step/start', data: { turn, step } }),
|
|
chunkStart: (seq: number, turn: number, step = 0, index = 0): SessionEvent =>
|
|
at(seq, { type: 'assistant/chunk', data: { turn, step, chunk: { type: 'block-start', index, blockType: 'text' } } }),
|
|
chunkText: (seq: number, turn: number, piece: string, step = 0, index = 0): SessionEvent =>
|
|
at(seq, { type: 'assistant/chunk', data: { turn, step, chunk: { type: 'text-delta', index, text: piece } } }),
|
|
assistant: (seq: number, turn: number, body: string, step = 0): SessionEvent =>
|
|
at(seq, { type: 'assistant/message', surfaceOp: 'append', data: {
|
|
turn, step,
|
|
message: createMessage({
|
|
role: 'assistant',
|
|
content: text(body),
|
|
source: {
|
|
kind: 'model',
|
|
...{ provider: 'fake', model: 'fk-1' },
|
|
},
|
|
}),
|
|
} }),
|
|
toolCall: (seq: number, turn: number, callId: string, name: string, args: string, step = 0): SessionEvent =>
|
|
at(seq, { type: 'tool/call', data: { turn, step, callId, name, arguments: args } }),
|
|
toolResult: (seq: number, turn: number, callId: string, body: string, step = 0): SessionEvent =>
|
|
at(seq, {
|
|
type: 'tool/result',
|
|
surfaceOp: 'append',
|
|
data: {
|
|
turn,
|
|
step,
|
|
message: createToolResultMessage({
|
|
callId: CallId(callId),
|
|
content: text(body),
|
|
isError: false,
|
|
}),
|
|
},
|
|
}),
|
|
codeDispatchStart: (seq: number, parentCallId: string, n: number, name: string, args: unknown): SessionEvent =>
|
|
at(seq, {
|
|
type: 'tool/code-dispatch-start',
|
|
data: { parentCallId, subCallId: `${parentCallId}:code:${n}`, name, arguments: args },
|
|
}),
|
|
codeDispatch: (seq: number, parentCallId: string, n: number, name: string, args: unknown, body: string, isError = false): SessionEvent =>
|
|
at(seq, {
|
|
type: 'tool/code-dispatch',
|
|
data: { parentCallId, subCallId: `${parentCallId}:code:${n}`, name, arguments: args, isError, content: text(body) },
|
|
}),
|
|
stepEnd: (seq: number, turn: number, step = 0): SessionEvent =>
|
|
at(seq, { type: 'step/end', data: { turn, step } }),
|
|
turnEnd: (seq: number, turn: number, reason: 'completed' | 'cancelled' = 'completed'): SessionEvent =>
|
|
at(seq, { type: 'turn/end', data: { turn, reason: { kind: reason } } }),
|
|
commandRun: (seq: number, commandId: string, name: string, args = ''): SessionEvent =>
|
|
at(seq, { type: 'command/run', data: { commandId, name, args, source: { kind: 'user' } } }),
|
|
commandDone: (seq: number, commandId: string, kind: 'success' | 'error' = 'success', text?: string): SessionEvent =>
|
|
at(seq, { type: 'command/done', data: { commandId, kind, ...text === undefined ? {} : { text } } }),
|
|
/** A compaction's log-only `compact/summary` provenance record. */
|
|
compactSummary: (seq: number, summary: string, start: number, end: number): SessionEvent =>
|
|
at(seq, { type: 'compact/summary', data: {
|
|
summary: text(summary),
|
|
shadowedRange: { start, end },
|
|
shadowedSeqs: [start, end],
|
|
shadowedTokenCount: 100,
|
|
provider: 'fake',
|
|
model: 'compact-1',
|
|
} }),
|
|
/** The replacement user message a compaction backend lands (the checkpoint). */
|
|
compactCheckpoint: (seq: number, summarySeq: number, start: number, end: number): SessionEvent =>
|
|
at(seq, {
|
|
type: 'user/message',
|
|
surfaceOp: { op: 'replace', start, end },
|
|
sourceEventSeqs: [summarySeq, start, end],
|
|
data: createUserMessage({
|
|
content: text('<context_checkpoint>model only</context_checkpoint>'),
|
|
source: { kind: 'plugin', plugin: 'compact' },
|
|
}),
|
|
}),
|
|
}
|
|
|
|
/** One complete plain turn (turn/start → user → step → assistant → turn/end), 6 events from startSeq. */
|
|
export function plainTurn(startSeq: number, turn: number, ask: string, answer: string): SessionEvent[] {
|
|
return [
|
|
ev.turnStart(startSeq, turn),
|
|
ev.user(startSeq + 1, ask),
|
|
ev.stepStart(startSeq + 2, turn),
|
|
ev.assistant(startSeq + 3, turn, answer),
|
|
ev.stepEnd(startSeq + 4, turn),
|
|
ev.turnEnd(startSeq + 5, turn),
|
|
]
|
|
}
|
|
|
|
/** Wrap raw events as view-less history entries (the wire shape history now returns). */
|
|
export function entries(events: readonly SessionEvent[]): { event: SessionEvent }[] {
|
|
return events.map(event => ({ event }))
|
|
}
|