mindcraft/main.js
2024-02-25 14:21:44 -06:00

7 lines
No EOL
233 B
JavaScript

import { AgentProcess } from './src/process/agent-process.js';
let profile = './andy.json';
let load_memory = false;
let init_message = 'Say hello world and your name.';
new AgentProcess().start(profile, load_memory, init_message);