Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/compiler/src/_base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/src/lib/lcp/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading