Skip to content

Commit

Permalink
commented get_people_with_speech_samples speech profile endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
josancamon19 committed Sep 20, 2024
1 parent 819188f commit 4344e29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/modal/speech_profile_modal.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def endpoint(uid: str, audio_file: UploadFile = File(...), segments: str = Form(
segments_data = json.loads(segments)
transcript_segments = [TranscriptSegment(**segment) for segment in segments_data]

people = get_people_with_speech_samples(uid)

# people = get_people_with_speech_samples(uid)
people = []
try:
result = classify_segments(audio_file.filename, profile_path, people, transcript_segments)
print(result)
Expand Down

0 comments on commit 4344e29

Please sign in to comment.