Compare commits

...

2 Commits

Author SHA1 Message Date
admin 572587bb85 Fix syntax error in tasks.py speaker identification prompt
Mirror and run GitLab CI / build (push) Has been cancelled
Ruff / ruff (push) Has been cancelled
2026-06-14 20:43:37 +00:00
admin cfc38b21ed Reduce header logo size to 25% while keeping responsive layout 2026-06-14 20:42:31 +00:00
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -46,7 +46,7 @@
}} }}
.logo {{ .logo {{
height: 80px; height: 20px;
width: auto; width: auto;
display: block; display: block;
}} }}
@@ -93,7 +93,7 @@
}} }}
.logo {{ .logo {{
height: 60px; height: 16px;
}} }}
.header-description {{ .header-description {{
+7 -7
View File
@@ -307,13 +307,13 @@ def process_transcription_task(
prompt = ( prompt = (
"Below is a transcript with speaker labels like 'SPEAKER 1', 'SPEAKER 2', etc. " "Below is a transcript with speaker labels like 'SPEAKER 1', 'SPEAKER 2', etc. "
"Based on how they speak and the context, suggest realistic names for each speaker. " "Based on how they speak and the context, suggest realistic names for each speaker. "
"Do not add extra commentary. Output ONLY a mapping in this exact format, one per line: "Do not add extra commentary. Output ONLY a mapping in this exact format, one per line:\n"
SPEAKER 1: Suggested Name "SPEAKER 1: Suggested Name\n"
SPEAKER 2: Suggested Name "SPEAKER 2: Suggested Name\n"
SPEAKER 3: Suggested Name "SPEAKER 3: Suggested Name\n"
"\n"
Transcript: "Transcript:\n"
" + transcript_text + transcript_text
) )
response = summarizer._chat_completion( response = summarizer._chat_completion(