From 4ce3229b5ccc28a6f99f5ab56789ecf686ca138a Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Thu, 12 Feb 2026 18:22:01 +0300 Subject: [PATCH] (chore): change Info command base command from ChatCommand to Command --- src/commands/info.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/info.ts b/src/commands/info.ts index 1b6f862..e89bb25 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -5,8 +5,9 @@ import {Environment} from "../common/environment"; import {boolToEmoji, getCurrentModel, getCurrentModelCapabilities, logError, replyToMessage} from "../util/utils"; import {AiModelCapabilities} from "../model/ai-model-capabilities"; import {AiProvider} from "../model/ai-provider"; +import {Command} from "../base/command"; -export class Info extends ChatCommand { +export class Info extends Command { command = ["info", "v"]; title = "/info";