mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 15:40:57 -07:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type { ContentGenerator } from '../core/contentGenerator.js';
|
|
import { AuthType } from '../core/contentGenerator.js';
|
|
import { getOauthClient } from './oauth2.js';
|
|
import { setupUser } from './setup.js';
|
|
import type { HttpOptions } from './server.js';
|
|
import { CodeAssistServer } from './server.js';
|
|
import type { Config } from '../config/config.js';
|
|
|
|
export async function createCodeAssistContentGenerator(
|
|
httpOptions: HttpOptions,
|
|
authType: AuthType,
|
|
config: Config,
|
|
sessionId?: string,
|
|
): Promise<ContentGenerator> {
|
|
if (
|
|
authType === AuthType.LOGIN_WITH_GOOGLE ||
|
|
authType === AuthType.CLOUD_SHELL
|
|
) {
|
|
const authClient = await getOauthClient(authType, config);
|
|
const userData = await setupUser(authClient);
|
|
return new CodeAssistServer(
|
|
authClient,
|
|
userData.projectId,
|
|
httpOptions,
|
|
sessionId,
|
|
userData.userTier,
|
|
);
|
|
}
|
|
|
|
throw new Error(`Unsupported authType: ${authType}`);
|
|
}
|