(providerId: string)
| 230 | } |
| 231 | |
| 232 | async removeProvider(providerId: string): Promise<KimiConfig> { |
| 233 | const rpc = await this.getRpc(); |
| 234 | return rpc.removeKimiProvider({ providerId }); |
| 235 | } |
| 236 | |
| 237 | async prompt(input: SessionPromptRpcInput): Promise<void> { |
| 238 | const agentId = this.interactiveAgentId; |
nothing calls this directly
no test coverage detected