fixing duplicate message bug

This commit is contained in:
Raven Scott 2023-04-11 17:38:47 +02:00
parent 7d68f426d0
commit 1a11d281ec
1 changed files with 2 additions and 7 deletions

View File

@ -121,13 +121,6 @@ client.on('messageCreate', async (message) => {
role: 'assistant',
content: `Hello, ${message.author.username}, I am here to answer any question you have, how may I help you?`
});
} else {
// Append user message to conversation history
conversation.messages.push({
role: 'user',
content: message.cleanContent
});
}
if (message.content === '!reset' || message.content === '!r') {
@ -185,6 +178,8 @@ async function generateResponse(conversation) {
const messagesCopy = [...conversation.messages]; // create a copy of the messages array
console.log(conversation)
try {
const response = await fetch(`http://${process.env.ROOT_IP}:${process.env.ROOT_PORT}/v1/chat/completions`, {
method: 'POST',