(m)
| 57 | } |
| 58 | |
| 59 | export function formatModel(m) { |
| 60 | if (!m) return ''; |
| 61 | return m.replace(/^claude-/, '').replace(/-(\d)/g, ' $1').replace(/-/g, ' ') |
| 62 | .replace(/\b\w/g, c => c.toUpperCase()); |
| 63 | } |
| 64 | |
| 65 | export function formatTokens(n) { |
| 66 | if (!n) return ''; |
no outgoing calls
no test coverage detected