2025-04-21 03:33:39 +08:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export * from './src/index.js';
|
2025-08-28 09:39:45 +08:00
|
|
|
export { Storage } from './src/config/storage.js';
|
2025-06-13 16:25:42 +08:00
|
|
|
export {
|
|
|
|
|
DEFAULT_GEMINI_MODEL,
|
|
|
|
|
DEFAULT_GEMINI_FLASH_MODEL,
|
2025-08-21 16:04:04 +08:00
|
|
|
DEFAULT_GEMINI_FLASH_LITE_MODEL,
|
2025-06-13 16:25:42 +08:00
|
|
|
DEFAULT_GEMINI_EMBEDDING_MODEL,
|
|
|
|
|
} from './src/config/models.js';
|
2025-08-12 06:09:47 +08:00
|
|
|
export { logIdeConnection } from './src/telemetry/loggers.js';
|
|
|
|
|
export {
|
|
|
|
|
IdeConnectionEvent,
|
|
|
|
|
IdeConnectionType,
|
|
|
|
|
} from './src/telemetry/types.js';
|
2025-08-14 04:37:08 +08:00
|
|
|
export { makeFakeConfig } from './src/test-utils/config.js';
|
2025-08-28 11:22:21 +08:00
|
|
|
export * from './src/utils/pathReader.js';
|