Removed rounding from time to first token display

d3263b0e0fa4d36f5f9132e7a9ee11790b7a4c95

bmen25124 <bmen25124@gmail.com>

1 files changed, +1 -1Showing whitespace changes
public/script.js+1 -1
@@ -2619,7 +2619,7 @@ function formatGenerationTimer(gen_started, gen_finished, tokenCount, timeToFirs
26192619 `Generation queued: ${start.format(dateFormat)}`,
26202620 `Reply received: ${finish.format(dateFormat)}`,
26212621 `Time to generate: ${seconds} seconds`,
26222622 timeToFirstToken ? `Time to first token: ${(timeToFirstToken / 1000).toFixed(1)} seconds` : '',
26232623 reasoningDuration > 0 ? `Time to think: ${reasoningDuration / 1000} seconds` : '',
26242624 tokenCount > 0 ? `Token rate: ${Number(tokenCount / seconds).toFixed(1)} t/s` : '',
26252625 ].filter(x => x).join('\n').trim();