python-reflexion/02-plugins/extra_plugins.py
2025-10-21 20:38:10 +02:00

8 lines
179 B
Python

from base import Plugin
class Greetings(Plugin):
def __init__(self, who: str) -> None:
self.who = who
def hook(self) -> None:
print(f'Hello {self.who}')