| 108 | export type ChunkingMode = "heading_strict" | "token"; |
| 109 | |
| 110 | export interface SearchProgressEvent { |
| 111 | type: "step"; |
| 112 | status: "running" | "done" | "failed"; |
| 113 | key: string; |
| 114 | title: string; |
| 115 | detail: string; |
| 116 | payload?: unknown; |
| 117 | durationMs?: number; |
| 118 | } |
| 119 | |
| 120 | export interface ProjectStatsRecord { |
| 121 | documentCount: number; |
nothing calls this directly
no outgoing calls
no test coverage detected