MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / showExperimentsPanel

Function showExperimentsPanel

apps/kimi-code/src/tui/commands/config.ts:575–584  ·  view source on GitHub ↗
(host: SlashCommandHost)

Source from the content-addressed store, hash-verified

573}
574
575export async function showExperimentsPanel(host: SlashCommandHost): Promise<void> {
576 let features: readonly ExperimentalFeatureState[];
577 try {
578 features = await host.harness.getExperimentalFeatures();
579 } catch (error) {
580 host.showError(`Failed to load experimental features: ${formatErrorMessage(error)}`);
581 return;
582 }
583 mountExperimentsPanel(host, features);
584}
585
586export async function applyExperimentalFeatureChanges(
587 host: SlashCommandHost,

Callers 2

handleSettingsSelectionFunction · 0.85

Calls 4

formatErrorMessageFunction · 0.90
mountExperimentsPanelFunction · 0.85
showErrorMethod · 0.65

Tested by

no test coverage detected