a736f786c2
- add /openai (/chatgpt) chat command using OpenAI Responses API (streaming + incremental edits) - add /openAIListModels, /openAIGetModel, /openAISetModel - introduce base Command class and migrate non-chat commands to it - wire OpenAI client + env vars (OPENAI_API_KEY, OPENAI_MODEL) - bump deps (@google/genai, systeminformation, @types/node) and add openai
19 lines
547 B
TypeScript
19 lines
547 B
TypeScript
import {Command} from "../base/command";
|
|
import {Message} from "typescript-telegram-bot-api";
|
|
import {Requirements} from "../base/requirements";
|
|
import {Requirement} from "../base/requirement";
|
|
import {bot} from "../index";
|
|
|
|
export class Leave extends Command {
|
|
title = "/leave";
|
|
description = "Bot will leave current chat";
|
|
|
|
requirements = Requirements.Build(
|
|
Requirement.BOT_ADMIN,
|
|
Requirement.CHAT,
|
|
);
|
|
|
|
async execute(msg: Message): Promise<void> {
|
|
await bot.leaveChat({chat_id: msg.chat.id});
|
|
}
|
|
} |