mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2025-12-12 19:56:06 -05:00
* Update: pull-model only runnable by admins now * Update: switch-model cannot pull models anymore * Update: less technical responses * Update: version increment
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
import { Client, CommandInteraction, ApplicationCommandOptionType } from 'discord.js'
|
|
import { openConfig, SlashCommand, UserCommand } from '../utils/index.js'
|
|
|
|
export const Capacity: SlashCommand = {
|
|
name: 'modify-capacity',
|
|
description: 'maximum amount messages bot will hold for context.',
|
|
|
|
// set available user options to pass to the command
|
|
options: [
|
|
{
|
|
name: 'context-capacity',
|
|
description: 'number of allowed messages to remember',
|
|
type: ApplicationCommandOptionType.Number,
|
|
required: true
|
|
}
|
|
],
|
|
|
|
// Query for message information and set the style
|
|
run: async (client: Client, interaction: CommandInteraction) => {
|
|
// fetch channel and message
|
|
const channel = await client.channels.fetch(interaction.channelId)
|
|
if (!channel || !UserCommand.includes(channel.type)) return
|
|
|
|
// set state of bot chat features
|
|
openConfig(`${interaction.user.username}-config.json`, interaction.commandName, interaction.options.get('context-capacity')?.value)
|
|
|
|
interaction.reply({
|
|
content: `Max message history is now set to \`${interaction.options.get('context-capacity')?.value}\``,
|
|
ephemeral: true
|
|
})
|
|
}
|
|
} |