diff --git a/packages/compiler/src/_base.ts b/packages/compiler/src/_base.ts index 276b214f2..bb1f68ee2 100644 --- a/packages/compiler/src/_base.ts +++ b/packages/compiler/src/_base.ts @@ -71,7 +71,7 @@ export type CompilerParams = { * If set to an object, the compiler will use the model(s) specified in the object: * * - The key is a string that represents the source and target locales, separated by a colon (e.g., `"en:es"`). - * - The value is a string that represents the LLM provider and model, separated by a colon (e.g., `"google:gemini-2.0-flash"`). + * - The value is a string that represents the LLM provider and model, separated by a colon (e.g., `"google:gemini-2.5-flash"`). * * You can use `*` as a wildcard to match any locale. * diff --git a/packages/compiler/src/lib/lcp/api/index.ts b/packages/compiler/src/lib/lcp/api/index.ts index 6b7a1b8cf..0076952a1 100644 --- a/packages/compiler/src/lib/lcp/api/index.ts +++ b/packages/compiler/src/lib/lcp/api/index.ts @@ -289,7 +289,7 @@ export class LCPAPI { * Instantiates an AI model based on provider and model ID. * Includes CI/CD API key checks. * @param providerId The ID of the AI provider (e.g., "groq", "google"). - * @param modelId The ID of the specific model (e.g., "llama3-8b-8192", "gemini-2.0-flash"). + * @param modelId The ID of the specific model (e.g., "llama3-8b-8192", "gemini-2.5-flash"). * @param targetLocale The target locale being translated to (for logging/error messages). * @returns An instantiated AI LanguageModel. * @throws Error if the provider is not supported or API key is missing in CI/CD.