mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
23 lines
647 B
TypeScript
23 lines
647 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export * from './src/index.js';
|
|
export { Storage } from './src/config/storage.js';
|
|
export {
|
|
DEFAULT_GEMINI_MODEL,
|
|
DEFAULT_GEMINI_FLASH_MODEL,
|
|
DEFAULT_GEMINI_FLASH_LITE_MODEL,
|
|
DEFAULT_GEMINI_EMBEDDING_MODEL,
|
|
} from './src/config/models.js';
|
|
export { logIdeConnection } from './src/telemetry/loggers.js';
|
|
export {
|
|
IdeConnectionEvent,
|
|
IdeConnectionType,
|
|
} from './src/telemetry/types.js';
|
|
export { getIdeTrust } from './src/utils/ide-trust.js';
|
|
export { makeFakeConfig } from './src/test-utils/config.js';
|
|
export * from './src/utils/pathReader.js';
|