@herjarsa/omo-meta-governor 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/config.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import type { OrchestratorConfig } from "./types";
2
+ import type { ModelOverrideConfig } from "./types";
2
3
  /**
3
4
  * MetaGovernor config schema exposed to users.
4
5
  * This is a Zod-free config interface since Zod parsing is optional
@@ -38,6 +39,8 @@ export interface MetaGovernorPluginConfig {
38
39
  saveDecisions?: boolean;
39
40
  saveLessons?: boolean;
40
41
  };
42
+ /** Model override for MetaGovernor internal LLM usage. */
43
+ modelOverride?: ModelOverrideConfig;
41
44
  }
42
45
  /**
43
46
  * Project the full MetaGovernorPluginConfig into OrchestratorConfig.