mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 01:07:46 +00:00
11 lines
335 B
TypeScript
11 lines
335 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export const QWEN_CODE_COMPANION_EXTENSION_NAME = 'Qwen Code Companion';
|
|
export const IDE_MAX_OPEN_FILES = 10;
|
|
export const IDE_MAX_SELECTED_TEXT_LENGTH = 16384; // 16 KiB limit
|
|
export const IDE_REQUEST_TIMEOUT_MS = 10 * 60 * 1000; // 10 minutes
|