mindcraft/main.js

7 lines
299 B
JavaScript
Raw Normal View History

2023-12-21 15:11:38 -07:00
import { AgentProcess } from './src/process/agent-process.js';
2023-12-09 21:40:53 -06:00
2024-04-05 23:54:41 +02:00
let profile = './andy.json';
let load_memory = false;
let init_message = 'Say hello world and your name. Do NOT use any command yet, nor make any comment about that fact.';
new AgentProcess().start(profile, load_memory, init_message);