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
25 lines
1.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
import {Command} from "../base/command";
|
|
import {Requirements} from "../base/requirements";
|
|
import {Requirement} from "../base/requirement";
|
|
import {Message} from "typescript-telegram-bot-api";
|
|
import {Environment} from "../common/environment";
|
|
import {logError, replyToMessage} from "../util/utils";
|
|
|
|
export class GeminiSetModel extends Command {
|
|
argsMode = "required" as const;
|
|
|
|
title = "/geminiSetModel";
|
|
description = "Set Gemini model";
|
|
|
|
requirements = Requirements.Build(Requirement.BOT_CREATOR);
|
|
|
|
async execute(msg: Message, match?: RegExpExecArray | null): Promise<void> {
|
|
const newModel = match?.[3];
|
|
Environment.setGeminiModel(newModel || Environment.GEMINI_MODEL);
|
|
|
|
const text = newModel ? `Выбрана модель "${newModel}"`
|
|
: `Модель не задана. Будет использоваться стандартная модель "${Environment.GEMINI_MODEL}".`;
|
|
|
|
await replyToMessage({message: msg, text: text}).catch(logError);
|
|
}
|
|
} |