Files
gemini-cli/packages/cli/src/ui/commands/modelCommand.ts
2025-09-23 16:50:09 +00:00

18 lines
373 B
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { CommandKind, type SlashCommand } from './types.js';
export const modelCommand: SlashCommand = {
name: 'model',
description: 'Opens a dialog to configure the model',
kind: CommandKind.BUILT_IN,
action: async () => ({
type: 'dialog',
dialog: 'model',
}),
};