File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/hume/empathic_voice/chat Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 99from typing_extensions import deprecated
1010from contextlib import asynccontextmanager
1111
12- from hume .empathic_voice .types .session_settings_message import SessionSettingsMessage
13-
1412from ...core .events import EventEmitterMixin , EventType
1513from ...core .pydantic_utilities import parse_obj_as
1614from ..types .assistant_input import AssistantInput
@@ -148,7 +146,7 @@ async def send_audio_input(self, message: AudioInput) -> None:
148146 await self .send_publish (message )
149147
150148 @deprecated ("Use send_publish instead." )
151- async def send_session_settings (self , message : SessionSettingsMessage ) -> None :
149+ async def send_session_settings (self , message : SessionSettings ) -> None :
152150 await self .send_publish (message )
153151
154152 @deprecated ("Use send_publish instead." )
@@ -240,7 +238,7 @@ def send_audio_input(self, message: AudioInput) -> None:
240238 self .send_publish (message )
241239
242240 @deprecated ("Use send_publish instead." )
243- def send_session_settings (self , message : SessionSettingsMessage ) -> None :
241+ def send_session_settings (self , message : SessionSettings ) -> None :
244242 self .send_publish (message )
245243
246244 @deprecated ("Use send_publish instead." )
You can’t perform that action at this time.
0 commit comments