Reduce "few seconds" threshold to 3

28ba262087628996e479ee9218590038758f12cb

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/reasoning.js+1 -1
@@ -79,7 +79,7 @@ export function extractReasoningFromData(data) {
7979 */
8080export function updateReasoningTimeUI(element, duration, { forceEnd = false } = {}) {
8181 if (duration) {
8282 const durationStr = moment.duration(duration).locale(getCurrentLocale()).humanize({ s: 50, ss: 93 });
8383 const secondsStr = moment.duration(duration).asSeconds();
8484 element.innerHTML = t`Thought for <span title="${secondsStr} seconds">${durationStr}</span>`;
8585 } else if (forceEnd) {