| 12 | * Structured search result record |
| 13 | */ |
| 14 | export interface SearchResult { |
| 15 | path?: string; |
| 16 | score: number; |
| 17 | context: string; |
| 18 | page?: number; |
| 19 | metadata?: Record<string, any>; |
| 20 | } |
| 21 | |
| 22 | export class DocsAgent { |
| 23 | private process: ChildProcess | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected