mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-27 09:23:03 +02:00
38 lines
No EOL
1.3 KiB
JavaScript
38 lines
No EOL
1.3 KiB
JavaScript
import { spawn } from 'child_process';
|
|
|
|
export class AgentProcess {
|
|
start(profile, load_memory=false, init_message=null, count_id=0) {
|
|
let args = ['src/process/init-agent.js', this.name];
|
|
args.push('-p', profile);
|
|
args.push('-c', count_id);
|
|
if (load_memory)
|
|
args.push('-l', load_memory);
|
|
if (init_message)
|
|
args.push('-m', init_message);
|
|
|
|
const agentProcess = spawn('node', args, {
|
|
stdio: 'inherit',
|
|
stderr: 'inherit',
|
|
});
|
|
|
|
let last_restart = Date.now();
|
|
agentProcess.on('exit', (code, signal) => {
|
|
console.log(`Agent process exited with code ${code} and signal ${signal}`);
|
|
|
|
if (code !== 0) {
|
|
// agent must run for at least 10 seconds before restarting
|
|
if (Date.now() - last_restart < 10000) {
|
|
console.error('Agent process exited too quickly. Killing entire process. Goodbye.');
|
|
process.exit(1);
|
|
}
|
|
console.log('Restarting agent...');
|
|
this.start(profile, true, 'Agent process restarted.');
|
|
last_restart = Date.now();
|
|
}
|
|
});
|
|
|
|
agentProcess.on('error', (err) => {
|
|
console.error('Failed to start agent process:', err);
|
|
});
|
|
}
|
|
} |