Skip to content

Commit 283467a

Browse files
committed
cleanup
1 parent ec1affd commit 283467a

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/helm/env.d/dev-keycloak/values.meet.yaml.gotmpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ agentSubtitles:
327327
command:
328328
- "python"
329329
- "multi_user_transcriber.py"
330-
# - "metadata_collector.py" # TODO: FIX THIS
331330
- "start"
332331

333332
# Extra volume mounts to manage our local custom CA and avoid to disable ssl

src/summary/summary/core/celery_worker.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,12 @@ def process_audio_transcribe_summarize_v2(
295295
transcription,
296296
recording_start_dt,
297297
recording_end_dt,
298-
overlap_threshold=0.5,
299298
)
300299
transcription = assignment_result.apply(
301-
{"segments": transcription.segments}
300+
{
301+
"segments": transcription.segments,
302+
"word_segments": transcription.word_segments,
303+
}
302304
)
303305
except FileServiceException as exc:
304306
logger.error("Error reading metadata: %s. Skipping speaker assignment", exc)

src/summary/tests/api/test_api_tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_create_task_returns_task_id(self, mock_time, mock_apply_async, client):
2020
json={
2121
"owner_id": "owner-123",
2222
"recording_filename": "recording.mp4",
23-
"metadata_filename": "metadata.json", # TODO: change
23+
"metadata_filename": "metadata.json",
2424
"email": "user@example.com",
2525
"sub": "sub-123",
2626
"room": "room-abc",

0 commit comments

Comments
 (0)