Vitalis_LFM2.5_Cortex.GGUF / src /devcore /context_manager.py
FerrellSyntheticIntelligence's picture
Upload folder using huggingface_hub
d2a5f5a verified
Raw
History Blame Contribute Delete
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