(path: string)
| 137 | } |
| 138 | |
| 139 | function readJsonl(path: string) { |
| 140 | return readFileSync(path, "utf-8") |
| 141 | .trim() |
| 142 | .split("\n") |
| 143 | .map((line) => JSON.parse(line)); |
| 144 | } |
| 145 | |
| 146 | function makeCortexkitDb() { |
| 147 | const ck = new Database(":memory:"); |