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 {{