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
12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
import {Command} from "../base/command";
|
|
import {Message} from "typescript-telegram-bot-api";
|
|
import {getUptime, logError, oldSendMessage} from "../util/utils";
|
|
|
|
export class Uptime extends Command {
|
|
title = "/uptime";
|
|
description = "Bot's uptime";
|
|
|
|
async execute(msg: Message): Promise<void> {
|
|
await oldSendMessage(msg, getUptime()).catch(logError);
|
|
}
|
|
} |