(models: ModelRecord)
| 80 | } |
| 81 | |
| 82 | function outputModelsText(models: ModelRecord): void { |
| 83 | for (const modelId of Object.keys(models).sort()) { |
| 84 | process.stdout.write(`${modelId}\n`) |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | function formatSessionTitle(task: string): string { |
| 89 | const compact = task.replace(/\s+/g, " ").trim() |
no test coverage detected