(input: string | PromptInput)
| 139 | } |
| 140 | |
| 141 | async swarm(input: string | PromptInput): Promise<void> { |
| 142 | this.ensureOpen(); |
| 143 | await this.rpc.swarm({ |
| 144 | sessionId: this.id, |
| 145 | input: normalizePromptInput(input), |
| 146 | }); |
| 147 | } |
| 148 | |
| 149 | async init(): Promise<void> { |
| 150 | this.ensureOpen(); |
nothing calls this directly
no test coverage detected