Compare commits

..

3 Commits

Author SHA1 Message Date
GooeyTuxedo
c52adf3348 Update "/about" for my instance 2023-04-08 11:42:55 -07:00
GooeyTuxedo
dd3e8561b0 Downloaded some other models 2023-04-08 11:42:24 -07:00
GooeyTuxedo
802a95a118 Restart container on exit from unhandled api error 2023-04-08 11:42:03 -07:00
3 changed files with 14 additions and 7 deletions

View File

@ -7,30 +7,34 @@ module.exports = {
const specsFields = [ const specsFields = [
{ {
name: "Processor", name: "Processor",
value: "Intel i7-1065G7 (8) @ 3.900GHz" value: "AMD Ryzen 7 1700X (16) @ 3.950GHz"
}, },
{ {
name: "Memory", name: "Memory",
value: "11 GB RAM" value: "32 GB RAM"
}, },
{ {
name: "Chat Threads", name: "Chat Threads",
value: "7" value: "8"
}, },
{ {
name: "Memory Speed", name: "Memory Speed",
value: "3733 MT/s" value: "2933 MT/s"
},
{
name: "Video Card",
value: "AMD ATI Radeon R9 290 (no ROCm support)"
}, },
{ {
name: "Other", name: "Other",
value: "USB Liveboot\nNo VideoCard on Board!\nSingle Task Only - 256 Max Token Output" value: "Xubuntu 22.04\nSingle Task Only - 256 Max Token Output"
} }
]; ];
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setColor("#FF0000") .setColor("#FF0000")
.setTitle("About rAI") .setTitle("About rAI")
.setDescription(`Latency : ${client.ws.ping}ms\n\nrAI is a bot managed by \`snxraven#8205\` \nRunning GPT4ALL and LLama 7B/7B-native.`) .setDescription(`Latency : ${client.ws.ping}ms\n\nrAI is a bot managed by \`MrTuxedo#0765\` \nRunning GPT4ALL and LLama 7B/7B-native.`)
.addFields(specsFields) .addFields(specsFields)
.setTimestamp() .setTimestamp()
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` }); .setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });

View File

@ -18,7 +18,7 @@ var nThreads = process.env.NTHREADS;
// Set model list we have downloaded // Set model list we have downloaded
// let modelList = ["7B", "7B-native", "gpt4all"] // let modelList = ["7B", "7B-native", "gpt4all"]
let modelList = ["13B", "30B", "65B", "gpt4all", "vicuna"] let modelList = ["7B", "7B-native", "13B", "30B", "gpt4all", "vicuna"]
module.exports = { module.exports = {
name: "create-session", name: "create-session",

View File

@ -2,8 +2,11 @@ version: '3'
services: services:
serge-discord-bot: serge-discord-bot:
container_name: serge-discord-bot container_name: serge-discord-bot
restart: unless-stopped
build: build:
context: . context: .
volumes:
- ${DATA_DIR}/rai-bot:/app/cache
environment: environment:
- NODE_ENV=production - NODE_ENV=production
## Env Vars for rAi chatbot ## Env Vars for rAi chatbot