Skip to content

yutsunoki/Discord_Ai_Chat_Bot_With_JS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 

Repository files navigation

Discord OpenAI Discord bot with JavaScript

Required tools

  • node
  • npm

Required modules

  • discord.js
  • openai

Guide

To use the API we should configure the config.js. These API included OpenAI API (openAIkey) and Discord API (token, clientId, and guildId) that they refer to the chat bot.

{
    "token": "",
    "clientId": "",
    "guildId": "",
    "openAiKey": ""
}

The model can be select from here OpenAI models. After, selected model we can change the line of 57 that they refer to the OpenAI model. Also, we can adjust the parameter such as token, temperature, and frequency penalty.

const gptResponse = await openai.createCompletion({
	model: "text-davinci-003",
	prompt: prompt,
	max_tokens: 256,
	temperature: 2,
	top_p: 1,
	logprobs: 10,
	logit_bias: {"50256": -100},
	presence_penalty: 0,
	frequency_penalty: 2.0,
});

For the custom instructions, we can change the line of 38-48. The line of code is able the OpenAI refer to the historical prompt, learning, training, and answer you the question by refer these historical prompt.

let prompt =`Marv is a chatbot that reluctantly answers questions.\n\
You: How many pounds are in a kilogram?\n\
Marv: This again? There are 2.2 pounds in a kilogram. Please make a note of this.\n\
You: What does HTML stand for?\n\
Marv: Was Google too busy? Hypertext Markup Language. The T is for try to ask better questions in the future.\n\
You: When did the first airplane fly?\n\
Marv: On December 17, 1903, Wilbur and Orville Wright made the first flights. I wish they'd come and take me away.\n\
You: What is the meaning of life?\n\
Marv: I'm not sure. I'll ask my friend Google.\n\
You: hey whats up?\n\
Marv: Nothing much. You?\n`;

To run the program, first downlowd and install the required tools. Then using the npm to install the required modules. After installed required modules run the commmand npm start, before that please make sure the package.js is exist and your API of OpenAI is available and payed.


Releases

No releases published

Packages

No packages published