mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-30 04:40:37 +00:00
The barrel's module comment described where a later implementation would sit relative to this seam, which docs/AGENTS.md:38 keeps out of durable prose. State what the module exports instead.
20 lines
623 B
TypeScript
20 lines
623 B
TypeScript
/**
|
|
* CPython subprocess code runtime for the DeepSeek Harness code-execution seam.
|
|
*
|
|
* The package owns the versionless fd-3 wire protocol between the Node host and
|
|
* the CPython subprocess. The protocol's host-side codec and hostile-frame
|
|
* validators are re-exported so every consumer of the wire shares one
|
|
* vocabulary.
|
|
* @module @deepseek-ai/dsh-code-runtime-python
|
|
*/
|
|
|
|
export type { BootMessage, ChildToHost, ReplyMessage } from './protocol.ts'
|
|
export {
|
|
checkDoneValue,
|
|
encodeJsonPlain,
|
|
hasNonLosslessNumber,
|
|
hasUnsafeIntegerToken,
|
|
logTruncationMarker,
|
|
validateChildFrame,
|
|
} from './protocol.ts'
|