Update main.js

Fixed unnecessary spacing at line 44
This commit is contained in:
Sweaterdog 2025-03-14 12:41:12 -07:00 committed by GitHub
parent 1f89cd8f47
commit 653f6456ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,8 +40,8 @@ async function main() {
const profiles = getProfiles(args);
console.log(profiles);
const { load_memory, init_message } = settings;
for (let i = 0; i < profiles.length; i++) {
for (let i=0; i<profiles.length; i++) {
const agent_process = new AgentProcess();
const profile = readFileSync(profiles[i], 'utf8');
const agent_json = JSON.parse(profile);