summaryrefslogtreecommitdiffhomepage
path: root/packages/cli/src/index.ts
blob: 82e0b21e013496994d1360cfd8a6795d68ff5a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Barrel export — the public surface of @dispatch/cli.
 *
 * Pure functions + http functions for consumers and tests.
 */

export { type ParsedCommand, parseArgs } from "./args.js";
export { formatCatalog } from "./catalog.js";
export { fetchModels, streamChat } from "./http.js";
export { buildChatRequest, composeMessage } from "./message.js";
export { type SplitResult, splitNdjsonLines } from "./ndjson.js";
export { renderEvent } from "./render.js";