Implement governance workflows and close WP-0008
This commit is contained in:
parent
a76e57ba89
commit
a9a55e19f1
11 changed files with 1177 additions and 74 deletions
|
|
@ -119,6 +119,13 @@ def load_ltv_scenarios(data_dir: Path | None = None) -> dict:
|
|||
return _read_json((data_dir or default_data_dir()) / "ltv_scenarios.json")
|
||||
|
||||
|
||||
def load_governance_policy(data_dir: Path | None = None) -> dict:
|
||||
path = (data_dir or default_data_dir()) / "governance_policy.json"
|
||||
if not path.exists():
|
||||
return {}
|
||||
return _read_json(path)
|
||||
|
||||
|
||||
def load_tuning_requests(data_dir: Path | None = None) -> dict:
|
||||
path = (data_dir or default_data_dir()) / "tuning_requests.json"
|
||||
if not path.exists():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue