Vitalis_Devcore / src /devcore /context_manager.py
FerrellSyntheticIntelligence
Initial clean commit: Source code only
29cdc9d
raw
history blame
278 Bytes
import json
class ContextManager:
def __init__(self, manifest_path="system_architecture_map.json"):
self.path = manifest_path
def update_manifest(self, data):
with open(self.path, "w") as f:
json.dump(data, f, indent=4)
return True