Reduce "few seconds" threshold to 3
| @@ -79,7 +79,7 @@ export function extractReasoningFromData(data) { | ||
| 79 | 79 | */ |
| 80 | 80 | export function updateReasoningTimeUI(element, duration, { forceEnd = false } = {}) { |
| 81 | 81 | if (duration) { |
| 82 | 82 | const durationStr = moment.duration(duration).locale(getCurrentLocale()).humanize({ s: 50, ss: 93 }); |
| 83 | 83 | const secondsStr = moment.duration(duration).asSeconds(); |
| 84 | 84 | element.innerHTML = t`Thought for <span title="${secondsStr} seconds">${durationStr}</span>`; |
| 85 | 85 | } else if (forceEnd) { |