From c47ec178cec5f85fa4fcce3ed7b3cb7ec364b86f Mon Sep 17 00:00:00 2001 From: Kateryna <ÐлфеуÐkateryna.vynokurova@univisia.com> Date: Fri, 12 Sep 2025 16:54:23 +0300 Subject: [PATCH] add language parameter to InputAudioTranscription --- python/rtclient/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/rtclient/models.py b/python/rtclient/models.py index 1a927cd..01c9508 100644 --- a/python/rtclient/models.py +++ b/python/rtclient/models.py @@ -45,6 +45,7 @@ class FunctionToolChoice(ModelWithDefaults): class InputAudioTranscription(BaseModel): model: Literal["whisper-1"] + language: Optional[str] class ClientMessageBase(ModelWithDefaults):