Files
project-lyra/cortex/persona/speak.py
2025-11-26 02:28:00 -05:00

8 lines
188 B
Python

def apply_persona(text: str) -> str:
"""
Persona layer.
Right now it passes text unchanged.
Later we will add Lyra-voice transformation here.
"""
return text or ""