From f670626cf7e7f035563cd1acbad691466dc998c2 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Thu, 22 May 2025 08:12:58 -0400 Subject: [PATCH] google gemini set default model to models/gemini-2.0-flash-live-001 --- lib/tasks/llm/llms/google_s2s.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/llm/llms/google_s2s.js b/lib/tasks/llm/llms/google_s2s.js index a2aace3f..415ad26f 100644 --- a/lib/tasks/llm/llms/google_s2s.js +++ b/lib/tasks/llm/llms/google_s2s.js @@ -33,7 +33,7 @@ class TaskLlmGoogle_S2S extends Task { this.vendor = this.parent.vendor; this.vendor = this.parent.vendor; - this.model = this.parent.model || 'gemini-2o'; + this.model = this.parent.model || 'models/gemini-2.0-flash-live-001'; this.auth = this.parent.auth; this.connectionOptions = this.parent.connectOptions;