2026-07-08 12:58:23 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* Code Mode: the `run_code` tool and its dispatch bridge. The model writes a
|
|
|
|
|
|
* TypeScript program; the bridge hands it to `ctx.codeRuntime` with one
|
|
|
|
|
|
* async binding per registered tool, serializes every binding call through a
|
|
|
|
|
|
* per-run queue onto `ToolRegistry.execute()` (so `tools/pre-execute` /
|
|
|
|
|
|
* `tools/post-execute` gate sub-calls exactly like native ones), logs each
|
|
|
|
|
|
* sub-dispatch as a `tool/code-dispatch` session event, and returns only the
|
|
|
|
|
|
* program's curated output. The registry itself decides WHEN this tool
|
|
|
|
|
|
* exists (its `mode` config); this module owns only the tool and the bridge.
|
|
|
|
|
|
*
|
|
|
|
|
|
* @module @deepseek-ai/dsh-tools/src/code-mode
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import { inspect } from 'node:util'
|
|
|
|
|
|
import { CallId, HarnessError } from '@deepseek-ai/dsh-llm'
|
|
|
|
|
|
import type { ContentBlock } from '@deepseek-ai/dsh-llm'
|
|
|
|
|
|
import type { CodeBindingFunction, CodeRunResult, CodeRuntime } from '@deepseek-ai/dsh-code-runtime'
|
|
|
|
|
|
import type {} from '@deepseek-ai/dsh-session'
|
|
|
|
|
|
import { defineTool } from './schema.ts'
|
|
|
|
|
|
import type { ToolDefinition, ToolRegistry } from './index.ts'
|
|
|
|
|
|
|
|
|
|
|
|
declare module '@deepseek-ai/dsh-session' {
|
|
|
|
|
|
interface SessionEventMap {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* One bridged sub-dispatch from a `run_code` program: the parent
|
|
|
|
|
|
* `run_code` call id, the deterministic sub-call id
|
|
|
|
|
|
* (`<parent>:code:<n>`), the tool `name` with its JSON-normalized
|
|
|
|
|
|
* `arguments` — the exact value dispatched, normalized BEFORE dispatch,
|
|
|
|
|
|
* so this append can never fail on payload shape — whether the sub-call
|
|
|
|
|
|
* errored, and a bounded `resultSummary` of its model-facing text.
|
|
|
|
|
|
* Log-only: `deriveMessages()` ignores it, so sub-calls never re-enter
|
|
|
|
|
|
* model context; persistence and UIs get every call. Appended inside the
|
|
|
|
|
|
* parent `run_code`'s execution (the bridge drains its queue before
|
|
|
|
|
|
* returning), so the turn-enclosure invariant holds by construction.
|
|
|
|
|
|
*/
|
|
|
|
|
|
'tool/code-dispatch': { parentCallId: CallId; subCallId: CallId; name: string; arguments: unknown; isError: boolean; resultSummary: string }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** The model-facing name of the Code Mode tool. */
|
|
|
|
|
|
export const RUN_CODE_NAME = 'run_code'
|
|
|
|
|
|
|
|
|
|
|
|
/** The `tools:sdk` section order: inside the 100–199 tool-guidance band, after per-tool guidance sections. */
|
|
|
|
|
|
export const SDK_SECTION_ORDER = 150
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Thrown by `run_code` when the program run itself failed — a program
|
|
|
|
|
|
* exception, a budget expiry, an abort, or substrate death. Extends
|
|
|
|
|
|
* {@link HarnessError} (`code: 'CODE_RUN_FAILED'`); the registry's execution
|
|
|
|
|
|
* pipeline converts it into a structured `isError` result whose text carries
|
|
|
|
|
|
* the failure kind plus the captured logs, so the model can self-correct.
|
|
|
|
|
|
*/
|
|
|
|
|
|
export class CodeRunFailedError extends HarnessError {
|
|
|
|
|
|
constructor(message: string) {
|
|
|
|
|
|
super(message, 'CODE_RUN_FAILED')
|
|
|
|
|
|
this.name = 'CodeRunFailedError'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Cap for a `tool/code-dispatch` event's `resultSummary`. A log-ergonomics
|
|
|
|
|
|
* constant, not config: the full result already flows to the program; the
|
|
|
|
|
|
* summary exists so log readers see what a sub-call returned at a glance.
|
|
|
|
|
|
*/
|
|
|
|
|
|
const SUMMARY_MAX_CHARS = 200
|
|
|
|
|
|
|
|
|
|
|
|
/** Bounded inspect for rendering a program's completion value into the model-facing text. */
|
|
|
|
|
|
const INSPECT_OPTIONS = { depth: 4, maxArrayLength: 100, maxStringLength: 10_000 } as const
|
|
|
|
|
|
|
|
|
|
|
|
/** Join a result's text blocks; a non-text block becomes a placeholder (an MVP limitation, stated in the SDK instructions). */
|
|
|
|
|
|
function textOf(content: ContentBlock[]): string {
|
|
|
|
|
|
return content
|
|
|
|
|
|
.map((block) => {
|
|
|
|
|
|
switch (block.type) {
|
|
|
|
|
|
case 'text': return block.text
|
|
|
|
|
|
// ContentBlockMap is merge-extensible — future block kinds land here
|
|
|
|
|
|
// deliberately (no assertNever on merge-extensible unions).
|
|
|
|
|
|
default: return `[${block.type} content]`
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.join('\n')
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Bound a sub-call's model-facing text for the log event's `resultSummary`. */
|
|
|
|
|
|
function summarize(text: string): string {
|
|
|
|
|
|
return text.length > SUMMARY_MAX_CHARS ? `${text.slice(0, SUMMARY_MAX_CHARS)}…` : text
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2026-07-08 13:39:51 +08:00
|
|
|
|
* JSON-normalize one binding call's argument into TWO independent parses of
|
|
|
|
|
|
* the same canonical text: `dispatched` goes to the tool, `logged` to the
|
|
|
|
|
|
* `tool/code-dispatch` event — identical by construction (the runtime's
|
|
|
|
|
|
* structured-clone boundary is wider than JSON; the session log accepts only
|
|
|
|
|
|
* JSON), and separate objects, so a tool mutating its args can neither
|
|
|
|
|
|
* desync the log from what was dispatched nor re-poison the append. A value
|
|
|
|
|
|
* that does not survive the round-trip (`undefined` — the log rejects it as
|
|
|
|
|
|
* event data — `BigInt`, a circular structure, a bare function) rejects that
|
|
|
|
|
|
* one call BEFORE dispatch with a model-correctable error: nothing ever
|
|
|
|
|
|
* executes unlogged.
|
2026-07-08 12:58:23 +08:00
|
|
|
|
*/
|
2026-07-08 13:39:51 +08:00
|
|
|
|
function jsonNormalizeArgs(value: unknown): { dispatched: unknown; logged: unknown } {
|
|
|
|
|
|
if (value === undefined) {
|
|
|
|
|
|
throw new Error('tool arguments must be JSON-serializable (call the tool with an arguments object, e.g. `{}`)')
|
|
|
|
|
|
}
|
2026-07-08 12:58:23 +08:00
|
|
|
|
let text: string | undefined
|
|
|
|
|
|
try {
|
|
|
|
|
|
text = JSON.stringify(value)
|
|
|
|
|
|
} catch (error: unknown) {
|
|
|
|
|
|
throw new Error(`tool arguments must be JSON-serializable: ${error instanceof Error ? error.message : String(error)}`)
|
|
|
|
|
|
}
|
|
|
|
|
|
// JSON.stringify's lib type claims `string`, but a bare function or symbol
|
|
|
|
|
|
// root really yields `undefined` at runtime — the guard is live.
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
|
|
if (text === undefined) throw new Error('tool arguments must be JSON-serializable (got a value JSON cannot represent)')
|
2026-07-08 13:39:51 +08:00
|
|
|
|
return { dispatched: JSON.parse(text) as unknown, logged: JSON.parse(text) as unknown }
|
2026-07-08 12:58:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Render the program's completion value for the model-facing result text (`''` when the program returned nothing). */
|
|
|
|
|
|
function renderValue(value: unknown): string {
|
|
|
|
|
|
if (value === undefined) return ''
|
|
|
|
|
|
return typeof value === 'string' ? value : inspect(value, INSPECT_OPTIONS)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** The run_code result's `meta` payload (JSON-serializable; `presentResult` narrows it back). */
|
|
|
|
|
|
interface RunCodeMeta {
|
|
|
|
|
|
logs: CodeRunResult['logs']
|
|
|
|
|
|
dispatches: number
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Soft-narrow a result `meta` back to {@link RunCodeMeta} (replay may carry older shapes; presentation must not throw). */
|
|
|
|
|
|
function asRunCodeMeta(meta: unknown): RunCodeMeta | undefined {
|
|
|
|
|
|
if (typeof meta !== 'object' || meta === null) return undefined
|
|
|
|
|
|
const m = meta as Record<string, unknown>
|
|
|
|
|
|
if (!Array.isArray(m.logs) || typeof m.dispatches !== 'number') return undefined
|
|
|
|
|
|
return m as unknown as RunCodeMeta
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Build the `run_code` {@link ToolDefinition}: one required `code` parameter,
|
|
|
|
|
|
* executed through the dispatch bridge described in the module doc. The
|
|
|
|
|
|
* registry registers it under non-native modes.
|
|
|
|
|
|
* @param registry - the owning registry (sub-calls go through its `execute`,
|
|
|
|
|
|
* bindings cover its registered tools).
|
|
|
|
|
|
* @param requireRuntime - resolves `ctx.codeRuntime` or throws the loud
|
|
|
|
|
|
* misconfiguration error (shared with the registry's assembly-time checks).
|
|
|
|
|
|
* @returns the registry-ready definition.
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function createRunCodeTool(registry: ToolRegistry, requireRuntime: () => CodeRuntime): ToolDefinition {
|
|
|
|
|
|
return defineTool({
|
|
|
|
|
|
name: RUN_CODE_NAME,
|
|
|
|
|
|
description:
|
|
|
|
|
|
'Execute a TypeScript program against the available tools. Write the BODY of an '
|
|
|
|
|
|
+ 'async function (erasable syntax only; top-level `await` and `return` work) and '
|
|
|
|
|
|
+ 'call tools as `await tools.name(args)` per the declarations in the system prompt. '
|
|
|
|
|
|
+ 'Only what you print or return comes back — curate it.',
|
|
|
|
|
|
parameters: {
|
|
|
|
|
|
code: { type: 'string', required: true, description: 'The program: the body of an async TypeScript function.' },
|
|
|
|
|
|
},
|
|
|
|
|
|
async execute(args, exec) {
|
|
|
|
|
|
const runtime = requireRuntime()
|
|
|
|
|
|
|
|
|
|
|
|
// The run-scoped abort: follows the outer signal in, and fires when the
|
|
|
|
|
|
// run settles for ANY reason, so an in-flight sub-dispatch is aborted
|
|
|
|
|
|
// (its executor kills on this signal) instead of orphaned, and
|
|
|
|
|
|
// queued-unstarted dispatches are abandoned.
|
|
|
|
|
|
const runController = new AbortController()
|
|
|
|
|
|
const onOuterAbort = (): void => { runController.abort(exec.signal?.reason) }
|
|
|
|
|
|
if (exec.signal?.aborted) onOuterAbort()
|
|
|
|
|
|
exec.signal?.addEventListener('abort', onOuterAbort, { once: true })
|
|
|
|
|
|
|
|
|
|
|
|
let dispatches = 0
|
|
|
|
|
|
// The per-run serialization queue: every binding call chains onto the
|
|
|
|
|
|
// tail, so even `Promise.all` executes the underlying tool calls one at
|
|
|
|
|
|
// a time in submission order (the tool contract carries no
|
|
|
|
|
|
// concurrency-safety metadata yet). The fold keeps the tail non-rejecting
|
|
|
|
|
|
// so one failed dispatch never poisons the chain.
|
|
|
|
|
|
let queue: Promise<void> = Promise.resolve()
|
|
|
|
|
|
const enqueue = <T>(task: () => Promise<T>): Promise<T> => {
|
|
|
|
|
|
const turn = queue.then(() => {
|
|
|
|
|
|
if (runController.signal.aborted) {
|
|
|
|
|
|
throw new Error(`run_code run is over (${String(runController.signal.reason)}); tool call abandoned`)
|
|
|
|
|
|
}
|
|
|
|
|
|
return task()
|
|
|
|
|
|
})
|
|
|
|
|
|
queue = turn.then(() => undefined, () => undefined)
|
|
|
|
|
|
return turn
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Read through a call, not a bare property: the abort state genuinely
|
|
|
|
|
|
// changes across awaits, and a direct `.aborted` re-check after one
|
|
|
|
|
|
// would be narrowed away by control flow analysis.
|
|
|
|
|
|
const runOver = (): boolean => runController.signal.aborted
|
|
|
|
|
|
|
|
|
|
|
|
const binding = (name: string): CodeBindingFunction => async (rawArgs: unknown): Promise<unknown> => {
|
|
|
|
|
|
if (runOver()) {
|
|
|
|
|
|
throw new Error(`run_code run is over (${String(runController.signal.reason)}); ${name} not dispatched`)
|
|
|
|
|
|
}
|
|
|
|
|
|
const normalized = jsonNormalizeArgs(rawArgs)
|
|
|
|
|
|
const outcome = await enqueue(async () => {
|
|
|
|
|
|
const n = ++dispatches
|
|
|
|
|
|
const subCallId = CallId(`${String(exec.callId)}:code:${n}`)
|
|
|
|
|
|
const result = await registry.execute({
|
|
|
|
|
|
callId: subCallId,
|
|
|
|
|
|
name,
|
2026-07-08 13:39:51 +08:00
|
|
|
|
arguments: normalized.dispatched,
|
2026-07-08 12:58:23 +08:00
|
|
|
|
...exec.agent ? { agent: exec.agent } : {},
|
|
|
|
|
|
signal: runController.signal,
|
|
|
|
|
|
})
|
|
|
|
|
|
const text = textOf(result.content)
|
|
|
|
|
|
// Sub-call `additionalContext` is deliberately DROPPED here: the
|
|
|
|
|
|
// loop's buffering (append after the step's tool/results) has no
|
|
|
|
|
|
// safe analogue from inside a running run_code — injecting now
|
|
|
|
|
|
// would break tool-call/result adjacency. Deferred until a real
|
|
|
|
|
|
// hook needs it through Code Mode.
|
|
|
|
|
|
exec.agent?.session.append('tool/code-dispatch', {
|
|
|
|
|
|
parentCallId: exec.callId,
|
|
|
|
|
|
subCallId,
|
|
|
|
|
|
name,
|
2026-07-08 13:39:51 +08:00
|
|
|
|
// The SIBLING parse of the dispatched value: byte-identical JSON,
|
|
|
|
|
|
// but a separate object — a tool mutating its args cannot desync
|
|
|
|
|
|
// this record from what it actually received.
|
|
|
|
|
|
arguments: normalized.logged,
|
2026-07-08 12:58:23 +08:00
|
|
|
|
isError: result.isError,
|
|
|
|
|
|
resultSummary: summarize(text),
|
|
|
|
|
|
})
|
|
|
|
|
|
return { text, isError: result.isError }
|
|
|
|
|
|
})
|
|
|
|
|
|
// A budget expiry or outer cancel that lands while this call was in
|
|
|
|
|
|
// flight already aborted the dispatch; stop the program now rather
|
|
|
|
|
|
// than hand it a result from a run that is over.
|
|
|
|
|
|
if (runOver()) {
|
|
|
|
|
|
throw new Error(`run_code run is over (${String(runController.signal.reason)}); ${name} result discarded`)
|
|
|
|
|
|
}
|
|
|
|
|
|
// A failed tool call REJECTS — real code signals failure by throwing,
|
|
|
|
|
|
// so try/catch and Promise.all short-circuiting behave as models
|
|
|
|
|
|
// expect (the error text is the tool's model-facing result text).
|
|
|
|
|
|
if (outcome.isError) throw new Error(outcome.text)
|
|
|
|
|
|
return outcome.text
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-08 13:39:51 +08:00
|
|
|
|
// Null-prototype + defineProperty, mirroring the worker-side namespace
|
|
|
|
|
|
// build: a registered tool named `__proto__` must become an ordinary
|
|
|
|
|
|
// own key (a plain-object assignment would hit the prototype setter,
|
|
|
|
|
|
// silently dropping the binding), and the runtime host resolves
|
|
|
|
|
|
// binding names as own properties only.
|
|
|
|
|
|
const functions: Record<string, CodeBindingFunction> = Object.create(null) as Record<string, CodeBindingFunction>
|
2026-07-08 12:58:23 +08:00
|
|
|
|
for (const schema of registry.schemas()) {
|
|
|
|
|
|
if (schema.name === RUN_CODE_NAME) continue
|
2026-07-08 13:39:51 +08:00
|
|
|
|
Object.defineProperty(functions, schema.name, { enumerable: true, value: binding(schema.name) })
|
2026-07-08 12:58:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
2026-07-08 22:03:27 +08:00
|
|
|
|
let result: CodeRunResult
|
|
|
|
|
|
try {
|
|
|
|
|
|
result = await runtime.run({
|
|
|
|
|
|
program: args.code,
|
|
|
|
|
|
bindings: [{ global: 'tools', functions }],
|
|
|
|
|
|
signal: runController.signal,
|
|
|
|
|
|
})
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
// Quiescence before returning, whether the runtime fulfilled or
|
|
|
|
|
|
// REJECTED (a backend that starts a binding call and then throws
|
|
|
|
|
|
// must not leak a live sub-dispatch past this settlement): fire
|
|
|
|
|
|
// the run-scoped abort (cancelling an in-flight sub-dispatch,
|
|
|
|
|
|
// abandoning queued ones), then await the queue's drain — an
|
|
|
|
|
|
// aborted sub-call still settles and logs its event INSIDE the
|
|
|
|
|
|
// open turn; nothing can append after we return. `queue` is the
|
|
|
|
|
|
// FOLDED tail (every link swallows its rejection into undefined),
|
|
|
|
|
|
// so this await cannot itself reject — an abandoned queued call
|
|
|
|
|
|
// can never mask the runtime's own failure, returned or thrown;
|
|
|
|
|
|
// rejections surface only on the per-call promises the program
|
|
|
|
|
|
// holds.
|
|
|
|
|
|
runController.abort('run_code settled')
|
|
|
|
|
|
await queue
|
|
|
|
|
|
}
|
2026-07-08 12:58:23 +08:00
|
|
|
|
|
|
|
|
|
|
if (result.error) {
|
|
|
|
|
|
const logsText = result.logs.length > 0 ? `\nCaptured output:\n${result.logs.map(entry => entry.text).join('\n')}` : ''
|
|
|
|
|
|
throw new CodeRunFailedError(`code run failed (${result.error.kind}): ${result.error.message}${logsText}`)
|
|
|
|
|
|
}
|
|
|
|
|
|
const rendered = renderValue(result.value)
|
|
|
|
|
|
const parts = [result.logs.map(entry => entry.text).join('\n'), rendered].filter(part => part.length > 0)
|
|
|
|
|
|
const meta: RunCodeMeta = { logs: result.logs, dispatches }
|
|
|
|
|
|
return {
|
|
|
|
|
|
content: [{ type: 'text', text: parts.length > 0 ? parts.join('\n') : '(run_code completed with no output)' }],
|
|
|
|
|
|
meta,
|
|
|
|
|
|
}
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
exec.signal?.removeEventListener('abort', onOuterAbort)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
presentCall: args => ({ card: 'generic', title: 'Run code', kind: 'execute', rawInput: args.code }),
|
|
|
|
|
|
presentResult: (_args, result) => {
|
|
|
|
|
|
const meta = asRunCodeMeta(result.meta)
|
|
|
|
|
|
if (!meta) return undefined
|
|
|
|
|
|
const output = meta.logs.map(entry => entry.text).join('\n')
|
|
|
|
|
|
return {
|
|
|
|
|
|
card: 'generic',
|
|
|
|
|
|
title: `Run code (${meta.dispatches} tool call${meta.dispatches === 1 ? '' : 's'})`,
|
|
|
|
|
|
...output.length > 0 ? { content: [{ type: 'text', text: output }] } : {},
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|