Mercurial
view dictation/web/index.html @ 279:b3b547563ec7
Add Google connector service and agent wiki
Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:22:36 -0700 |
| parents | 78699f810817 |
| children |
line wrap: on
line source
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Zenbu Dictation</title> <link rel="stylesheet" href="/dictation.css"> <script type="module" src="/dictation.js"></script> </head> <body> <main> <p class="eyebrow">LOCAL WEBRTC</p> <h1>Zenbu Dictation</h1> <p>Microphone audio stays local and is transcribed on this machine.</p> <div class="controls"> <button type="button" data-start>Start dictation</button> <button type="button" data-stop disabled>Stop</button> </div> <p class="status" data-status role="status">Idle</p> <section aria-labelledby="partial-heading"> <h2 id="partial-heading">Live</h2> <p class="partial" data-partial>Waiting for speech...</p> </section> <section aria-labelledby="final-heading"> <h2 id="final-heading">Transcript</h2> <textarea data-final rows="10" aria-label="Final transcript"></textarea> </section> </main> </body> </html>