From 7ece1a50c2084c3d4bbabb85f9d64d5c7edfbb18 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 15 Jun 2026 03:02:19 +0000 Subject: [PATCH] Update Web UI: rename option, increase title font, default identify speakers - Rename 'Transcript & Summarize' to 'Transcribe & summarize' - Increase title font size to 60px via CSS - Set 'Identify speakers' checkbox to default selected --- scraibe/webui.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/scraibe/webui.py b/scraibe/webui.py index abdb983..7502c97 100644 --- a/scraibe/webui.py +++ b/scraibe/webui.py @@ -144,7 +144,7 @@ def create_app(): task_choice = gr.Radio( choices=[ ("Transcribe", "transcribe"), - ("Transcript & Summarize", "transcript_and_summarize"), + ("Transcribe & summarize", "transcript_and_summarize"), ], value="transcribe", label="Task", @@ -153,7 +153,7 @@ def create_app(): identify_speakers = gr.Checkbox( label="Identify speakers (best effort using AI)", - value=False, + value=True, info="If enabled, AI will attempt to infer real names for speakers and replace Speaker 1/2/etc. in the transcript.", ) @@ -307,6 +307,12 @@ def create_app(): body {{ font-family: Arial, sans-serif; }} + /* Increase main title font size */ + h1, + .webui-title, + .header-title {{ + font-size: 60px !important; + }} /* Mobile-friendly adjustments */ @media (max-width: 700px) {{ .gradio-container {{