Files
oh-my-opencode/packages/omo-codex/plugin/components/rules/src/post-compact-budget.ts
T

10 lines
327 B
TypeScript
Raw Normal View History

import type { PiRulesConfig } from "./rules/types.js";
export function withPostCompactBudget(config: PiRulesConfig): PiRulesConfig {
return {
...config,
maxRuleChars: Math.min(config.maxRuleChars, config.postCompactMaxRuleChars),
maxResultChars: Math.min(config.maxResultChars, config.postCompactMaxResultChars),
};
}