phi-drift / core /phi_council.py
crexs's picture
Upload folder using huggingface_hub
914e970 verified
Raw
History Blame Contribute Delete
494 Bytes
"""
PHI Council of Seven - The Internal Governance of the Drift Model.
Company: PHI
Model: Drift
"""
COUNCIL_MAPPING = {
"Aura": "emotional_field",
"Logic": "cognition",
"Meme": "metacognition",
"Vibe": "intuition",
"Ethos": "values",
"Pulse": "homeostasis",
"Nexus": "coordination",
}
def get_council_name(module_name: str) -> str:
for name, module in COUNCIL_MAPPING.items():
if module == module_name:
return name
return module_name