(cwd: string, model: string)
| 195 | } |
| 196 | |
| 197 | createSession(cwd: string, model: string): string { |
| 198 | const id = uuidv4(); |
| 199 | this.insertSession.run(id, cwd, model, null); |
| 200 | return id; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Create a session row with a caller-chosen id if it doesn't exist yet (idempotent). |
no test coverage detected