cletus/bot/states/HandleChat.js
roberts 2b5d49d5bc
All checks were successful
Deploy Cletus Bot / deploy (push) Successful in 25s
handlechat chagnes
2025-05-10 19:52:53 -05:00

71 lines
2.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// states/HandleChat.js
const path = require('path');
const fs = require('fs');
const { getLastChat, getBot, getDB, setActiveTask, clearActiveTask } = require('../core/context');
const { logChatMessage } = require('../memory/chat');
const { chatWithAI, generateAndSaveTask } = require('../lib/ai-helper');
const config = require('../config.json');
module.exports = async function HandleChat() {
const bot = getBot();
const db = getDB();
const { username, message } = getLastChat();
const msg = message.toLowerCase();
console.log(`[STATE] HandleChat: ${message}`);
logChatMessage(db, username, message);
const taskDir = path.join(__dirname, '../bot-tasks');
const availableTasks = fs.readdirSync(taskDir)
.filter(f => f.endsWith('.js'))
.map(f => f.replace('.js', ''));
const matchedTask = availableTasks.find(task => msg.includes(task.replace(/-/g, ' ')));
if (matchedTask) {
try {
const task = require(path.join(taskDir, matchedTask));
setActiveTask(matchedTask);
bot.chat(`Okay, Ill try to ${matchedTask.replace(/-/g, ' ')}.`);
await task(bot, db, bot.chat);
clearActiveTask();
return;
} catch (err) {
console.error(`[TASK ERROR] ${matchedTask}:`, err.message);
bot.chat(`I couldn't complete the task "${matchedTask}".`);
clearActiveTask();
return;
}
}
const prompt = `Player said: "${message}". What task name should I execute (like 'find-flower', 'move-items')? Reply only with the task name or "none".`;
const aiResponse = await chatWithAI(prompt, config.ai);
const aiTask = aiResponse.trim().toLowerCase().replace(/\s+/g, '-');
if (aiTask !== 'none') {
const taskPath = path.join(taskDir, `${aiTask}.js`);
if (!fs.existsSync(taskPath)) {
bot.chat(`I dont know how to ${aiTask.replace(/-/g, ' ')} yet, learning now...`);
await generateAndSaveTask(aiTask, config.ai);
}
try {
const task = require(taskPath);
setActiveTask(aiTask);
await task(bot, db, bot.chat);
clearActiveTask();
return;
} catch (err) {
console.error(`[TASK ERROR - AI GENERATED] ${aiTask}:`, err.message);
bot.chat(`I tried to learn how to ${aiTask.replace(/-/g, ' ')}, but it didnt work.`);
clearActiveTask();
return;
}
}
if (msg.includes(bot.username.toLowerCase())) {
const response = await chatWithAI(message, config.ai);
bot.chat(response);
}
};