Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom Realtime Model Selection #92

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

AnasMations
Copy link

This PR introduces the ability to select a custom OpenAI realtime model in the RealtimeClient. Users can now specify the desired model for more flexibility and tailored API usage.

Changes:

  • Added support for passing a custom model name to RealtimeClient through the updateSession function

Let me know if there are any further changes or enhancements needed!

@jjmlovesgit
Copy link

An excellent and most valuable feature -- Recognition and support to Anas for this work!

@scottfits
Copy link

@khorwood-openai or @jhills20 - would you mind taking a look at this?

@mrmuke
Copy link

mrmuke commented Jan 13, 2025

+1

Comment on lines +225 to +229
if (!model) {
this.realtimeModel = 'gpt-4o-realtime-preview-2024-10-01';
} else {
this.realtimeModel = model;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if I'm not wrong, it can be done like this? this.realtimeModel = model || 'gpt-4o-realtime-preview-2024-10-01';

@devpras22
Copy link

@AnasMations

I’ve been testing your PR #92, which adds support for passing a custom model name via updateSession(), but I’m running into an issue where OpenAI still defaults to gpt-4o-realtime-preview-2024-10-01, even when explicitly setting gpt-4o-mini-realtime-preview-2024-12-17.

🔍 Findings So Far:

1️⃣ Model Name Appears in realtimeModel But Not in Active Session
• When I initialize RealtimeClient({ model: "gpt-4o-mini-realtime-preview-2024-12-17" }), the model correctly appears in client.realtimeModel.
• However, it does not get applied in sessionConfig, meaning OpenAI might not be using it during session creation.

2️⃣ Explicitly Calling updateSession({ model: "gpt-4o-mini-realtime-preview-2024-12-17" }) Still Doesn’t Work
• Even after forcing client.sessionConfig.model = client.realtimeModel and calling updateSession(client.sessionConfig), OpenAI continues defaulting to gpt-4o-realtime-preview-2024-10-01.
• Logs confirm that the session is updating, but the API dashboard still shows the old model being used.

3️⃣ Potential Issue with WebSocket Model Application
• OpenAI might not be honoring the model field in updateSession().
• It’s unclear if the WebSocket API requires a separate "session.update" event for model selection rather than updateSession().

🚀 Next Steps

Can you confirm if:
• OpenAI actually allows model switching via updateSession()?
• A direct WebSocket message (client.realtime.send("session.update", {...})) might be required instead?
• There’s a known issue with session config updates not applying to active requests?

Any guidance would be appreciated! Thanks for your work on this PR—it’s a much-needed feature, and I’d love to help get it fully functional.

@devpras22
Copy link

devpras22 commented Feb 21, 2025

did this actually work for people? is model selection actually functional?

I hardcoded the 4o mini model here - if (!model) {
this.realtimeModel = 'gpt-4o-mini-realtime-preview-2024-12-17';
} else {
this.realtimeModel = model;
} - BUT STILL it reverts to the default 4o model (the old one from 24/10/01) as seen on the openai dashboard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants