Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/cli/src/i18n/locales/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,8 @@ export default {
// ============================================================================
// Commands - Model
// ============================================================================
'Switch the model for this session': 'Modell für diese Sitzung wechseln',
'Switch the model for this session (--fast for suggestion model)':
'Modell für diese Sitzung wechseln (--fast für Vorschlagsmodell)',
'Set a lighter model for prompt suggestions and speculative execution':
'Leichteres Modell für Eingabevorschläge und spekulative Ausführung festlegen',
'Content generator configuration not available.':
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/src/i18n/locales/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,8 @@ export default {
// ============================================================================
// Commands - Model
// ============================================================================
'Switch the model for this session': 'Switch the model for this session',
'Switch the model for this session (--fast for suggestion model)':
'Switch the model for this session (--fast for suggestion model)',
'Set a lighter model for prompt suggestions and speculative execution':
'Set a lighter model for prompt suggestions and speculative execution',
'Content generator configuration not available.':
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/src/i18n/locales/ja.js
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,8 @@ export default {
'Failed to generate summary - no text content received from LLM response':
'サマリーの生成に失敗 - LLMレスポンスからテキストコンテンツを受信できませんでした',
// Model
'Switch the model for this session': 'このセッションのモデルを切り替え',
'Switch the model for this session (--fast for suggestion model)':
'このセッションのモデルを切り替え(--fast で提案モデルを設定)',
'Set a lighter model for prompt suggestions and speculative execution':
'プロンプト提案と投機的実行用の軽量モデルを設定',
'Content generator configuration not available.':
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/src/i18n/locales/pt.js
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,8 @@ export default {
// ============================================================================
// Commands - Model
// ============================================================================
'Switch the model for this session': 'Trocar o modelo para esta sessão',
'Switch the model for this session (--fast for suggestion model)':
'Trocar o modelo para esta sessão (--fast para modelo de sugestões)',
'Set a lighter model for prompt suggestions and speculative execution':
'Definir modelo mais leve para sugestões de prompt e execução especulativa',
'Content generator configuration not available.':
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/src/i18n/locales/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,8 @@ export default {
// ============================================================================
// Команды - Модель
// ============================================================================
'Switch the model for this session': 'Переключение модели для этой сессии',
'Switch the model for this session (--fast for suggestion model)':
'Переключение модели для этой сессии (--fast для модели подсказок)',
'Set a lighter model for prompt suggestions and speculative execution':
'Установить облегчённую модель для подсказок и спекулятивного выполнения',
'Content generator configuration not available.':
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/src/i18n/locales/zh.js
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,8 @@ export default {
// ============================================================================
// Commands - Model
// ============================================================================
'Switch the model for this session': '切换此会话的模型',
'Switch the model for this session (--fast for suggestion model)':
'切换此会话的模型(--fast 可设置建议模型)',
'Set a lighter model for prompt suggestions and speculative execution':
'设置用于输入建议和推测执行的轻量模型',
'Content generator configuration not available.': '内容生成器配置不可用',
Expand Down
4 changes: 3 additions & 1 deletion packages/cli/src/ui/commands/modelCommand.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ describe('modelCommand', () => {

it('should have the correct name and description', () => {
expect(modelCommand.name).toBe('model');
expect(modelCommand.description).toBe('Switch the model for this session');
expect(modelCommand.description).toBe(
'Switch the model for this session (--fast for suggestion model)',
);
});

it('should return error when config is not available', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/ui/commands/modelCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { getPersistScopeForModelSelection } from '../../config/modelProvidersSco
export const modelCommand: SlashCommand = {
name: 'model',
get description() {
return t('Switch the model for this session');
return t('Switch the model for this session (--fast for suggestion model)');
},
kind: CommandKind.BUILT_IN,
completion: async (_context, partialArg) => {
Expand Down
Loading