There was an error while loading. Please reload this page.
1 parent da9b125 commit d5dca80Copy full SHA for d5dca80
1 file changed
plugins/google/src/beta/realtime/realtime_api.ts
@@ -684,9 +684,9 @@ export class RealtimeSession extends llm.RealtimeSession {
684
async generateReply(instructions?: string): Promise<llm.GenerationCreatedEvent> {
685
if (this.options.model === 'gemini-3.1-flash-live-preview') {
686
this.#logger.warn(
687
- 'generate_reply is not compatible with gemini-3.1-flash-live-preview and will be ignored.',
+ 'generateReply is not compatible with gemini-3.1-flash-live-preview and will be ignored.',
688
);
689
- throw new Error("generate_reply is not compatible with 'gemini-3.1-flash-live-preview'");
+ throw new Error("generateReply is not compatible with 'gemini-3.1-flash-live-preview'");
690
}
691
692
if (this.pendingGenerationFut && !this.pendingGenerationFut.done) {
0 commit comments