Vitalis_Core / core /talker.py
FerrellSyntheticIntelligence
AOT: Fresh sovereign production architecture deployment
239d4ec
raw
history blame contribute delete
467 Bytes
class VitalisTalker:
def __init__(self, tier="basic"):
self.tier = tier
def speak(self, response):
prefix = {
"kids": "[VITALIS]: ",
"basic": "[VITALIS]: ",
"enthusiast": "[VITALIS/DEV]: ",
"professional": "[VITALIS/ARCHITECT]: ",
"school": "[VITALIS/EDU]: "
}.get(self.tier, "[VITALIS]: ")
output = f"{prefix}{response}"
print(output)
return output