This commit is contained in:
2026-09-11 13:44:05 -04:00
parent 29d5216b96
commit 2ee0c42e32
10 changed files with 81 additions and 10 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export class JarvisDaemon extends EventEmitter {
this.voice = new VoiceStateMachine();
this.scheduler = new QvacScheduler({ concurrency: 1 });
this.computer = new ComputerUseSession();
this.harness = new HarnessBridge({ cwd: process.cwd() });
this.harness = new HarnessBridge({ cwd: process.cwd(), computer: this.computer });
this.harness.on('agent_message_chunk', (ev) => this.emit('Token', ev?.text || ev?.delta || ''));
this.harness.on('permission', (ev) => this.emit('ConfirmationRequired', ev));
}