| 5 | // This client normalizes to { ok, result } internally. |
| 6 | |
| 7 | export interface OVSearchResult { |
| 8 | uri: string; |
| 9 | context_type: string; // "memory" | "resource" | "skill" |
| 10 | score: number; |
| 11 | abstract: string; |
| 12 | overview: string | null; |
| 13 | level: number; // 0=L0, 1=L1, 2=L2 |
| 14 | category: string; |
| 15 | match_reason: string; |
| 16 | } |
| 17 | |
| 18 | export interface OVDirEntry { |
| 19 | uri: string; |
nothing calls this directly
no outgoing calls
no test coverage detected