* fix #1025

* redirect verb should be able to redirect to a new websocket endpoint
This commit is contained in:
Dave Horton
2025-01-09 15:45:20 -05:00
committed by GitHub
parent fcefa1ff31
commit 6bad1a22f3
2 changed files with 13 additions and 3 deletions

View File

@@ -41,9 +41,7 @@ class TaskLlm extends Task {
switch (this.vendor) {
case 'openai':
case 'microsoft':
if (this.model.startsWith('gpt-4o-realtime')) {
llm = new TaskLlmOpenAI_S2S(this.logger, this.data, this);
}
llm = new TaskLlmOpenAI_S2S(this.logger, this.data, this);
break;
case 'voiceagent':