120 lines
No EOL
3.1 KiB
JavaScript
120 lines
No EOL
3.1 KiB
JavaScript
const {ApplicationCommandOptionType} = require('discord.js');
|
|
|
|
const commands = [
|
|
{
|
|
name: 'gptrequest',
|
|
description: 'Make a request to the GPT-4 API',
|
|
options: [
|
|
{
|
|
name: 'question',
|
|
description: 'The question you want to ask to the API',
|
|
type: ApplicationCommandOptionType.String,
|
|
required: true,
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
name: 'quickgpt',
|
|
description: 'Make a quicker request to the GPT-3.5 API',
|
|
options: [
|
|
{
|
|
name: 'question',
|
|
description: 'The question you want to ask to the API',
|
|
type: ApplicationCommandOptionType.String,
|
|
required: true,
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
name : 'info',
|
|
description : 'utilise pas cette commande fdp',
|
|
},
|
|
|
|
{
|
|
name : 'createconv',
|
|
description : 'Create a new conversation',
|
|
options : [
|
|
{
|
|
name : 'name',
|
|
description : 'The name of the conversation',
|
|
type : ApplicationCommandOptionType.String,
|
|
required : true,
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
name : 'addconv',
|
|
description : 'Add a conversation to the database',
|
|
options : [
|
|
{
|
|
name : 'name',
|
|
description : 'The name of the conversation',
|
|
type : ApplicationCommandOptionType.String,
|
|
required : true,
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
name : 'delconv',
|
|
description : 'Delete a conversation from the database',
|
|
options : [
|
|
{
|
|
name : 'name',
|
|
description : 'The name of the conversation',
|
|
type : ApplicationCommandOptionType.String,
|
|
required : true,
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
name : 'listconvs',
|
|
description : 'List all the conversations in the database',
|
|
},
|
|
|
|
{
|
|
name : 'addmsg',
|
|
description : 'Add a message to a conversation',
|
|
options : [
|
|
{
|
|
name : 'name',
|
|
description : 'The name of the conversation',
|
|
type : ApplicationCommandOptionType.String,
|
|
required : true,
|
|
},
|
|
{
|
|
name : 'message',
|
|
description : 'The message to add to the conversation',
|
|
type : ApplicationCommandOptionType.String,
|
|
required : true,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name : 'displayconv',
|
|
description : 'Display a conversation',
|
|
options : [
|
|
{
|
|
name : 'name',
|
|
description : 'The name of the conversation',
|
|
type : ApplicationCommandOptionType.String,
|
|
required : true,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name : 'getmyguota',
|
|
description : 'Get your quota',
|
|
},
|
|
|
|
{
|
|
name : 'github',
|
|
description : 'Get the github link of the bot',
|
|
},
|
|
];
|
|
|
|
module.exports = { commands }; |