Spaces:
Sleeping
Sleeping
File size: 436 Bytes
b01b62e | 1 2 3 4 5 6 7 8 9 10 11 12 | # Author: Liam Grinstead
# Spawns symbolic agents using RFT tier variables and operator overlays
from codex.codex_agents import AGENT_REGISTRY
from codex.codex_consciousness import TIER_VARIABLES, SYMBOLIC_OPERATORS
def spawn_agent(agent_id):
agent = AGENT_REGISTRY.get(agent_id, {})
agent['tier_variables'] = TIER_VARIABLES
agent['symbolic_operators'] = SYMBOLIC_OPERATORS
agent['status'] = 'spawned'
return agent |