Temporarily disable live summary and maximize transcript experience#11
Merged
etiennechabert merged 2 commits intoMar 16, 2026
Merged
Conversation
Hide the live summary panels in both admin and viewer interfaces to focus on the transcript experience: - Admin: Changed grid from 50/50 split to full-width transcript - Viewer: Hidden summary panel with display: none - Summary panels marked as "TEMPORARILY DISABLED" for easy re-enabling This gives users the full screen width for reading transcripts without the distraction of the summary panel. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Document the ENABLE_SUMMARIZATION environment variable in the example file to help users disable the summarization model and save ~3-4GB VRAM. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Temporarily hide the live summary panels in both admin and viewer interfaces to maximize the transcript experience and give users the full screen width for reading.
Changes Made
Admin View (admin.html)
1fr 1fr(50/50 split) to1fr(full width)display: noneViewer View (viewer.html)
display: noneto.summary-panelclassBenefits
✅ Maximized Reading Experience: Full screen width for transcripts
✅ Less Distraction: Users can focus on the transcript content
✅ Better Readability: More horizontal space for longer lines
✅ Easy to Re-enable: All summary code remains intact, just hidden with CSS/layout changes
Visual Impact
Before:
After:
Technical Details
display: noneand restore grid layoutNotes
This is a temporary change to improve the user experience. The summary feature can be re-enabled at any time by:
grid-template-columns: 1fr 1frin admin.htmldisplay: nonefrom.summary-panelin viewer.html🤖 Generated with Claude Code