(ms: number)
| 251 | } |
| 252 | |
| 253 | export function formatDuration(ms: number) { |
| 254 | if (ms < 1000) { |
| 255 | return `${ms}ms` |
| 256 | } |
| 257 | |
| 258 | return `${(ms / 1000).toFixed(1)}s` |
| 259 | } |
| 260 | |
| 261 | function modelToChoices(model: SDKModel): ModelChoice[] { |
| 262 | const baseLabel = model.displayName || model.id |
no outgoing calls
no test coverage detected