mindcraft/main.js

7 lines
233 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
let profile = './andy.json';
let load_memory = false;
2024-02-25 14:21:44 -06:00
let init_message = 'Say hello world and your name.';
new AgentProcess().start(profile, load_memory, init_message);