()
| 220 | } |
| 221 | |
| 222 | async getExperimentalFeatures(): Promise<readonly ExperimentalFeatureState[]> { |
| 223 | const rpc = await this.getRpc(); |
| 224 | return rpc.getExperimentalFeatures({}); |
| 225 | } |
| 226 | |
| 227 | async setConfig(input: KimiConfigPatch): Promise<KimiConfig> { |
| 228 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected