refactor!: rewrite bot core; add AI (Ollama, Gemini), DB, new commands
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import {ChatCommand} from "../base/chat-command";
|
||||
import {Message} from "typescript-telegram-bot-api";
|
||||
import {logError, randomValue, replyToMessage} from "../util/utils";
|
||||
import {prefixAnswers} from "../db/database";
|
||||
|
||||
export class PrefixResponse extends ChatCommand {
|
||||
regexp: RegExp;
|
||||
|
||||
async execute(msg: Message): Promise<void> {
|
||||
await replyToMessage(msg, randomValue(prefixAnswers)).catch(logError);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user