Skip to content

Commit bfc0ce0

Browse files
authored
chore: minor fixup of console room name (#4433)
1 parent 2664220 commit bfc0ce0

File tree

2 files changed

+2
-2
lines changed
  • livekit-agents/livekit/agents/ipc
  • livekit-plugins/livekit-plugins-assemblyai/livekit/plugins/assemblyai

2 files changed

+2
-2
lines changed

livekit-agents/livekit/agents/ipc/mock_room.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def create_mock_room() -> Any:
1111
MockRoom.local_participant = create_autospec(rtc.LocalParticipant, instance=True)
1212
MockRoom._info = create_autospec(rtc.room.proto_room.RoomInfo, instance=True) # type: ignore
1313
MockRoom.isconnected.return_value = True
14-
MockRoom.name = "mock_room"
14+
MockRoom.name = "console"
1515
MockRoom.metadata = ""
1616
MockRoom.num_participants = 2
1717
MockRoom.num_publishers = 2

livekit-plugins/livekit-plugins-assemblyai/livekit/plugins/assemblyai/stt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __init__(
105105

106106
@property
107107
def model(self) -> str:
108-
return "Universal-Streaming"
108+
return self._opts.speech_model
109109

110110
@property
111111
def provider(self) -> str:

0 commit comments

Comments
 (0)