8 lines
188 B
Python
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 ""
|