mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
26 lines
853 B
TypeScript
26 lines
853 B
TypeScript
/**
|
|
* Shared wire protocol for the DeepSeek Harness SDK runtime: the
|
|
* newline-delimited JSON-RPC stdio transport plus the named request, result,
|
|
* and notification types both wire ends speak. The runtime server plugin
|
|
* (`@deepseek-ai/dsh-sdk-jsonrpc-server`) serves this protocol; SDK clients
|
|
* (`@deepseek-ai/dsh-sdk-client`, the Python SDK) drive it.
|
|
*
|
|
* @module @deepseek-ai/dsh-sdk-protocol
|
|
*/
|
|
|
|
export { JsonRpcLineTransport, JsonRpcResponseError } from './transport.ts'
|
|
export type { JsonRpcTransportPeer } from './transport.ts'
|
|
export type {
|
|
HarnessSdkNotificationMap,
|
|
HarnessSdkRequestMap,
|
|
InitializeParams,
|
|
InitializeResult,
|
|
SdkRunStatus,
|
|
SessionEventNotification,
|
|
SessionStatusNotification,
|
|
SessionPromptParams,
|
|
SessionPromptResult,
|
|
SubagentFinishedNotification,
|
|
SubagentStartedNotification,
|
|
} from './types.ts'
|