* Format for display.
()
| 64 | * Format for display. |
| 65 | */ |
| 66 | formatShort() { |
| 67 | const m = this.getMetrics(); |
| 68 | return `${m.totalTokens} tok (${m.totalCalls} calls, ${m.efficiency} eff)`; |
| 69 | } |
| 70 | |
| 71 | formatFull() { |
| 72 | const m = this.getMetrics(); |
no test coverage detected