feat: add option to disable streaming in CLI

This commit is contained in:
Hadi Minooei
2026-04-20 12:24:04 -07:00
parent 1c963345a4
commit d6a1864961
4 changed files with 31 additions and 1 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ export class UserSimulator {
}
this.interactionsFile = `interactions_${Date.now()}.txt`;
this.isRunning = true;
this.timer = setInterval(() => this.tick(), 3000);
this.timer = setInterval(() => this.tick(), 1000);
}
stop() {