diff --git a/wasm/index.html b/wasm/index.html
index 766e601..a70c6a5 100644
--- a/wasm/index.html
+++ b/wasm/index.html
@@ -405,11 +405,11 @@
Run an LLM in your browser
addMessage('user', text);
const aDiv = addMessage('assistant', '');
- aDiv.innerHTML = ' Thinking...';
+ aDiv.innerHTML = ' Processing prompt (may take a few seconds)...';
let output = '', count = 0;
const t0 = performance.now();
document.getElementById('statTokens').textContent = '';
- document.getElementById('statSpeed').textContent = 'prefill...';
+ document.getElementById('statSpeed').textContent = 'processing prompt...';
Module.onToken = (tok) => {
output += tok; count++;