fix(test): refresh schema snapshot and stabilize channel registry

This commit is contained in:
Peter Steinberger
2026-04-07 20:03:56 +01:00
parent e5aae5e056
commit cfbe7ac227
2 changed files with 10 additions and 1 deletions

View File

@@ -4242,6 +4242,9 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
},
provider: {
type: "string",
title: "Compaction Provider",
description:
"Id of a registered compaction provider plugin used for summarization. When set and the provider is registered, its summarize() method is called instead of the built-in summarizeInStages pipeline. Falls back to built-in on provider failure. Leave unset to use the default built-in summarization.",
},
reserveTokens: {
type: "integer",

View File

@@ -9,6 +9,12 @@ type PluginContractEntry = {
export function getPluginContractRegistry(): PluginContractEntry[] {
return listBundledChannelPlugins().map((plugin) => ({
id: plugin.id,
plugin,
plugin: {
...plugin,
meta: {
...plugin.meta,
id: plugin.id,
},
},
}));
}