Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions livekit-agents/livekit/agents/voice/transcription/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from livekit import rtc

from ...utils import shortuuid


def find_micro_track_id(room: rtc.Room, identity: str) -> str:
p: rtc.RemoteParticipant | rtc.LocalParticipant | None = room.remote_participants.get(identity)
Expand All @@ -24,11 +22,3 @@ def find_micro_track_id(room: rtc.Room, identity: str) -> str:
raise ValueError(f"participant {identity} does not have a microphone track")

return track_id


def segment_uuid() -> str:
return shortuuid("SG_")


def speech_uuid() -> str:
return shortuuid("SP_")
Loading