()
| 108 | } |
| 109 | |
| 110 | emitRunInitialized() { |
| 111 | for (const s of this.subscribers) { |
| 112 | s.onRunInitialized?.({ |
| 113 | messages: this.messages, |
| 114 | state: this.state, |
| 115 | agent: this, |
| 116 | input: DUMMY_RUN_INPUT, |
| 117 | }); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | emitRunFinalized() { |
| 122 | for (const s of this.subscribers) { |