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
18 lines
531 B
TypeScript
18 lines
531 B
TypeScript
import {Command} from "../base/command";
|
|
import {logError, replyToMessage} from "../util/utils";
|
|
import {Message} from "typescript-telegram-bot-api";
|
|
|
|
export class SystemInfo extends Command {
|
|
title = "/systemInfo";
|
|
description = "System information";
|
|
|
|
private static systemInfoText: string;
|
|
|
|
static setSystemInfo(info: string) {
|
|
SystemInfo.systemInfoText = info;
|
|
}
|
|
|
|
async execute(msg: Message) {
|
|
await replyToMessage({message: msg, text: SystemInfo.systemInfoText}).catch(logError);
|
|
}
|
|
} |