Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions deep-sea-stories/packages/backend/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,7 @@ export const configSchema = z.object({
GOOGLE_CLOUD_LOCATION: z.string().optional(),
});

// WARNING: gemini-live-2.5-flash-preview will stop working on Dec 9!!
// https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash
// However, changing this to gemini-2.5-flash-native-audio-preview-09-2025
// somehow breaks the greeting (WTF)
export const GEMINI_MODEL = 'gemini-2.5-flash-native-audio-preview-09-2025';
// export const GEMINI_MODEL = 'gemini-live-2.5-flash-preview-native-audio';
export const GEMINI_MODEL = 'gemini-2.5-flash-native-audio-preview-12-2025';

export const stories: Story[] = JSON.parse(
fs.readFileSync(join(__dirname, 'prompts', 'stories.json'), 'utf8'),
Expand Down