From 34e1ed8cb372d4d1e2d4167332a16a14d34d96c4 Mon Sep 17 00:00:00 2001 From: Muhammad Hamza Khan Date: Sat, 28 Feb 2026 02:35:09 +0500 Subject: [PATCH] Update REALTIME_MODEL constant to 'gpt-realtime-1.5' for improved API functionality --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 43ecfa9..544a5fa 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -8,7 +8,7 @@ export const DEFAULT_AGENT_MODEL = 'gpt-4o-mini'; export const REALTIME_VOICE = 'marin'; // the model to use for the realtime api -export const REALTIME_MODEL = 'gpt-realtime'; +export const REALTIME_MODEL = 'gpt-realtime-1.5'; // the type of the chatbot embodiment export const CHATBOT_EMBODIMENT_TYPE = 'chatBot';