index.ts 533 B

1234567891011
  1. /**
  2. * @deepseek-ai/dsh-host-runtime — host runtime assembly layer: the core spine
  3. * composition (bootHost) and the one-step shell seam (startHost). The ApiProxy
  4. * implementation lives in @deepseek-ai/dsh-host-apiproxy. Host-level
  5. * configuration (defaults, persistenceRoot, future user profile) lives here.
  6. */
  7. export { bootHost } from './boot.ts'
  8. export type { BootHostOptions, HostDefaults, HostHandle } from './boot.ts'
  9. export { startHost } from './start.ts'
  10. export type { StartHostOptions, RunningHost } from './start.ts'