(input: string | PromptInput)
| 131 | } |
| 132 | |
| 133 | async steer(input: string | PromptInput): Promise<void> { |
| 134 | this.ensureOpen(); |
| 135 | await this.rpc.steer({ |
| 136 | sessionId: this.id, |
| 137 | input: normalizePromptInput(input), |
| 138 | }); |
| 139 | } |
| 140 | |
| 141 | async swarm(input: string | PromptInput): Promise<void> { |
| 142 | this.ensureOpen(); |
nothing calls this directly
no test coverage detected