Spaces:
Paused
Paused
File size: 12,835 Bytes
4e3fbe0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
import { Client, Events, GatewayIntentBits, MessageType, Partials } from "discord.js";
import { Logger, LogLevel } from "meklog";
import dotenv from "dotenv";
import axios from "axios";
dotenv.config();
const model = process.env.MODEL;
const servers = process.env.OLLAMA.split(",").map(url => ({ url: new URL(url), available: true }));
const channels = process.env.CHANNELS.split(",");
if (servers.length == 0) {
throw new Error("No servers available");
}
let log;
process.on("message", data => {
if (data.shardID) client.shardID = data.shardID;
if (data.logger) log = new Logger(data.logger);
});
const logError = (error) => {
if (error.response) {
let str = `Error ${error.response.status} ${error.response.statusText}: ${error.request.method} ${error.request.path}`;
if (error.response.data?.error) {
str += ": " + error.response.data.error;
}
log(LogLevel.Error, str);
} else {
log(LogLevel.Error, error);
}
};
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
async function makeRequest(path, method, data) {
while (servers.filter(server => server.available).length == 0) {
// wait until a server is available
await new Promise(res => setTimeout(res, 1000));
}
let error = null;
// randomly loop through the servers available, don't shuffle the actual array because we want to be notified of any updates
let order = new Array(servers.length).fill().map((_, i) => i);
if (randomServer) order = shuffleArray(order);
for (const j in order) {
if (!order.hasOwnProperty(j)) continue;
const i = order[j];
// try one until it succeeds
try {
// make a request to ollama
if (!servers[i].available) continue;
const url = new URL(servers[i].url); // don't modify the original URL
servers[i].available = false;
if (path.startsWith("/")) path = path.substring(1);
if (!url.pathname.endsWith("/")) url.pathname += "/"; // safety
url.pathname += path;
log(LogLevel.Debug, `Making request to ${url}`);
const result = await axios({
method, url, data,
responseType: "text"
});
servers[i].available = true;
return result.data;
} catch (err) {
servers[i].available = true;
error = err;
logError(error);
}
}
if (!error) {
throw new Error("No servers available");
}
throw error;
}
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.MessageContent
],
allowedMentions: { users: [], roles: [], repliedUser: false },
partials: [
Partials.Channel
]
});
client.once(Events.ClientReady, async () => {
await client.guilds.fetch();
client.user.setPresence({ activities: [], status: "online" });
});
const messages = {};
// split text so it fits in a Discord message
function splitText(str, length) {
// trim matches different characters to \s
str = str
.replace(/\r\n/g, "\n").replace(/\r/g, "\n")
.replace(/^\s+|\s+$/g, "");
const segments = [];
let segment = "";
let word, suffix;
function appendSegment() {
segment = segment.replace(/^\s+|\s+$/g, "");
if (segment.length > 0) {
segments.push(segment);
segment = "";
}
}
// match a word
while ((word = str.match(/^[^\s]*(?:\s+|$)/)) != null) {
suffix = "";
word = word[0];
if (word.length == 0) break;
if (segment.length + word.length > length) {
// prioritise splitting by newlines over other whitespaces
if (segment.includes("\n")) {
// append up all but last paragraph
const beforeParagraph = segment.match(/^.*\n/s);
if (beforeParagraph != null) {
const lastParagraph = segment.substring(beforeParagraph[0].length, segment.length);
segment = beforeParagraph[0];
appendSegment();
segment = lastParagraph;
continue;
}
}
appendSegment();
// if word is larger than the split length
if (word.length > length) {
word = word.substring(0, length);
if (length > 1 && word.match(/^[^\s]+$/)) {
// try to hyphenate word
word = word.substring(0, word.length - 1);
suffix = "-";
}
}
}
str = str.substring(word.length, str.length);
segment += word + suffix;
}
appendSegment();
return segments;
}
function getBoolean(str) {
return !!str && str != "false" && str != "no" && str != "off" && str != "0";
}
function parseJSONMessage(str) {
return str.split(/[\r\n]+/g).map(function(line) {
const result = JSON.parse(`"${line}"`);
if (typeof result !== "string") throw new "Invalid syntax in .env file";
return result;
}).join("\n");
}
function parseEnvString(str) {
return typeof str === "string" ?
parseJSONMessage(str).replace(/<date>/gi, new Date().toUTCString()) : null;
}
const customSystemMessage = parseEnvString(process.env.SYSTEM);
const useCustomSystemMessage = getBoolean(process.env.USE_SYSTEM) && !!customSystemMessage;
const useModelSystemMessage = getBoolean(process.env.USE_MODEL_SYSTEM);
const showStartOfConversation = getBoolean(process.env.SHOW_START_OF_CONVERSATION);
const randomServer = getBoolean(process.env.RANDOM_SERVER);
let modelInfo = null;
const initialPrompt = parseEnvString(process.env.INITIAL_PROMPT);
const useInitialPrompt = getBoolean(process.env.USE_INITIAL_PROMPT) && !!initialPrompt;
const requiresMention = getBoolean(process.env.REQUIRES_MENTION);
async function replySplitMessage(replyMessage, content) {
const responseMessages = splitText(content, 2000).map(content => ({ content }));
const replyMessages = [];
for (let i = 0; i < responseMessages.length; ++i) {
if (i == 0) {
replyMessages.push(await replyMessage.reply(responseMessages[i]));
} else {
replyMessages.push(await replyMessage.channel.send(responseMessages[i]));
}
}
return replyMessages;
}
client.on(Events.MessageCreate, async message => {
let typing = false;
try {
await message.fetch();
// return if not in the right channel
const channelID = message.channel.id;
if (message.guild && !channels.includes(channelID)) return;
// return if user is a bot, or non-default message
if (!message.author.id) return;
if (message.author.bot || message.author.id == client.user.id) return;
const botRole = message.guild?.members?.me?.roles?.botRole;
const myMention = new RegExp(`<@((!?${client.user.id}${botRole ? `)|(&${botRole.id}` : ""}))>`, "g"); // RegExp to match a mention for the bot
if (typeof message.content !== "string" || message.content.length == 0) {
return;
}
let context = null;
if (message.type == MessageType.Reply) {
const reply = await message.fetchReference();
if (!reply) return;
if (reply.author.id != client.user.id) return;
if (messages[channelID] == null) return;
if ((context = messages[channelID][reply.id]) == null) return;
} else if (message.type != MessageType.Default) {
return;
}
// fetch info about the model like the template and system message
if (modelInfo == null) {
modelInfo = (await makeRequest("/api/show", "post", {
name: model
}));
if (typeof modelInfo === "string") modelInfo = JSON.parse(modelInfo);
if (typeof modelInfo !== "object") throw "failed to fetch model information";
}
const systemMessages = [];
if (useModelSystemMessage && modelInfo.system) {
systemMessages.push(modelInfo.system);
}
if (useCustomSystemMessage) {
systemMessages.push(customSystemMessage);
}
// join them together
const systemMessage = systemMessages.join("\n\n");
// deal with commands first before passing to LLM
let userInput = message.content
.replace(new RegExp("^\s*" + myMention.source, ""), "").trim();
// may change this to slash commands in the future
// i'm using regular text commands currently because the bot interacts with text content anyway
if (userInput.startsWith(".")) {
const args = userInput.substring(1).split(/\s+/g);
const cmd = args.shift();
switch (cmd) {
case "reset":
case "clear":
if (messages[channelID] != null) {
// reset conversation
const cleared = messages[channelID].amount;
// clear
delete messages[channelID];
if (cleared > 0) {
await message.reply({ content: `Cleared conversation of ${cleared} messages` });
break;
}
}
await message.reply({ content: "No messages to clear" });
break;
case "help":
case "?":
case "h":
await message.reply({ content: "Commands:\n- `.reset` `.clear`\n- `.help` `.?` `.h`\n- `.ping`\n- `.model`\n- `.system`" });
break;
case "model":
await message.reply({
content: `Current model: ${model}`
});
break;
case "system":
await replySplitMessage(message, `System message:\n\n${systemMessage}`);
break;
case "ping":
// get ms difference
const beforeTime = Date.now();
const reply = await message.reply({ content: "Ping" });
const afterTime = Date.now();
const difference = afterTime - beforeTime;
await reply.edit({ content: `Ping: ${difference}ms` });
break;
case "":
break;
default:
await message.reply({ content: "Unknown command, type `.help` for a list of commands" });
break;
}
return;
}
if (message.type == MessageType.Default && (requiresMention && message.guild && !message.content.match(myMention))) return;
if (message.guild) {
await message.guild.channels.fetch();
await message.guild.members.fetch();
}
userInput = userInput
.replace(myMention, "")
.replace(/<#([0-9]+)>/g, (_, id) => {
if (message.guild) {
const chn = message.guild.channels.cache.get(id);
if (chn) return `#${chn.name}`;
}
return "#unknown-channel";
})
.replace(/<@!?([0-9]+)>/g, (_, id) => {
if (id == message.author.id) return message.author.username;
if (message.guild) {
const mem = message.guild.members.cache.get(id);
if (mem) return `@${mem.user.username}`;
}
return "@unknown-user";
})
.replace(/<:([a-zA-Z0-9_]+):([0-9]+)>/g, (_, name) => {
return `emoji:${name}:`;
})
.trim();
if (userInput.length == 0) return;
// create conversation
if (messages[channelID] == null) {
messages[channelID] = { amount: 0, last: null };
}
// log user's message
log(LogLevel.Debug, `${message.guild ? `#${message.channel.name}` : "DMs"} - ${message.author.username}: ${userInput}`);
// start typing
typing = true;
await message.channel.sendTyping();
let typingInterval = setInterval(async () => {
try {
await message.channel.sendTyping();
} catch (error) {
if (typingInterval != null) {
clearInterval(typingInterval);
}
typingInterval = null;
}
}, 7000);
let response;
try {
// context if the message is not a reply
if (context == null) {
context = messages[channelID].last;
}
if (useInitialPrompt && messages[channelID].amount == 0) {
userInput = `${initialPrompt}\n\n${userInput}`;
log(LogLevel.Debug, "Adding initial prompt to message");
}
// make request to model
response = (await makeRequest("/api/generate", "post", {
model: model,
prompt: userInput,
system: systemMessage,
context
}));
if (typeof response != "string") {
log(LogLevel.Debug, response);
throw new TypeError("response is not a string, this may be an error with ollama");
}
response = response.split("\n").filter(e => !!e).map(e => {
return JSON.parse(e);
});
} catch (error) {
if (typingInterval != null) {
clearInterval(typingInterval);
}
typingInterval = null;
throw error;
}
if (typingInterval != null) {
clearInterval(typingInterval);
}
typingInterval = null;
let responseText = response.map(e => e.response).filter(e => e != null).join("").trim();
if (responseText.length == 0) {
responseText = "(No response)";
}
log(LogLevel.Debug, `Response: ${responseText}`);
const prefix = showStartOfConversation && messages[channelID].amount == 0 ?
"> This is the beginning of the conversation, type `.help` for help.\n\n" : "";
// reply (will automatically stop typing)
const replyMessageIDs = (await replySplitMessage(message, `${prefix}${responseText}`)).map(msg => msg.id);
// add response to conversation
context = response.filter(e => e.done && e.context)[0].context;
for (let i = 0; i < replyMessageIDs.length; ++i) {
messages[channelID][replyMessageIDs[i]] = context;
}
messages[channelID].last = context;
++messages[channelID].amount;
} catch (error) {
if (typing) {
try {
// return error
await message.reply({ content: "Error, please check the console" });
} catch (ignored) {}
}
logError(error);
}
});
client.login(process.env.TOKEN);
|