(id, parentId, content, timestamp = "2026-01-01T00:00:00.000Z")
| 15 | } = await jiti.import("./session-reader.ts"); |
| 16 | |
| 17 | function userEntry(id, parentId, content, timestamp = "2026-01-01T00:00:00.000Z") { |
| 18 | return { |
| 19 | type: "message", |
| 20 | id, |
| 21 | parentId, |
| 22 | timestamp, |
| 23 | message: { |
| 24 | role: "user", |
| 25 | content, |
| 26 | }, |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | function assistantEntry(id, parentId, text, timestamp = "2026-01-01T00:00:00.000Z") { |
| 31 | return { |
no outgoing calls
no test coverage detected