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
36 lines
1.3 KiB
TypeScript
36 lines
1.3 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 {mistralAi} from "../index";
|
|
import {logError, oldReplyToMessage, replyToMessage} from "../util/utils";
|
|
|
|
export class MistralListModels extends Command {
|
|
title = "/mistralListModels";
|
|
description = "List all Mistral models";
|
|
|
|
requirements = Requirements.Build(Requirement.BOT_CREATOR);
|
|
|
|
async execute(msg: Message): Promise<void> {
|
|
try {
|
|
const listResponse = await mistralAi.models.list();
|
|
console.log(listResponse);
|
|
|
|
const modelsString = listResponse.data
|
|
.sort((a, b) => a.name.localeCompare(b.name))
|
|
.map(e => `${e.id}`)
|
|
.join("\n");
|
|
|
|
const text = "Доступные модели:\n\n" + "<blockquote expandable>" + modelsString + "</blockquote>";
|
|
|
|
await replyToMessage({
|
|
message: msg,
|
|
text: text,
|
|
parse_mode: "HTML"
|
|
});
|
|
} catch (e) {
|
|
logError(e);
|
|
await oldReplyToMessage(msg, "Не получилось загрузить список моделей").catch(logError);
|
|
}
|
|
}
|
|
} |