From 7b967c7e16608ea75df31403de389901e88bf576 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Thu, 26 Jun 2025 10:56:20 +0200 Subject: [PATCH] fix(ng-dev): default model to pro Switches from using the `flash` model to the `pro` one by default. --- ng-dev/ai/consts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ng-dev/ai/consts.ts b/ng-dev/ai/consts.ts index 43a83d29f..8e30c8d19 100644 --- a/ng-dev/ai/consts.ts +++ b/ng-dev/ai/consts.ts @@ -7,7 +7,7 @@ */ /** Default model to use for AI-based scripts. */ -export const DEFAULT_MODEL = 'gemini-2.5-flash'; +export const DEFAULT_MODEL = 'gemini-2.5-pro'; /** Default temperature for AI-based scripts. */ export const DEFAULT_TEMPERATURE = 0.1;