mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
16 lines
535 B
TypeScript
16 lines
535 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export const DEFAULT_QWEN_MODEL = 'qwen3-coder-plus';
|
|
// We do not have a fallback model for now, but note it here anyway.
|
|
export const DEFAULT_QWEN_FLASH_MODEL = 'qwen3-coder-flash';
|
|
|
|
export const DEFAULT_GEMINI_MODEL = 'qwen3-coder-plus';
|
|
export const DEFAULT_GEMINI_FLASH_MODEL = 'gemini-2.5-flash';
|
|
export const DEFAULT_GEMINI_FLASH_LITE_MODEL = 'gemini-2.5-flash-lite';
|
|
|
|
export const DEFAULT_GEMINI_EMBEDDING_MODEL = 'gemini-embedding-001';
|