Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ HF_TOKEN=your_huggingface_token_here
# Set to True to enable speaker identification (default: True)
ENABLE_DIARIZATION=True

# Summarization Toggle
# Set to False to disable live summary feature and save ~3-4GB VRAM
# Set to True to enable live summary (default: False - UI currently disabled)
ENABLE_SUMMARIZATION=False

# Cloudflare Tunnel Token (optional)
# Used to expose the app securely via Cloudflare Tunnel
# Get yours at: https://one.dash.cloudflare.com/
Expand Down
10 changes: 5 additions & 5 deletions templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -765,9 +765,9 @@ <h3 style="margin-bottom: 10px; color: #8b5cf6; font-size: 14px; display: flex;
}
</style>

<!-- Transcript and Summary - 50/50 Split Layout -->
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; min-height: 0;">
<!-- Left Panel: Transcript -->
<!-- Transcript - Full Width (Summary Temporarily Disabled) -->
<div style="display: grid; grid-template-columns: 1fr; gap: 10px; flex: 1; min-height: 0;">
<!-- Transcript Panel -->
<div class="panel" style="display: flex; flex-direction: column; max-height: none; height: 100%;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-shrink: 0;">
<h2 style="margin: 0;">📝 Transcript</h2>
Expand All @@ -785,8 +785,8 @@ <h2 style="margin: 0;">📝 Transcript</h2>
</div>
</div>

<!-- Right Panel: Live Summary -->
<div class="panel" style="display: flex; flex-direction: column; max-height: none; height: 100%; background: rgba(236, 72, 153, 0.05); border: 1px solid rgba(236, 72, 153, 0.2);">
<!-- Right Panel: Live Summary (TEMPORARILY DISABLED) -->
<div class="panel" style="display: none; flex-direction: column; max-height: none; height: 100%; background: rgba(236, 72, 153, 0.05); border: 1px solid rgba(236, 72, 153, 0.2);">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-shrink: 0;">
<h2 style="margin: 0; color: #ec4899;">📋 Live Summary</h2>
<div style="display: flex; gap: 8px; align-items: center;">
Expand Down
2 changes: 1 addition & 1 deletion templates/viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@
/* Right Panel - Summary */
.summary-panel {
flex: 1;
display: flex;
display: none; /* TEMPORARILY DISABLED */
flex-direction: column;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
Expand Down
Loading