(input: KimiConfigPatch)
| 225 | } |
| 226 | |
| 227 | async setConfig(input: KimiConfigPatch): Promise<KimiConfig> { |
| 228 | const rpc = await this.getRpc(); |
| 229 | return rpc.setKimiConfig(input); |
| 230 | } |
| 231 | |
| 232 | async removeProvider(providerId: string): Promise<KimiConfig> { |
| 233 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected