mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
e483521075
- Add PrintModeOptions interface, update runPrintMode signature - Export InteractiveMode, InteractiveModeOptions, runPrintMode, PrintModeOptions, runRpcMode from main package - Document run modes in docs/sdk.md with usage examples - Update CHANGELOG
10 lines
456 B
TypeScript
10 lines
456 B
TypeScript
/**
|
|
* Run modes for the coding agent.
|
|
*/
|
|
|
|
export { InteractiveMode, type InteractiveModeOptions } from "./interactive/interactive-mode.js";
|
|
export { type PrintModeOptions, runPrintMode } from "./print-mode.js";
|
|
export { type ModelInfo, RpcClient, type RpcClientOptions, type RpcEventListener } from "./rpc/rpc-client.js";
|
|
export { runRpcMode } from "./rpc/rpc-mode.js";
|
|
export type { RpcCommand, RpcResponse, RpcSessionState } from "./rpc/rpc-types.js";
|